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:
parent
0c965b03f3
commit
0a6815ba49
|
@ -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)
|
ifeq ($(USE_SMART_BUILD),yes)
|
||||||
ifneq ($(findstring HAL_USE_GPT TRUE,$(HALCONF)),)
|
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
|
endif
|
||||||
ifneq ($(findstring HAL_USE_ICU TRUE,$(HALCONF)),)
|
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
|
endif
|
||||||
ifneq ($(findstring HAL_USE_PWM TRUE,$(HALCONF)),)
|
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
|
endif
|
||||||
else
|
else
|
||||||
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
|
||||||
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
|
||||||
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
|
endif
|
||||||
|
|
||||||
PLATFORMINC += $(CHIBIOS)/os/hal/ports/AVR/TINY/TIMv1
|
PLATFORMINC += $(CHIBIOS)/os/hal/ports/AVR/TINY/LLD/TIMv1
|
||||||
|
|
|
@ -15,8 +15,8 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file hal_st_lld.c
|
* @file TIMv1/hal_st_lld.c
|
||||||
* @brief AVR ST subsystem low level driver source.
|
* @brief AVR Tiny ST subsystem low level driver source file.
|
||||||
*
|
*
|
||||||
* @addtogroup ST
|
* @addtogroup ST
|
||||||
* @{
|
* @{
|
||||||
|
|
|
@ -15,8 +15,8 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file hal_st_lld.h
|
* @file TIMv1/hal_st_lld.h
|
||||||
* @brief ST Driver subsystem low level driver header.
|
* @brief AVR Tiny ST Driver subsystem low level driver header file.
|
||||||
* @details This header is designed to be include-able without having to
|
* @details This header is designed to be include-able without having to
|
||||||
* include other files from the HAL.
|
* include other files from the HAL.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue