1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards: drop board_init() from board.h

This commit is contained in:
Benjamin Valentin 2022-02-22 19:08:07 +01:00
parent 1bf151f01f
commit 5d111e71aa
129 changed files with 1 additions and 644 deletions

View File

@ -69,11 +69,6 @@ extern "C" {
#define BTN1_MODE GPIO_IN
/** @} */
/**
* @brief Board level initialization
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -50,11 +50,6 @@ extern "C" {
#define BTN0_MODE GPIO_IN_PU
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -65,11 +65,6 @@ extern mtd_dev_t *mtd0;
#define XTIMER_HZ (1000000ul)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -71,11 +71,6 @@ extern "C" {
#define BTN2_MODE GPIO_IN_PD /**< Button 2 mode */
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -41,11 +41,6 @@ extern "C" {
#define LED0_NAME "LED(Yellow)"
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -53,11 +53,6 @@ extern "C" {
#define XTIMER_BACKOFF (40)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -70,11 +70,6 @@ extern "C" {
#define BTN0_MODE GPIO_IN_PU
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -55,11 +55,6 @@ extern "C" {
#define XTIMER_BACKOFF (40)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -53,11 +53,6 @@ extern "C" {
#define XTIMER_BACKOFF (40)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -107,11 +107,6 @@ extern "C" {
#define BTN0_MODE GPIO_IN
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -91,11 +91,6 @@ extern "C" {
#define BTN0_MODE GPIO_IN_PU /**< User button pin mode */
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -83,11 +83,6 @@ extern "C" {
#define LSM6DSL_PARAM_ADDR (0x6A)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -75,11 +75,6 @@ extern "C" {
#define LPSXXX_PARAM_I2C I2C_DEV(1)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -67,12 +67,6 @@ extern "C"
#define LED0_TOGGLE (LED_PORT.OUTTGL.reg = LED0_MASK)
/** @}*/
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -48,11 +48,6 @@ extern "C" {
#define LED0_TOGGLE (LED0_PORT->ODR ^= LED0_MASK)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -65,11 +65,6 @@ extern "C" {
#define LED1_TOGGLE gpio_toggle(LED1_PIN)
/** @} */
/**
* @brief Initialize board specific hardware
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -61,11 +61,6 @@ extern "C" {
#define LED1_TOGGLE gpio_toggle(LED1_PIN)
/** @} */
/**
* @brief Initialize board specific hardware
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -65,11 +65,6 @@ extern "C" {
#define LED1_TOGGLE gpio_toggle(LED1_PIN)
/** @} */
/**
* @brief Initialize board specific hardware
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -61,11 +61,6 @@ extern "C" {
#define LED1_TOGGLE gpio_toggle(LED1_PIN)
/** @} */
/**
* @brief Initialize board specific hardware
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -80,11 +80,6 @@ extern "C" {
#define XTIMER_ISR_BACKOFF (40)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
} /* end extern "C" */
#endif

View File

@ -63,11 +63,6 @@ extern "C" {
#define LED1_TOGGLE gpio_toggle(LED1_PIN)
/** @} */
/**
* @brief Initialize board specific hardware
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -61,11 +61,6 @@ extern "C" {
#define LED1_TOGGLE gpio_toggle(LED1_PIN)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs, and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -133,11 +133,6 @@ extern "C" {
#endif
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -51,11 +51,6 @@ extern "C" {
#endif
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -30,11 +30,6 @@
extern "C" {
#endif
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -52,11 +52,6 @@ extern "C" {
#define LED0_TOGGLE (LED_PORT.OUTTGL.reg = LED0_MASK)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -49,11 +49,6 @@ extern "C" {
#define LED0_TOGGLE (LED0_PORT->ODR ^= LED0_MASK) /**< Toggle LED0 */
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
/**
* @brief Use the 2nd UART for STDIO on this board
*/

View File

@ -113,15 +113,6 @@ extern mtd_dev_t *mtd0;
/** @} */
#endif /* defined(MODULE_SPIFFS) || defined(DOXYGEN) */
/**
* @brief Initialize board specific hardware
*
* Since all features of ESP8266 boards are provided by the MCU, almost all
* initializations are done during the CPU initialization that is called from
* boot loader.
*/
void board_init (void);
/**
* @brief Print the board configuration in a human readable format
*/

View File

@ -98,11 +98,6 @@ extern "C" {
#define LED2_TOGGLE (GPIOC->ODR ^= LED2_MASK)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -31,11 +31,6 @@ extern "C"
{
#endif
/**
* @brief Initialize board specific hardware, including clock, LEDs and standard I/O
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -50,11 +50,6 @@ extern "C" {
#define XTIMER_BACKOFF (40)
/** @} */
/**
* @brief Initialize the platform
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -26,11 +26,6 @@
extern "C" {
#endif
/**
* @brief Initialize the platform
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -47,4 +47,4 @@ extern "C" {
#endif
#endif /* CFG_RTT_DEFAULT_H */
/** @} */
/** @} */

View File

@ -55,11 +55,6 @@ extern "C" {
#endif
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -84,11 +84,6 @@
#define XTIMER_ISR_BACKOFF (40)
/** @} */
/**
* @brief Initialize board specific hardware
*/
void board_init(void);
#ifdef __cplusplus
} /* end extern "C" */
#endif

View File

@ -69,11 +69,6 @@ extern "C" {
#define XTIMER_BACKOFF (40)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -121,11 +121,6 @@ extern "C" {
#define SI70XX_PARAM_I2C_DEV SI7021_I2C
/** @} */
/**
* @brief Initialize the board (GPIO, sensors, clocks).
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -33,11 +33,6 @@ extern "C" {
#define XTIMER_CHAN (0)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -81,11 +81,6 @@ extern mtd_dev_t *mtd0;
#define MTD_0 mtd0
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -35,11 +35,6 @@ extern "C" {
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -35,11 +35,6 @@ extern "C" {
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -86,11 +86,6 @@ extern "C" {
#define LED1_TOGGLE gpio_toggle(LED1_PIN)
/** @} */
/**
* @brief Initialize the board (GPIO, sensors, clocks).
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -73,11 +73,6 @@ extern "C" {
#define CONFIG_ZTIMER_USEC_MIN (8)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
extern void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -99,11 +99,6 @@
extern "C" {
#endif
/**
* @brief Initialize the board specific hardware
*/
void board_init(void);
#ifdef __cplusplus
} /* end extern "C" */
#endif

View File

@ -53,11 +53,6 @@ extern "C" {
#define LED2_TOGGLE (LED_PORT->ODR ^= LED2_MASK)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -70,11 +70,6 @@ extern "C" {
#define SX127X_PARAM_PASELECT (SX127X_PA_BOOST)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -72,11 +72,6 @@ extern "C" {
#define CC1200_GPD2_GPIO GPIO_PIN(PORT_B, 0)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
} /* end extern "C" */
#endif

View File

@ -74,11 +74,6 @@ extern "C"
#define FXOS8700_PARAM_ADDR 0x1C
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -75,11 +75,6 @@ extern "C"
#define FXOS8700_PARAM_ADDR 0x1E
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -95,11 +95,6 @@ extern "C"
#define MMA8X5X_PARAM_TYPE (MMA8X5X_TYPE_MMA8451)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -127,11 +127,6 @@ extern "C" {
*/
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -55,11 +55,6 @@ extern "C" {
#define LED2_TOGGLE gpio_toggle(LED2_PIN)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
/**
* @brief Initialize the board clock to use PLL and faster SPI access.
*/

View File

@ -56,11 +56,6 @@ extern "C" {
#define LED2_TOGGLE gpio_toggle(LED2_PIN)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
/**
* @brief Initialize the board clock to use PLL and faster SPI access.
*/

View File

@ -47,11 +47,6 @@ extern "C" {
#define SX127X_PARAM_PASELECT (SX127X_PA_BOOST)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -104,11 +104,6 @@ extern mtd_dev_t *mtd0;
#define MTD_0 mtd0
/** @} */
/**
* @brief Initialize the board (GPIO, sensors, clocks).
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -56,11 +56,6 @@ extern "C" {
#define SX127X_PARAM_TX_SWITCH GPIO_PIN(PORT_A, 4)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -57,11 +57,6 @@ extern "C" {
#define LIS3MDL_PARAM_ADDR (0x28)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -68,11 +68,6 @@ extern "C" {
#define SX127X_PARAM_DIO3 GPIO_PIN(PORT_B, 7)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -95,11 +95,6 @@ extern void lora_e5_dev_sx126x_set_rf_mode(sx126x_t *dev, sx126x_rf_mode_t rf_mo
*/
#define LORA_E5_DEV_5V_ENABLE_PIN GPIO_PIN(PORT_B, 10)
/**
* @brief Board level initialization
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -51,11 +51,6 @@ extern "C" {
#define SX127X_PARAM_PASELECT (SX127X_PA_BOOST)
/** @} */
/**
* @brief Initialize board specific hardware
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -59,11 +59,6 @@ extern "C" {
*/
#define STDIO_UART_DEV UART_DEV(1)
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -52,11 +52,6 @@ extern "C" {
#define LED3_TOGGLE gpio_toggle(LED3_PIN)
/** @} */
/**
* @brief Initialize board specific hardware, include clocks, LEDs and stdio
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -125,11 +125,6 @@ extern "C" {
#define CPU_ATMEGA_CLK_SCALE_INIT CPU_ATMEGA_CLK_SCALE_DIV1
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -44,11 +44,6 @@ extern "C" {
#define XTIMER_BACKOFF (40)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and stdio
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -78,11 +78,6 @@ extern "C" {
#define BUTTON1_PIN GPIO_PIN(PORT_A, 0) /**< Pin of right button */
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -89,11 +89,6 @@
extern "C" {
#endif
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -12,11 +12,6 @@
#ifdef __cplusplus
extern "C" {
#endif
extern int _native_null_out_file;
extern int _native_null_in_pipe[2];
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -52,11 +52,6 @@ extern "C" {
#define LED2_TOGGLE (NRF_GPIO->OUT ^= LED2_MASK)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -85,11 +85,6 @@ extern "C" {
#define BTN3_MODE GPIO_IN /**< BTN3 default mode */
/** @} */
/**
* @brief Initialize the platform
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -41,11 +41,6 @@ extern "C" {
#define LED0_TOGGLE (GPIOB->ODR ^= LED0_MASK)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -65,11 +65,6 @@ extern "C" {
#define BTN0_MODE GPIO_IN
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -89,11 +89,6 @@
#define INTERNAL_PERIPHERAL_PID (0x16C8)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
} /* end extern "C" */
#endif

View File

@ -77,11 +77,6 @@ extern "C" {
#endif
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -85,11 +85,6 @@ extern "C"
#define PTB3_OUTPUT_OSCERCLK (0)
#endif
/**
* @brief Initialize board-specific hardware, including clock, LEDs, and stdio
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -147,11 +147,6 @@
#define BOOT_PIN GPIO_PIN(0, CCA_BACKDOOR_PORT_A_PIN) /**< BSL_BOOT Pin */
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
} /* end extern "C" */
#endif

View File

@ -90,11 +90,6 @@
#define CONFIG_CC2538_RF_OBS_SIG_2_PCX 7 /* PC7 */
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
} /* end extern "C" */
#endif

View File

@ -66,11 +66,6 @@ extern "C" {
#define BTN4_MODE GPIO_IN_PD /**< Up button mode */
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -93,11 +93,6 @@ extern "C"
#define TMP00X_PARAM_ADDR (0x41)
/** @}*/
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -139,11 +139,6 @@ extern "C"
#define MMA8X5X_PARAM_ADDR (0x1D)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and standard I/O
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -80,11 +80,6 @@ extern "C" {
#define BTN1_MODE GPIO_IN
/** @} */
/**
* @brief Board level initialization
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -49,11 +49,6 @@ extern "C" {
#define BTN0_MODE GPIO_IN_PU /**< User button pin mode */
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and stdio
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -67,11 +67,6 @@ extern mtd_dev_t *mtd0;
#define MTD_0 mtd0
/** @} */
/**
* @brief Initialize board specific hardware
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -104,11 +104,6 @@ extern "C" {
#define ADPS9960_PARAM_PIN_INT GPIO_PIN(0, 23)
/** @} */
/**
* @brief Initialize board specific hardware
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -74,11 +74,6 @@
#define RF_SWITCH_TOGGLE gpio_toggle(RF_SWITCH_GPIO)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
} /* end extern "C" */
#endif

View File

@ -110,11 +110,6 @@
#define CC1200_GPD2_GPIO GPIO_PB0
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
} /* end extern "C" */
#endif

View File

@ -122,11 +122,6 @@
#define SDCARD_SPI_PARAM_POWER_AH false
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
} /* end extern "C" */
#endif

View File

@ -39,11 +39,6 @@ extern "C" {
#define LED0_NAME "LED(Green)"
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -78,11 +78,6 @@ extern "C" {
#define LIS2DH12_PARAM_INT_PIN2 GPIO_PIN(0, 6)
/** @} */
/**
* @brief Initialize board specific hardware
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -61,11 +61,6 @@ extern "C" {
#define BTN0_MODE GPIO_IN_PU
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -59,11 +59,6 @@ extern "C" {
#define BTN0_MODE GPIO_IN_PU
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -62,11 +62,6 @@ extern "C" {
#define BTN0_MODE GPIO_IN_PU
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -86,11 +86,6 @@ extern mtd_dev_t *mtd0, *mtd1;
#define XTIMER_HZ (1000000ul)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -49,11 +49,6 @@ extern "C" {
#define BTN0_MODE GPIO_IN_PU
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -105,11 +105,6 @@ enum {
#endif
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
/**
* @brief Set antenna switch
*/

View File

@ -92,11 +92,6 @@ enum {
#endif
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
/**
* @brief Set antenna switch
*/

View File

@ -76,11 +76,6 @@ extern "C" {
#define BTN0_MODE GPIO_IN_PU /**< Pull Up GPIO */
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -35,11 +35,6 @@ extern "C" {
#define XTIMER_WIDTH (16)
/** @} */
/**
* @brief Initialize board specific hardware
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -53,11 +53,6 @@ extern "C" {
#define LED3_TOGGLE gpio_toggle(LED3_PIN)
/** @} */
/**
* @brief Initialize board specific hardware, include clocks, LEDs and stdio
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -68,10 +68,6 @@ extern "C" {
#define INTERNAL_PERIPHERAL_PID (0x0057)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

View File

@ -190,11 +190,6 @@ extern mtd_dev_t *mtd0;
/** @} */
#endif /* MODULE_MTD_SDCARD || DOXYGEN */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/
void board_init(void);
#ifdef __cplusplus
}
#endif

Some files were not shown because too many files have changed in this diff Show More