Add board *Overrides()
This commit is contained in:
parent
51dfe6faea
commit
aa7e4dbbb6
|
@ -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) {
|
||||
}
|
||||
|
|
|
@ -1345,6 +1345,8 @@ extern "C" {
|
|||
#endif
|
||||
void boardInit(void);
|
||||
void setBoardConfigurationOverrides(void);
|
||||
void setSerialConfigurationOverrides(void);
|
||||
void setSdCardConfigurationOverrides(void);
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue