diff options
author | Theodore Ateba <tf.ateba@gmail.com> | 2018-06-12 12:27:41 +0000 |
---|---|---|
committer | Theodore Ateba <tf.ateba@gmail.com> | 2018-06-12 12:27:41 +0000 |
commit | 94c5e066cca207361d822f06bf7e3edc1eef080f (patch) | |
tree | cfbb74eb78c480a6caa6e17ee1b15bf253dd10cf | |
parent | f61f6596c18d45b73854b52c304ed9431342980b (diff) | |
download | ChibiOS-94c5e066cca207361d822f06bf7e3edc1eef080f.tar.gz ChibiOS-94c5e066cca207361d822f06bf7e3edc1eef080f.tar.bz2 ChibiOS-94c5e066cca207361d822f06bf7e3edc1eef080f.zip |
AVR: Add the Crypto driver to the platform file.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12090 110e8d01-0319-4d1e-a829-52ad28d1bb01
-rw-r--r-- | os/hal/ports/AVR/XMEGA/ATXMEGAxxxA4U/platform.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/os/hal/ports/AVR/XMEGA/ATXMEGAxxxA4U/platform.mk b/os/hal/ports/AVR/XMEGA/ATXMEGAxxxA4U/platform.mk index b40d5d761..243d9722b 100644 --- a/os/hal/ports/AVR/XMEGA/ATXMEGAxxxA4U/platform.mk +++ b/os/hal/ports/AVR/XMEGA/ATXMEGAxxxA4U/platform.mk @@ -5,6 +5,7 @@ PLATFORMSRC = ${CHIBIOS}/os/hal/ports/AVR/XMEGA/ATXMEGAxxxA4U/hal_lld.c \ PLATFORMINC = ${CHIBIOS}/os/hal/ports/AVR/XMEGA/ATXMEGAxxxA4U
# Drivers compatible with the platform.
+include $(CHIBIOS)/os/hal/ports/AVR/XMEGA/LLD/CRYPv1/driver.mk
include $(CHIBIOS)/os/hal/ports/AVR/XMEGA/LLD/DACv1/driver.mk
include $(CHIBIOS)/os/hal/ports/AVR/XMEGA/LLD/DMAv1/driver.mk
include $(CHIBIOS)/os/hal/ports/AVR/XMEGA/LLD/GPIOv1/driver.mk
|