aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/src/hal.c
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2016-03-23 12:36:05 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2016-03-23 12:36:05 +0000
commit4edc5aeca7251e69dfa772dfdd5b2e012375a809 (patch)
treea9f08ea6ff30038585aee638fc08cb5f01d948da /os/hal/src/hal.c
parentf8c7e7e99cc005392dd099be9c3670e8386bd518 (diff)
downloadChibiOS-4edc5aeca7251e69dfa772dfdd5b2e012375a809.tar.gz
ChibiOS-4edc5aeca7251e69dfa772dfdd5b2e012375a809.tar.bz2
ChibiOS-4edc5aeca7251e69dfa772dfdd5b2e012375a809.zip
Mass renaming of HAL files.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9151 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/src/hal.c')
-rw-r--r--os/hal/src/hal.c144
1 files changed, 0 insertions, 144 deletions
diff --git a/os/hal/src/hal.c b/os/hal/src/hal.c
deleted file mode 100644
index 04cd0b2c5..000000000
--- a/os/hal/src/hal.c
+++ /dev/null
@@ -1,144 +0,0 @@
-/*
- ChibiOS - Copyright (C) 2006..2016 Giovanni Di Sirio
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-*/
-
-/**
- * @file hal.c
- * @brief HAL subsystem code.
- *
- * @addtogroup HAL
- * @{
- */
-
-#include "hal.h"
-
-/*===========================================================================*/
-/* Driver local definitions. */
-/*===========================================================================*/
-
-/*===========================================================================*/
-/* Driver exported variables. */
-/*===========================================================================*/
-
-/*===========================================================================*/
-/* Driver local variables and types. */
-/*===========================================================================*/
-
-/*===========================================================================*/
-/* Driver local functions. */
-/*===========================================================================*/
-
-/*===========================================================================*/
-/* Driver exported functions. */
-/*===========================================================================*/
-
-/**
- * @brief HAL initialization.
- * @details This function invokes the low level initialization code then
- * initializes all the drivers enabled in the HAL. Finally the
- * board-specific initialization is performed by invoking
- * @p boardInit() (usually defined in @p board.c).
- *
- * @init
- */
-void halInit(void) {
-
- /* Initializes the OS Abstraction Layer.*/
- osalInit();
-
- /* Platform low level initializations.*/
- hal_lld_init();
-
-#if (HAL_USE_PAL == TRUE) || defined(__DOXYGEN__)
- palInit(&pal_default_config);
-#endif
-#if (HAL_USE_ADC == TRUE) || defined(__DOXYGEN__)
- adcInit();
-#endif
-#if (HAL_USE_CAN == TRUE) || defined(__DOXYGEN__)
- canInit();
-#endif
-#if (HAL_USE_DAC == TRUE) || defined(__DOXYGEN__)
- dacInit();
-#endif
-#if (HAL_USE_EXT == TRUE) || defined(__DOXYGEN__)
- extInit();
-#endif
-#if (HAL_USE_GPT == TRUE) || defined(__DOXYGEN__)
- gptInit();
-#endif
-#if (HAL_USE_I2C == TRUE) || defined(__DOXYGEN__)
- i2cInit();
-#endif
-#if (HAL_USE_I2S == TRUE) || defined(__DOXYGEN__)
- i2sInit();
-#endif
-#if (HAL_USE_ICU == TRUE) || defined(__DOXYGEN__)
- icuInit();
-#endif
-#if (HAL_USE_MAC == TRUE) || defined(__DOXYGEN__)
- macInit();
-#endif
-#if (HAL_USE_PWM == TRUE) || defined(__DOXYGEN__)
- pwmInit();
-#endif
-#if (HAL_USE_SERIAL == TRUE) || defined(__DOXYGEN__)
- sdInit();
-#endif
-#if (HAL_USE_SDC == TRUE) || defined(__DOXYGEN__)
- sdcInit();
-#endif
-#if (HAL_USE_SPI == TRUE) || defined(__DOXYGEN__)
- spiInit();
-#endif
-#if (HAL_USE_UART == TRUE) || defined(__DOXYGEN__)
- uartInit();
-#endif
-#if (HAL_USE_USB == TRUE) || defined(__DOXYGEN__)
- usbInit();
-#endif
-#if (HAL_USE_MMC_SPI == TRUE) || defined(__DOXYGEN__)
- mmcInit();
-#endif
-#if (HAL_USE_SERIAL_USB == TRUE) || defined(__DOXYGEN__)
- sduInit();
-#endif
-#if (HAL_USE_RTC == TRUE) || defined(__DOXYGEN__)
- rtcInit();
-#endif
-#if (HAL_USE_WDG == TRUE) || defined(__DOXYGEN__)
- wdgInit();
-#endif
-
- /* Community driver overlay initialization.*/
-#if defined(HAL_USE_COMMUNITY) || defined(__DOXYGEN__)
-#if (HAL_USE_COMMUNITY == TRUE) || defined(__DOXYGEN__)
- halCommunityInit();
-#endif
-#endif
-
- /* Board specific initialization.*/
- boardInit();
-
-/*
- * The ST driver is a special case, it is only initialized if the OSAL is
- * configured to require it.
- */
-#if OSAL_ST_MODE != OSAL_ST_MODE_NONE
- stInit();
-#endif
-}
-
-/** @} */