27 lines
633 B
C
27 lines
633 B
C
/**
|
|
* @file board_extra.c
|
|
*/
|
|
|
|
#include "chconf_common.h"
|
|
|
|
/**
|
|
* @brief Board-specific pin configuration code overrides. Needed by bootloader code.
|
|
* @todo Add your board-specific code, if any.
|
|
*/
|
|
void setPinConfigurationOverrides() {
|
|
}
|
|
|
|
/**
|
|
* @brief Board-specific Serial configuration code overrides. Needed by bootloader code.
|
|
* @todo Add your board-specific code, if any.
|
|
*/
|
|
void setSerialConfigurationOverrides() {
|
|
}
|
|
|
|
/**
|
|
* @brief Board-specific SD card configuration code overrides. Needed by bootloader code.
|
|
* @todo Add your board-specific code, if any.
|
|
*/
|
|
void setSdCardConfigurationOverrides() {
|
|
}
|