Adjusted HAL file names.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9204 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2016-04-02 07:43:00 +00:00
parent 32868225ce
commit 972107af04
44 changed files with 44 additions and 44 deletions

View File

@ -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 \

View File

@ -15,7 +15,7 @@
*/
/**
* @file adc.h
* @file hal_adc.h
* @brief ADC Driver macros and structures.
*
* @addtogroup ADC

View File

@ -15,7 +15,7 @@
*/
/**
* @file can.h
* @file hal_can.h
* @brief CAN Driver macros and structures.
*
* @addtogroup CAN

View File

@ -15,7 +15,7 @@
*/
/**
* @file dac.h
* @file hal_dac.h
* @brief DAC Driver macros and structures.
*
* @addtogroup DAC

View File

@ -15,7 +15,7 @@
*/
/**
* @file ext.h
* @file hal_ext.h
* @brief EXT Driver macros and structures.
*
* @addtogroup EXT

View File

@ -15,7 +15,7 @@
*/
/**
* @file gpt.h
* @file hal_gpt.h
* @brief GPT Driver macros and structures.
*
* @addtogroup GPT

View File

@ -19,7 +19,7 @@
*/
/**
* @file i2c.h
* @file hal_i2c.h
* @brief I2C Driver macros and structures.
*
* @addtogroup I2C

View File

@ -15,7 +15,7 @@
*/
/**
* @file i2s.h
* @file hal_i2s.h
* @brief I2S Driver macros and structures.
*
* @addtogroup I2S

View File

@ -15,7 +15,7 @@
*/
/**
* @file icu.h
* @file hal_icu.h
* @brief ICU Driver macros and structures.
*
* @addtogroup ICU

View File

@ -15,7 +15,7 @@
*/
/**
* @file mac.h
* @file hal_mac.h
* @brief MAC Driver macros and structures.
* @addtogroup MAC
* @{

View File

@ -15,7 +15,7 @@
*/
/**
* @file mmc_spi.h
* @file hal_mmc_spi.h
* @brief MMC over SPI driver header.
*
* @addtogroup MMC_SPI

View File

@ -15,7 +15,7 @@
*/
/**
* @file pal.h
* @file hal_pal.h
* @brief I/O Ports Abstraction Layer macros, types and structures.
*
* @addtogroup PAL

View File

@ -15,7 +15,7 @@
*/
/**
* @file pwm.h
* @file hal_pwm.h
* @brief PWM Driver macros and structures.
*
* @addtogroup PWM

View File

@ -19,7 +19,7 @@
*/
/**
* @file rtc.h
* @file hal_rtc.h
* @brief RTC Driver macros and structures.
*
* @addtogroup RTC

View File

@ -15,7 +15,7 @@
*/
/**
* @file sdc.h
* @file hal_sdc.h
* @brief SDC Driver macros and structures.
*
* @addtogroup SDC

View File

@ -15,7 +15,7 @@
*/
/**
* @file serial.h
* @file hal_serial.h
* @brief Serial Driver macros and structures.
*
* @addtogroup SERIAL

View File

@ -15,7 +15,7 @@
*/
/**
* @file serial_usb.h
* @file hal_serial_usb.h
* @brief Serial over USB Driver macros and structures.
*
* @addtogroup SERIAL_USB

View File

@ -15,7 +15,7 @@
*/
/**
* @file spi.h
* @file hal_spi.h
* @brief SPI Driver macros and structures.
*
* @addtogroup SPI

View File

@ -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.

View File

@ -15,7 +15,7 @@
*/
/**
* @file uart.h
* @file hal_uart.h
* @brief UART Driver macros and structures.
*
* @addtogroup UART

View File

@ -15,7 +15,7 @@
*/
/**
* @file usb.h
* @file hal_usb.h
* @brief USB Driver macros and structures.
*
* @addtogroup USB

View File

@ -15,7 +15,7 @@
*/
/**
* @file wdg.h
* @file hal_wdg.h
* @brief WDG Driver macros and structures.
*
* @addtogroup WDG

View File

@ -15,7 +15,7 @@
*/
/**
* @file adc.c
* @file hal_adc.c
* @brief ADC Driver code.
*
* @addtogroup ADC

View File

@ -15,7 +15,7 @@
*/
/**
* @file can.c
* @file hal_can.c
* @brief CAN Driver code.
*
* @addtogroup CAN

View File

@ -15,7 +15,7 @@
*/
/**
* @file dac.c
* @file hal_dac.c
* @brief DAC Driver code.
*
* @addtogroup DAC

View File

@ -15,7 +15,7 @@
*/
/**
* @file ext.c
* @file hal_ext.c
* @brief EXT Driver code.
*
* @addtogroup EXT

View File

@ -15,7 +15,7 @@
*/
/**
* @file gpt.c
* @file hal_gpt.c
* @brief GPT Driver code.
*
* @addtogroup GPT

View File

@ -19,7 +19,7 @@
*/
/**
* @file i2c.c
* @file hal_i2c.c
* @brief I2C Driver code.
*
* @addtogroup I2C

View File

@ -15,7 +15,7 @@
*/
/**
* @file i2s.c
* @file hal_i2s.c
* @brief I2S Driver code.
*
* @addtogroup I2S

View File

@ -15,7 +15,7 @@
*/
/**
* @file icu.c
* @file hal_icu.c
* @brief ICU Driver code.
*
* @addtogroup ICU

View File

@ -15,7 +15,7 @@
*/
/**
* @file mac.c
* @file hal_mac.c
* @brief MAC Driver code.
*
* @addtogroup MAC

View File

@ -18,7 +18,7 @@
*/
/**
* @file mmc_spi.c
* @file hal_mmc_spi.c
* @brief MMC over SPI driver code.
*
* @addtogroup MMC_SPI

View File

@ -15,7 +15,7 @@
*/
/**
* @file pal.c
* @file hal_pal.c
* @brief I/O Ports Abstraction Layer code.
*
* @addtogroup PAL

View File

@ -15,7 +15,7 @@
*/
/**
* @file pwm.c
* @file hal_pwm.c
* @brief PWM Driver code.
*
* @addtogroup PWM

View File

@ -19,7 +19,7 @@
*/
/**
* @file rtc.c
* @file hal_rtc.c
* @brief RTC Driver code.
*
* @addtogroup RTC

View File

@ -15,7 +15,7 @@
*/
/**
* @file sdc.c
* @file hal_sdc.c
* @brief SDC Driver code.
*
* @addtogroup SDC

View File

@ -15,7 +15,7 @@
*/
/**
* @file serial.c
* @file hal_serial.c
* @brief Serial Driver code.
*
* @addtogroup SERIAL

View File

@ -15,7 +15,7 @@
*/
/**
* @file serial_usb.c
* @file hal_serial_usb.c
* @brief Serial over USB Driver code.
*
* @addtogroup SERIAL_USB

View File

@ -15,7 +15,7 @@
*/
/**
* @file spi.c
* @file hal_spi.c
* @brief SPI Driver code.
*
* @addtogroup SPI

View File

@ -15,7 +15,7 @@
*/
/**
* @file st.c
* @file hal_st.c
* @brief ST Driver code.
*
* @addtogroup ST

View File

@ -15,7 +15,7 @@
*/
/**
* @file uart.c
* @file hal_uart.c
* @brief UART Driver code.
*
* @addtogroup UART

View File

@ -15,7 +15,7 @@
*/
/**
* @file usb.c
* @file hal_usb.c
* @brief USB Driver code.
*
* @addtogroup USB

View File

@ -15,7 +15,7 @@
*/
/**
* @file wdg.c
* @file hal_wdg.c
* @brief WDG Driver code.
*
* @addtogroup WDG