25 lines
362 B
C++
25 lines
362 B
C++
#include "pch.h"
|
|
|
|
/**
|
|
* @brief Board-specific initialization code.
|
|
* @todo Add your board-specific code, if any.
|
|
*/
|
|
void boardInit(void)
|
|
{
|
|
/* NOP */
|
|
}
|
|
|
|
Gpio getWarningLedPin() {
|
|
// this board has no warning led
|
|
return Gpio::Unassigned;
|
|
}
|
|
|
|
Gpio getCommsLedPin() {
|
|
return Gpio::Unassigned;
|
|
}
|
|
|
|
Gpio getRunningLedPin() {
|
|
// LD3 - green
|
|
return Gpio::G13;
|
|
}
|