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

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

View File

@ -1,19 +1,19 @@
PLATFORMSRC += $(CHIBIOS)/os/hal/ports/AVR/TINY/TIMv1/hal_st_lld.c
PLATFORMSRC += $(CHIBIOS)/os/hal/ports/AVR/TINY/LLD/TIMv1/hal_st_lld.c
ifeq ($(USE_SMART_BUILD),yes)
ifneq ($(findstring HAL_USE_GPT TRUE,$(HALCONF)),)
PLATFORMSRC += $(CHIBIOS)/os/hal/ports/AVR/TINY/TIMv1/hal_gpt_lld.c
PLATFORMSRC += $(CHIBIOS)/os/hal/ports/AVR/TINY/LLD/TIMv1/hal_gpt_lld.c
endif
ifneq ($(findstring HAL_USE_ICU TRUE,$(HALCONF)),)
PLATFORMSRC += $(CHIBIOS)/os/hal/ports/AVR/TINY/TIMv1/hal_icu_lld.c
PLATFORMSRC += $(CHIBIOS)/os/hal/ports/AVR/TINY/LLD/TIMv1/hal_icu_lld.c
endif
ifneq ($(findstring HAL_USE_PWM TRUE,$(HALCONF)),)
PLATFORMSRC += $(CHIBIOS)/os/hal/ports/AVR/TINY/TIMv1/hal_pwm_lld.c
PLATFORMSRC += $(CHIBIOS)/os/hal/ports/AVR/TINY/LLD/TIMv1/hal_pwm_lld.c
endif
else
PLATFORMSRC += $(CHIBIOS)/os/hal/ports/AVR/TINY/TIMv1/hal_gpt_lld.c
PLATFORMSRC += $(CHIBIOS)/os/hal/ports/AVR/TINY/TIMv1/hal_icu_lld.c
PLATFORMSRC += $(CHIBIOS)/os/hal/ports/AVR/TINY/TIMv1/hal_pwm_lld.c
PLATFORMSRC += $(CHIBIOS)/os/hal/ports/AVR/TINY/LLD/TIMv1/hal_gpt_lld.c
PLATFORMSRC += $(CHIBIOS)/os/hal/ports/AVR/TINY/LLD/TIMv1/hal_icu_lld.c
PLATFORMSRC += $(CHIBIOS)/os/hal/ports/AVR/TINY/LLD/TIMv1/hal_pwm_lld.c
endif
PLATFORMINC += $(CHIBIOS)/os/hal/ports/AVR/TINY/TIMv1
PLATFORMINC += $(CHIBIOS)/os/hal/ports/AVR/TINY/LLD/TIMv1

View File

@ -15,8 +15,8 @@
*/
/**
* @file hal_st_lld.c
* @brief AVR ST subsystem low level driver source.
* @file TIMv1/hal_st_lld.c
* @brief AVR Tiny ST subsystem low level driver source file.
*
* @addtogroup ST
* @{

View File

@ -15,8 +15,8 @@
*/
/**
* @file hal_st_lld.h
* @brief ST Driver subsystem low level driver header.
* @file TIMv1/hal_st_lld.h
* @brief AVR Tiny ST Driver subsystem low level driver header file.
* @details This header is designed to be include-able without having to
* include other files from the HAL.
*