2019-11-06 17:05:44 -08:00
|
|
|
/**
|
|
|
|
* @file board_extra.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "chconf_common.h"
|
2019-06-12 08:57:18 -07:00
|
|
|
|
2022-01-14 20:37:50 -08:00
|
|
|
/**
|
|
|
|
* @brief Board-specific pin configuration code overrides. Needed by bootloader code.
|
|
|
|
* @todo Add your board-specific code, if any.
|
|
|
|
*/
|
|
|
|
void setPinConfigurationOverrides() {
|
|
|
|
}
|
2019-06-12 08:57:18 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Board-specific Serial configuration code overrides. Needed by bootloader code.
|
|
|
|
* @todo Add your board-specific code, if any.
|
|
|
|
*/
|
2022-01-11 19:26:24 -08:00
|
|
|
void setSerialConfigurationOverrides() {
|
2019-06-12 08:57:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Board-specific SD card configuration code overrides. Needed by bootloader code.
|
|
|
|
* @todo Add your board-specific code, if any.
|
|
|
|
*/
|
2022-01-11 19:26:24 -08:00
|
|
|
void setSdCardConfigurationOverrides() {
|
2019-06-12 08:57:18 -07:00
|
|
|
}
|