Browse Source

[Bug] Fix compilation issues with PS/2 driver on F4x1 controllers (#20433)

pull/20439/head
Drashna Jaelre 1 year ago
committed by GitHub
parent
commit
cf5626e024
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions
  1. +1
    -1
      builddefs/common_features.mk
  2. +1
    -0
      drivers/ps2/ps2_interrupt.c
  3. +1
    -0
      platforms/chibios/drivers/ps2/ps2_io.c

+ 1
- 1
builddefs/common_features.mk View File

@ -809,9 +809,9 @@ endif
ifeq ($(strip $(PS2_MOUSE_ENABLE)), yes)
PS2_ENABLE := yes
MOUSE_ENABLE := yes
SRC += ps2_mouse.c
OPT_DEFS += -DPS2_MOUSE_ENABLE
OPT_DEFS += -DMOUSE_ENABLE
endif
VALID_PS2_DRIVER_TYPES := busywait interrupt usart vendor


+ 1
- 0
drivers/ps2/ps2_interrupt.c View File

@ -47,6 +47,7 @@ POSSIBILITY OF SUCH DAMAGE.
// chibiOS headers
# include "ch.h"
# include "hal.h"
# include "gpio.h"
#endif
#include "ps2.h"


+ 1
- 0
platforms/chibios/drivers/ps2/ps2_io.c View File

@ -4,6 +4,7 @@
// chibiOS headers
#include "ch.h"
#include "hal.h"
#include "gpio.h"
/* Check port settings for clock and data line */
#if !(defined(PS2_CLOCK_PIN))


Loading…
Cancel
Save