Skip to content

Commit

Permalink
[Bug] Fix compilation issues with PS/2 driver on F4x1 controllers (qm…
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna committed Apr 13, 2023
1 parent 572f863 commit cf5626e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion builddefs/common_features.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions drivers/ps2/ps2_interrupt.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ POSSIBILITY OF SUCH DAMAGE.
// chibiOS headers
# include "ch.h"
# include "hal.h"
# include "gpio.h"
#endif

#include "ps2.h"
Expand Down
1 change: 1 addition & 0 deletions platforms/chibios/drivers/ps2/ps2_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit cf5626e

Please sign in to comment.