aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal')
-rw-r--r--os/hal/hal.mk4
-rw-r--r--os/hal/include/hal_adc.h2
-rw-r--r--os/hal/include/hal_can.h2
-rw-r--r--os/hal/include/hal_dac.h2
-rw-r--r--os/hal/include/hal_ext.h2
-rw-r--r--os/hal/include/hal_gpt.h2
-rw-r--r--os/hal/include/hal_i2c.h2
-rw-r--r--os/hal/include/hal_i2s.h2
-rw-r--r--os/hal/include/hal_icu.h2
-rw-r--r--os/hal/include/hal_mac.h2
-rw-r--r--os/hal/include/hal_mmc_spi.h2
-rw-r--r--os/hal/include/hal_pal.h2
-rw-r--r--os/hal/include/hal_pwm.h2
-rw-r--r--os/hal/include/hal_rtc.h2
-rw-r--r--os/hal/include/hal_sdc.h2
-rw-r--r--os/hal/include/hal_serial.h2
-rw-r--r--os/hal/include/hal_serial_usb.h2
-rw-r--r--os/hal/include/hal_spi.h2
-rw-r--r--os/hal/include/hal_st.h2
-rw-r--r--os/hal/include/hal_uart.h2
-rw-r--r--os/hal/include/hal_usb.h2
-rw-r--r--os/hal/include/hal_wdg.h2
-rw-r--r--os/hal/src/hal.c (renamed from os/hal/src/hal_hal.c)0
-rw-r--r--os/hal/src/hal_adc.c2
-rw-r--r--os/hal/src/hal_can.c2
-rw-r--r--os/hal/src/hal_dac.c2
-rw-r--r--os/hal/src/hal_ext.c2
-rw-r--r--os/hal/src/hal_gpt.c2
-rw-r--r--os/hal/src/hal_i2c.c2
-rw-r--r--os/hal/src/hal_i2s.c2
-rw-r--r--os/hal/src/hal_icu.c2
-rw-r--r--os/hal/src/hal_mac.c2
-rw-r--r--os/hal/src/hal_mmc_spi.c2
-rw-r--r--os/hal/src/hal_pal.c2
-rw-r--r--os/hal/src/hal_pwm.c2
-rw-r--r--os/hal/src/hal_rtc.c2
-rw-r--r--os/hal/src/hal_sdc.c2
-rw-r--r--os/hal/src/hal_serial.c2
-rw-r--r--os/hal/src/hal_serial_usb.c2
-rw-r--r--os/hal/src/hal_spi.c2
-rw-r--r--os/hal/src/hal_st.c2
-rw-r--r--os/hal/src/hal_uart.c2
-rw-r--r--os/hal/src/hal_usb.c2
-rw-r--r--os/hal/src/hal_wdg.c2
44 files changed, 44 insertions, 44 deletions
diff --git a/os/hal/hal.mk b/os/hal/hal.mk
index fb0ebdc37..4d5f95f20 100644
--- a/os/hal/hal.mk
+++ b/os/hal/hal.mk
@@ -3,7 +3,7 @@
ifeq ($(USE_SMART_BUILD),yes)
HALCONF := $(strip $(shell cat halconf.h | egrep -e "define"))
-HALSRC := $(CHIBIOS)/os/hal/src/hal_hal.c \
+HALSRC := $(CHIBIOS)/os/hal/src/hal.c \
$(CHIBIOS)/os/hal/src/hal_st.c \
$(CHIBIOS)/os/hal/src/hal_buffers.c \
$(CHIBIOS)/os/hal/src/hal_queues.c \
@@ -69,7 +69,7 @@ ifneq ($(findstring HAL_USE_WDG TRUE,$(HALCONF)),)
HALSRC += $(CHIBIOS)/os/hal/src/hal_wdg.c
endif
else
-HALSRC = $(CHIBIOS)/os/hal/src/hal_hal.c \
+HALSRC = $(CHIBIOS)/os/hal/src/hal.c \
$(CHIBIOS)/os/hal/src/hal_buffers.c \
$(CHIBIOS)/os/hal/src/hal_queues.c \
$(CHIBIOS)/os/hal/src/hal_mmcsd.c \
diff --git a/os/hal/include/hal_adc.h b/os/hal/include/hal_adc.h
index 5042d3338..91bda58a7 100644
--- a/os/hal/include/hal_adc.h
+++ b/os/hal/include/hal_adc.h
@@ -15,7 +15,7 @@
*/
/**
- * @file adc.h
+ * @file hal_adc.h
* @brief ADC Driver macros and structures.
*
* @addtogroup ADC
diff --git a/os/hal/include/hal_can.h b/os/hal/include/hal_can.h
index 83c647522..73f57e580 100644
--- a/os/hal/include/hal_can.h
+++ b/os/hal/include/hal_can.h
@@ -15,7 +15,7 @@
*/
/**
- * @file can.h
+ * @file hal_can.h
* @brief CAN Driver macros and structures.
*
* @addtogroup CAN
diff --git a/os/hal/include/hal_dac.h b/os/hal/include/hal_dac.h
index cc76c9708..ebe03e944 100644
--- a/os/hal/include/hal_dac.h
+++ b/os/hal/include/hal_dac.h
@@ -15,7 +15,7 @@
*/
/**
- * @file dac.h
+ * @file hal_dac.h
* @brief DAC Driver macros and structures.
*
* @addtogroup DAC
diff --git a/os/hal/include/hal_ext.h b/os/hal/include/hal_ext.h
index 64721b8ae..4716d0a85 100644
--- a/os/hal/include/hal_ext.h
+++ b/os/hal/include/hal_ext.h
@@ -15,7 +15,7 @@
*/
/**
- * @file ext.h
+ * @file hal_ext.h
* @brief EXT Driver macros and structures.
*
* @addtogroup EXT
diff --git a/os/hal/include/hal_gpt.h b/os/hal/include/hal_gpt.h
index 72294b2df..561010973 100644
--- a/os/hal/include/hal_gpt.h
+++ b/os/hal/include/hal_gpt.h
@@ -15,7 +15,7 @@
*/
/**
- * @file gpt.h
+ * @file hal_gpt.h
* @brief GPT Driver macros and structures.
*
* @addtogroup GPT
diff --git a/os/hal/include/hal_i2c.h b/os/hal/include/hal_i2c.h
index 59d79b2dd..a9676a21d 100644
--- a/os/hal/include/hal_i2c.h
+++ b/os/hal/include/hal_i2c.h
@@ -19,7 +19,7 @@
*/
/**
- * @file i2c.h
+ * @file hal_i2c.h
* @brief I2C Driver macros and structures.
*
* @addtogroup I2C
diff --git a/os/hal/include/hal_i2s.h b/os/hal/include/hal_i2s.h
index 8c452337d..2ef57a030 100644
--- a/os/hal/include/hal_i2s.h
+++ b/os/hal/include/hal_i2s.h
@@ -15,7 +15,7 @@
*/
/**
- * @file i2s.h
+ * @file hal_i2s.h
* @brief I2S Driver macros and structures.
*
* @addtogroup I2S
diff --git a/os/hal/include/hal_icu.h b/os/hal/include/hal_icu.h
index 6443a3025..b25fe7de5 100644
--- a/os/hal/include/hal_icu.h
+++ b/os/hal/include/hal_icu.h
@@ -15,7 +15,7 @@
*/
/**
- * @file icu.h
+ * @file hal_icu.h
* @brief ICU Driver macros and structures.
*
* @addtogroup ICU
diff --git a/os/hal/include/hal_mac.h b/os/hal/include/hal_mac.h
index f87270ceb..174ecb991 100644
--- a/os/hal/include/hal_mac.h
+++ b/os/hal/include/hal_mac.h
@@ -15,7 +15,7 @@
*/
/**
- * @file mac.h
+ * @file hal_mac.h
* @brief MAC Driver macros and structures.
* @addtogroup MAC
* @{
diff --git a/os/hal/include/hal_mmc_spi.h b/os/hal/include/hal_mmc_spi.h
index b3510fdf9..fc6bccc2a 100644
--- a/os/hal/include/hal_mmc_spi.h
+++ b/os/hal/include/hal_mmc_spi.h
@@ -15,7 +15,7 @@
*/
/**
- * @file mmc_spi.h
+ * @file hal_mmc_spi.h
* @brief MMC over SPI driver header.
*
* @addtogroup MMC_SPI
diff --git a/os/hal/include/hal_pal.h b/os/hal/include/hal_pal.h
index 93b843533..fc3f4453c 100644
--- a/os/hal/include/hal_pal.h
+++ b/os/hal/include/hal_pal.h
@@ -15,7 +15,7 @@
*/
/**
- * @file pal.h
+ * @file hal_pal.h
* @brief I/O Ports Abstraction Layer macros, types and structures.
*
* @addtogroup PAL
diff --git a/os/hal/include/hal_pwm.h b/os/hal/include/hal_pwm.h
index b82aac580..e50f7a10d 100644
--- a/os/hal/include/hal_pwm.h
+++ b/os/hal/include/hal_pwm.h
@@ -15,7 +15,7 @@
*/
/**
- * @file pwm.h
+ * @file hal_pwm.h
* @brief PWM Driver macros and structures.
*
* @addtogroup PWM
diff --git a/os/hal/include/hal_rtc.h b/os/hal/include/hal_rtc.h
index 128509581..ddfa0d8c1 100644
--- a/os/hal/include/hal_rtc.h
+++ b/os/hal/include/hal_rtc.h
@@ -19,7 +19,7 @@
*/
/**
- * @file rtc.h
+ * @file hal_rtc.h
* @brief RTC Driver macros and structures.
*
* @addtogroup RTC
diff --git a/os/hal/include/hal_sdc.h b/os/hal/include/hal_sdc.h
index 7ca3586fd..2f6acdc07 100644
--- a/os/hal/include/hal_sdc.h
+++ b/os/hal/include/hal_sdc.h
@@ -15,7 +15,7 @@
*/
/**
- * @file sdc.h
+ * @file hal_sdc.h
* @brief SDC Driver macros and structures.
*
* @addtogroup SDC
diff --git a/os/hal/include/hal_serial.h b/os/hal/include/hal_serial.h
index e6fd32ba5..ac47cab79 100644
--- a/os/hal/include/hal_serial.h
+++ b/os/hal/include/hal_serial.h
@@ -15,7 +15,7 @@
*/
/**
- * @file serial.h
+ * @file hal_serial.h
* @brief Serial Driver macros and structures.
*
* @addtogroup SERIAL
diff --git a/os/hal/include/hal_serial_usb.h b/os/hal/include/hal_serial_usb.h
index 6f2cf9722..f76f603e1 100644
--- a/os/hal/include/hal_serial_usb.h
+++ b/os/hal/include/hal_serial_usb.h
@@ -15,7 +15,7 @@
*/
/**
- * @file serial_usb.h
+ * @file hal_serial_usb.h
* @brief Serial over USB Driver macros and structures.
*
* @addtogroup SERIAL_USB
diff --git a/os/hal/include/hal_spi.h b/os/hal/include/hal_spi.h
index ffffe59c1..c25857db6 100644
--- a/os/hal/include/hal_spi.h
+++ b/os/hal/include/hal_spi.h
@@ -15,7 +15,7 @@
*/
/**
- * @file spi.h
+ * @file hal_spi.h
* @brief SPI Driver macros and structures.
*
* @addtogroup SPI
diff --git a/os/hal/include/hal_st.h b/os/hal/include/hal_st.h
index ce6bd5f77..f2daace1d 100644
--- a/os/hal/include/hal_st.h
+++ b/os/hal/include/hal_st.h
@@ -15,7 +15,7 @@
*/
/**
- * @file st.h
+ * @file hal_st.h
* @brief ST Driver macros and structures.
* @details This header is designed to be include-able without having to
* include other files from the HAL.
diff --git a/os/hal/include/hal_uart.h b/os/hal/include/hal_uart.h
index 7982e1e5d..02d6a4ff9 100644
--- a/os/hal/include/hal_uart.h
+++ b/os/hal/include/hal_uart.h
@@ -15,7 +15,7 @@
*/
/**
- * @file uart.h
+ * @file hal_uart.h
* @brief UART Driver macros and structures.
*
* @addtogroup UART
diff --git a/os/hal/include/hal_usb.h b/os/hal/include/hal_usb.h
index 3f7a5ff4a..f54195af1 100644
--- a/os/hal/include/hal_usb.h
+++ b/os/hal/include/hal_usb.h
@@ -15,7 +15,7 @@
*/
/**
- * @file usb.h
+ * @file hal_usb.h
* @brief USB Driver macros and structures.
*
* @addtogroup USB
diff --git a/os/hal/include/hal_wdg.h b/os/hal/include/hal_wdg.h
index d94722ae0..5e06716ef 100644
--- a/os/hal/include/hal_wdg.h
+++ b/os/hal/include/hal_wdg.h
@@ -15,7 +15,7 @@
*/
/**
- * @file wdg.h
+ * @file hal_wdg.h
* @brief WDG Driver macros and structures.
*
* @addtogroup WDG
diff --git a/os/hal/src/hal_hal.c b/os/hal/src/hal.c
index 04cd0b2c5..04cd0b2c5 100644
--- a/os/hal/src/hal_hal.c
+++ b/os/hal/src/hal.c
diff --git a/os/hal/src/hal_adc.c b/os/hal/src/hal_adc.c
index 9bfb1b0d0..0945ea9f2 100644
--- a/os/hal/src/hal_adc.c
+++ b/os/hal/src/hal_adc.c
@@ -15,7 +15,7 @@
*/
/**
- * @file adc.c
+ * @file hal_adc.c
* @brief ADC Driver code.
*
* @addtogroup ADC
diff --git a/os/hal/src/hal_can.c b/os/hal/src/hal_can.c
index eecfdb7ce..173700afd 100644
--- a/os/hal/src/hal_can.c
+++ b/os/hal/src/hal_can.c
@@ -15,7 +15,7 @@
*/
/**
- * @file can.c
+ * @file hal_can.c
* @brief CAN Driver code.
*
* @addtogroup CAN
diff --git a/os/hal/src/hal_dac.c b/os/hal/src/hal_dac.c
index 0feb4308f..3496bead5 100644
--- a/os/hal/src/hal_dac.c
+++ b/os/hal/src/hal_dac.c
@@ -15,7 +15,7 @@
*/
/**
- * @file dac.c
+ * @file hal_dac.c
* @brief DAC Driver code.
*
* @addtogroup DAC
diff --git a/os/hal/src/hal_ext.c b/os/hal/src/hal_ext.c
index fa25e41a4..9d0c6ff33 100644
--- a/os/hal/src/hal_ext.c
+++ b/os/hal/src/hal_ext.c
@@ -15,7 +15,7 @@
*/
/**
- * @file ext.c
+ * @file hal_ext.c
* @brief EXT Driver code.
*
* @addtogroup EXT
diff --git a/os/hal/src/hal_gpt.c b/os/hal/src/hal_gpt.c
index b83ffa1c1..cd08a2779 100644
--- a/os/hal/src/hal_gpt.c
+++ b/os/hal/src/hal_gpt.c
@@ -15,7 +15,7 @@
*/
/**
- * @file gpt.c
+ * @file hal_gpt.c
* @brief GPT Driver code.
*
* @addtogroup GPT
diff --git a/os/hal/src/hal_i2c.c b/os/hal/src/hal_i2c.c
index 0ed77eeaf..30e8809a1 100644
--- a/os/hal/src/hal_i2c.c
+++ b/os/hal/src/hal_i2c.c
@@ -19,7 +19,7 @@
*/
/**
- * @file i2c.c
+ * @file hal_i2c.c
* @brief I2C Driver code.
*
* @addtogroup I2C
diff --git a/os/hal/src/hal_i2s.c b/os/hal/src/hal_i2s.c
index 57a43a7e3..2434e8477 100644
--- a/os/hal/src/hal_i2s.c
+++ b/os/hal/src/hal_i2s.c
@@ -15,7 +15,7 @@
*/
/**
- * @file i2s.c
+ * @file hal_i2s.c
* @brief I2S Driver code.
*
* @addtogroup I2S
diff --git a/os/hal/src/hal_icu.c b/os/hal/src/hal_icu.c
index ab42dc8ce..8ee4ed8cd 100644
--- a/os/hal/src/hal_icu.c
+++ b/os/hal/src/hal_icu.c
@@ -15,7 +15,7 @@
*/
/**
- * @file icu.c
+ * @file hal_icu.c
* @brief ICU Driver code.
*
* @addtogroup ICU
diff --git a/os/hal/src/hal_mac.c b/os/hal/src/hal_mac.c
index 18add7560..c4027f500 100644
--- a/os/hal/src/hal_mac.c
+++ b/os/hal/src/hal_mac.c
@@ -15,7 +15,7 @@
*/
/**
- * @file mac.c
+ * @file hal_mac.c
* @brief MAC Driver code.
*
* @addtogroup MAC
diff --git a/os/hal/src/hal_mmc_spi.c b/os/hal/src/hal_mmc_spi.c
index acb0d6d2e..19c794501 100644
--- a/os/hal/src/hal_mmc_spi.c
+++ b/os/hal/src/hal_mmc_spi.c
@@ -18,7 +18,7 @@
*/
/**
- * @file mmc_spi.c
+ * @file hal_mmc_spi.c
* @brief MMC over SPI driver code.
*
* @addtogroup MMC_SPI
diff --git a/os/hal/src/hal_pal.c b/os/hal/src/hal_pal.c
index f75e8d481..0be77ad70 100644
--- a/os/hal/src/hal_pal.c
+++ b/os/hal/src/hal_pal.c
@@ -15,7 +15,7 @@
*/
/**
- * @file pal.c
+ * @file hal_pal.c
* @brief I/O Ports Abstraction Layer code.
*
* @addtogroup PAL
diff --git a/os/hal/src/hal_pwm.c b/os/hal/src/hal_pwm.c
index f74bf534c..e11011248 100644
--- a/os/hal/src/hal_pwm.c
+++ b/os/hal/src/hal_pwm.c
@@ -15,7 +15,7 @@
*/
/**
- * @file pwm.c
+ * @file hal_pwm.c
* @brief PWM Driver code.
*
* @addtogroup PWM
diff --git a/os/hal/src/hal_rtc.c b/os/hal/src/hal_rtc.c
index 252bb7ab1..53ceb46fd 100644
--- a/os/hal/src/hal_rtc.c
+++ b/os/hal/src/hal_rtc.c
@@ -19,7 +19,7 @@
*/
/**
- * @file rtc.c
+ * @file hal_rtc.c
* @brief RTC Driver code.
*
* @addtogroup RTC
diff --git a/os/hal/src/hal_sdc.c b/os/hal/src/hal_sdc.c
index bd2c0bef6..654f179e4 100644
--- a/os/hal/src/hal_sdc.c
+++ b/os/hal/src/hal_sdc.c
@@ -15,7 +15,7 @@
*/
/**
- * @file sdc.c
+ * @file hal_sdc.c
* @brief SDC Driver code.
*
* @addtogroup SDC
diff --git a/os/hal/src/hal_serial.c b/os/hal/src/hal_serial.c
index a0956ba9a..0b578fdc4 100644
--- a/os/hal/src/hal_serial.c
+++ b/os/hal/src/hal_serial.c
@@ -15,7 +15,7 @@
*/
/**
- * @file serial.c
+ * @file hal_serial.c
* @brief Serial Driver code.
*
* @addtogroup SERIAL
diff --git a/os/hal/src/hal_serial_usb.c b/os/hal/src/hal_serial_usb.c
index 9c21f7b56..adf5856c4 100644
--- a/os/hal/src/hal_serial_usb.c
+++ b/os/hal/src/hal_serial_usb.c
@@ -15,7 +15,7 @@
*/
/**
- * @file serial_usb.c
+ * @file hal_serial_usb.c
* @brief Serial over USB Driver code.
*
* @addtogroup SERIAL_USB
diff --git a/os/hal/src/hal_spi.c b/os/hal/src/hal_spi.c
index 90907e8f4..86bd78677 100644
--- a/os/hal/src/hal_spi.c
+++ b/os/hal/src/hal_spi.c
@@ -15,7 +15,7 @@
*/
/**
- * @file spi.c
+ * @file hal_spi.c
* @brief SPI Driver code.
*
* @addtogroup SPI
diff --git a/os/hal/src/hal_st.c b/os/hal/src/hal_st.c
index cf654f882..0a8b6e987 100644
--- a/os/hal/src/hal_st.c
+++ b/os/hal/src/hal_st.c
@@ -15,7 +15,7 @@
*/
/**
- * @file st.c
+ * @file hal_st.c
* @brief ST Driver code.
*
* @addtogroup ST
diff --git a/os/hal/src/hal_uart.c b/os/hal/src/hal_uart.c
index 7bf0e5d74..8db39deb9 100644
--- a/os/hal/src/hal_uart.c
+++ b/os/hal/src/hal_uart.c
@@ -15,7 +15,7 @@
*/
/**
- * @file uart.c
+ * @file hal_uart.c
* @brief UART Driver code.
*
* @addtogroup UART
diff --git a/os/hal/src/hal_usb.c b/os/hal/src/hal_usb.c
index d9fbc091a..bc0cf088b 100644
--- a/os/hal/src/hal_usb.c
+++ b/os/hal/src/hal_usb.c
@@ -15,7 +15,7 @@
*/
/**
- * @file usb.c
+ * @file hal_usb.c
* @brief USB Driver code.
*
* @addtogroup USB
diff --git a/os/hal/src/hal_wdg.c b/os/hal/src/hal_wdg.c
index a764864a4..1b3ec70c6 100644
--- a/os/hal/src/hal_wdg.c
+++ b/os/hal/src/hal_wdg.c
@@ -15,7 +15,7 @@
*/
/**
- * @file wdg.c
+ * @file hal_wdg.c
* @brief WDG Driver code.
*
* @addtogroup WDG