Add board *Overrides()

This commit is contained in:
Andrei 2017-05-30 21:29:51 +03:00
parent 51dfe6faea
commit aa7e4dbbb6
2 changed files with 16 additions and 0 deletions

View File

@ -134,3 +134,17 @@ void boardInit(void) {
*/
void setBoardConfigurationOverrides(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) {
}

View File

@ -1345,6 +1345,8 @@ extern "C" {
#endif
void boardInit(void);
void setBoardConfigurationOverrides(void);
void setSerialConfigurationOverrides(void);
void setSdCardConfigurationOverrides(void);
#ifdef __cplusplus
}
#endif