2022-01-04 17:03:41 -08:00
|
|
|
#include "pch.h"
|
|
|
|
|
2022-01-10 13:14:39 -08:00
|
|
|
/**
|
|
|
|
* @brief Board-specific initialization code.
|
|
|
|
* @todo Add your board-specific code, if any.
|
|
|
|
*/
|
|
|
|
void boardInit(void)
|
|
|
|
{
|
|
|
|
/* NOP */
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Board-specific configuration defaults.
|
|
|
|
* @todo Add your board-specific code, if any.
|
|
|
|
*/
|
2022-01-11 19:26:24 -08:00
|
|
|
void setBoardDefaultConfiguration() {
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->communicationLedPin = Gpio::Unassigned;
|
|
|
|
engineConfiguration->runningLedPin = Gpio::G13; /* LD3 - green */
|
|
|
|
engineConfiguration->warningLedPin = Gpio::Unassigned;
|
2022-01-14 20:10:48 -08:00
|
|
|
}
|