aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/templates/platform.mk
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2018-03-09 09:13:53 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2018-03-09 09:13:53 +0000
commit53e7842505bd75038d531693928985f51e7ac980 (patch)
tree1967254e691403452bf915caa3b631cef81f63e1 /os/hal/templates/platform.mk
parentccdc24bfd1edd2bd0d8a11bec8c6c782c69dcdfd (diff)
downloadChibiOS-53e7842505bd75038d531693928985f51e7ac980.tar.gz
ChibiOS-53e7842505bd75038d531693928985f51e7ac980.tar.bz2
ChibiOS-53e7842505bd75038d531693928985f51e7ac980.zip
Fixed some crypto-related errors.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11658 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/hal/templates/platform.mk')
-rw-r--r--os/hal/templates/platform.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/os/hal/templates/platform.mk b/os/hal/templates/platform.mk
index e10b8dd61..13ea8a7c6 100644
--- a/os/hal/templates/platform.mk
+++ b/os/hal/templates/platform.mk
@@ -17,7 +17,7 @@ ifneq ($(findstring HAL_USE_CAN TRUE,$(HALCONF)),)
PLATFORMSRC += ${CHIBIOS}/os/hal/templates/hal_can_lld.c
endif
ifneq ($(findstring HAL_USE_CRY TRUE,$(HALCONF)),)
-PLATFORMSRC += ${CHIBIOS}/os/hal/templates/hal_cry_lld.c
+PLATFORMSRC += ${CHIBIOS}/os/hal/templates/hal_crypto_lld.c
endif
ifneq ($(findstring HAL_USE_DAC TRUE,$(HALCONF)),)
PLATFORMSRC += ${CHIBIOS}/os/hal/templates/hal_dac_lld.c
@@ -74,6 +74,7 @@ else
PLATFORMSRC = ${CHIBIOS}/os/hal/templates/hal_lld.c \
${CHIBIOS}/os/hal/templates/hal_adc_lld.c \
${CHIBIOS}/os/hal/templates/hal_can_lld.c \
+ ${CHIBIOS}/os/hal/templates/hal_crypto_lld.c \
${CHIBIOS}/os/hal/templates/hal_dac_lld.c \
${CHIBIOS}/os/hal/templates/hal_ext_lld.c \
${CHIBIOS}/os/hal/templates/hal_gpt_lld.c \