Change the ATTiny GPIO files path according the new architecture and correct comment.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10415 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Theodore Ateba 2017-08-13 14:19:14 +00:00
parent 0a6815ba49
commit 49561260e6
3 changed files with 8 additions and 7 deletions

View File

@ -1,9 +1,10 @@
ifeq ($(USE_SMART_BUILD),yes)
ifneq ($(findstring HAL_USE_PAL TRUE,$(HALCONF)),)
PLATFORMSRC += ${CHIBIOS}/os/hal/ports/AVR/TINY/GPIOv1/hal_pal_lld.c
PLATFORMSRC += ${CHIBIOS}/os/hal/ports/AVR/TINY/LLD/GPIOv1/hal_pal_lld.c
endif
else
PLATFORMSRC += ${CHIBIOS}/os/hal/ports/AVR/TINY/GPIOv1/hal_pal_lld.c
PLATFORMSRC += ${CHIBIOS}/os/hal/ports/AVR/TINY/LLD/GPIOv1/hal_pal_lld.c
endif
PLATFORMINC += ${CHIBIOS}/os/hal/ports/AVR/TINY/GPIOv1
PLATFORMINC += ${CHIBIOS}/os/hal/ports/AVR/TINY/LLD/GPIOv1
PLATFORMINC += ${CHIBIOS}/os/hal/ports/AVR/TINY/LLD

View File

@ -15,8 +15,8 @@
*/
/**
* @file hal_pal_lld.c
* @brief AVR GPIO low level driver code.
* @file GPIOv1/hal_pal_lld.c
* @brief AVR Tiny GPIO low level driver source file.
*
* @addtogroup PAL
* @{

View File

@ -15,8 +15,8 @@
*/
/**
* @file hal_pal_lld.h
* @brief AVR GPIO low level driver header.
* @file GPIOv1/hal_pal_lld.h
* @brief AVR Tiny GPIO low level driver header file.
*
* @addtogroup PAL
* @{