aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports
diff options
context:
space:
mode:
authorTheodore Ateba <tf.ateba@gmail.com>2017-08-13 14:19:07 +0000
committerTheodore Ateba <tf.ateba@gmail.com>2017-08-13 14:19:07 +0000
commit0a6815ba49f359955dbe365d70e4c60d77ecdf49 (patch)
treefc947f10c9179e9bb3645fb85964c3244f360954 /os/hal/ports
parent0c965b03f3f447f22e6866858454104034f26650 (diff)
downloadChibiOS-0a6815ba49f359955dbe365d70e4c60d77ecdf49.tar.gz
ChibiOS-0a6815ba49f359955dbe365d70e4c60d77ecdf49.tar.bz2
ChibiOS-0a6815ba49f359955dbe365d70e4c60d77ecdf49.zip
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
Diffstat (limited to 'os/hal/ports')
-rw-r--r--os/hal/ports/AVR/TINY/LLD/TIMv1/driver.mk16
-rw-r--r--os/hal/ports/AVR/TINY/LLD/TIMv1/hal_st_lld.c4
-rw-r--r--os/hal/ports/AVR/TINY/LLD/TIMv1/hal_st_lld.h4
3 files changed, 12 insertions, 12 deletions
diff --git a/os/hal/ports/AVR/TINY/LLD/TIMv1/driver.mk b/os/hal/ports/AVR/TINY/LLD/TIMv1/driver.mk
index 982db5635..f7cb649b5 100644
--- a/os/hal/ports/AVR/TINY/LLD/TIMv1/driver.mk
+++ b/os/hal/ports/AVR/TINY/LLD/TIMv1/driver.mk
@@ -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
diff --git a/os/hal/ports/AVR/TINY/LLD/TIMv1/hal_st_lld.c b/os/hal/ports/AVR/TINY/LLD/TIMv1/hal_st_lld.c
index 4732ec7dd..ad9e3b4ba 100644
--- a/os/hal/ports/AVR/TINY/LLD/TIMv1/hal_st_lld.c
+++ b/os/hal/ports/AVR/TINY/LLD/TIMv1/hal_st_lld.c
@@ -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
* @{
diff --git a/os/hal/ports/AVR/TINY/LLD/TIMv1/hal_st_lld.h b/os/hal/ports/AVR/TINY/LLD/TIMv1/hal_st_lld.h
index a5b58e693..35ae441b9 100644
--- a/os/hal/ports/AVR/TINY/LLD/TIMv1/hal_st_lld.h
+++ b/os/hal/ports/AVR/TINY/LLD/TIMv1/hal_st_lld.h
@@ -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.
*