diff options
author | awygle <awygle@gmail.com> | 2016-08-17 00:15:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-17 00:15:02 -0500 |
commit | 66ee156aa4e7d99db9854cf7fd67515d73b1e3fa (patch) | |
tree | e01ffb3853c05e75b81be838447c2f5211c53f07 /os/hal/ports/MSP430X/platform.mk | |
parent | e1601e0a7d9b805422e511ea1c29ef9f5ca6000b (diff) | |
parent | d9ee72504f248b7f9edae382ff941453301bf5ad (diff) | |
download | ChibiOS-Contrib-66ee156aa4e7d99db9854cf7fd67515d73b1e3fa.tar.gz ChibiOS-Contrib-66ee156aa4e7d99db9854cf7fd67515d73b1e3fa.tar.bz2 ChibiOS-Contrib-66ee156aa4e7d99db9854cf7fd67515d73b1e3fa.zip |
Merge pull request #81 from awygle/adc
MSP430X ADC12 Support
Diffstat (limited to 'os/hal/ports/MSP430X/platform.mk')
-rw-r--r-- | os/hal/ports/MSP430X/platform.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/os/hal/ports/MSP430X/platform.mk b/os/hal/ports/MSP430X/platform.mk index 832814b..627a2f0 100644 --- a/os/hal/ports/MSP430X/platform.mk +++ b/os/hal/ports/MSP430X/platform.mk @@ -4,7 +4,8 @@ PLATFORMSRC = ${CHIBIOS_CONTRIB}/os/hal/ports/MSP430X/hal_lld.c \ ${CHIBIOS_CONTRIB}/os/hal/ports/MSP430X/hal_serial_lld.c \
${CHIBIOS_CONTRIB}/os/hal/ports/MSP430X/hal_pal_lld.c \
${CHIBIOS_CONTRIB}/os/hal/ports/MSP430X/hal_dma_lld.c \
- ${CHIBIOS_CONTRIB}/os/hal/ports/MSP430X/hal_spi_lld.c
+ ${CHIBIOS_CONTRIB}/os/hal/ports/MSP430X/hal_spi_lld.c \
+ ${CHIBIOS_CONTRIB}/os/hal/ports/MSP430X/hal_adc_lld.c
# Required include directories
PLATFORMINC = ${CHIBIOS_CONTRIB}/os/hal/ports/MSP430X
|