diff options
author | Theodore Ateba <tf.ateba@gmail.com> | 2017-08-13 14:19:31 +0000 |
---|---|---|
committer | Theodore Ateba <tf.ateba@gmail.com> | 2017-08-13 14:19:31 +0000 |
commit | 0d4535dc1afa50182707ffb11611d8a36a74b440 (patch) | |
tree | e220bc42668c2bda5520b094cc6aaed59084855d | |
parent | 6580d6f6da6abcfa79b863c1ae148a2ab407680a (diff) | |
download | ChibiOS-0d4535dc1afa50182707ffb11611d8a36a74b440.tar.gz ChibiOS-0d4535dc1afa50182707ffb11611d8a36a74b440.tar.bz2 ChibiOS-0d4535dc1afa50182707ffb11611d8a36a74b440.zip |
Update AVR tiny platform path according the new architecture and correct comment.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10417 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/ports/AVR/TINY/ATTinyxxx/platform.mk | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/os/hal/ports/AVR/TINY/ATTinyxxx/platform.mk b/os/hal/ports/AVR/TINY/ATTinyxxx/platform.mk index 9635f6267..3646a9e97 100644 --- a/os/hal/ports/AVR/TINY/ATTinyxxx/platform.mk +++ b/os/hal/ports/AVR/TINY/ATTinyxxx/platform.mk @@ -1,11 +1,11 @@ # List of all the AVR platform files.
-PLATFORMSRC = ${CHIBIOS}/os/hal/ports/AVR/TINY/hal_lld.c
+PLATFORMSRC = ${CHIBIOS}/os/hal/ports/AVR/TINY/ATTinyxxx/hal_lld.c
# Required include directories
-PLATFORMINC = ${CHIBIOS}/os/hal/ports/AVR/MEGA
+PLATFORMINC = ${CHIBIOS}/os/hal/ports/AVR/TINY/ATTinyxxx/
# Drivers compatible with the platform.
-PLATFORMINC = ${CHIBIOS}/os/hal/ports/AVR/TINY
-include ${CHIBIOS}/os/hal/ports/AVR/TINY/GPIOv1/driver.mk
-include ${CHIBIOS}/os/hal/ports/AVR/TINY/TIMv1/driver.mk
-include ${CHIBIOS}/os/hal/ports/AVR/TINY/USARTv1/driver.mk
+PLATFORMINC = ${CHIBIOS}/os/hal/ports/AVR/TINY/ATTinyxxx/
+include ${CHIBIOS}/os/hal/ports/AVR/TINY/LLD/GPIOv1/driver.mk
+include ${CHIBIOS}/os/hal/ports/AVR/TINY/LLD/TIMv1/driver.mk
+include ${CHIBIOS}/os/hal/ports/AVR/TINY/LLD/USARTv1/driver.mk
|