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