diff options
Diffstat (limited to 'os/hal/hal.mk')
-rw-r--r-- | os/hal/hal.mk | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/os/hal/hal.mk b/os/hal/hal.mk new file mode 100644 index 000000000..638a72f23 --- /dev/null +++ b/os/hal/hal.mk @@ -0,0 +1,13 @@ +# List of all the ChibiOS/RT HAL files, there is no need to remove the files
+# from this list, you can disable parts of the kernel by editing halconf.h.
+HALSRC = ${CHIBIOS}/os/hal/src/hal.c \
+ ${CHIBIOS}/os/hal/src/adc.c \
+ ${CHIBIOS}/os/hal/src/can.c \
+ ${CHIBIOS}/os/hal/src/mac.c \
+ ${CHIBIOS}/os/hal/src/pal.c \
+ ${CHIBIOS}/os/hal/src/serial.c \
+ ${CHIBIOS}/os/hal/src/spi.c \
+ ${CHIBIOS}/os/hal/src/mmc_spi.c
+
+# Required include directories
+HALINC = ${CHIBIOS}/os/hal/include
|