Hello World
This commit is contained in:
parent
7f0b2e8686
commit
3e9cd063e7
|
@ -0,0 +1,7 @@
|
||||||
|
BOARDCPPSRC = $(BOARD_DIR)/board_configuration.cpp
|
||||||
|
|
||||||
|
DDEFS += -DFIRMWARE_ID=\"XXX\"
|
||||||
|
SHORT_BOARD_NAME=XXX
|
||||||
|
|
||||||
|
# assign critical LED to a non-existent pin if you do not have it on your board
|
||||||
|
DDEFS += -DLED_CRITICAL_ERROR_BRAIN_PIN=Gpio::I15
|
|
@ -0,0 +1,13 @@
|
||||||
|
#include "pch.h"
|
||||||
|
|
||||||
|
Gpio getCommsLedPin() {
|
||||||
|
return Gpio::Unassigned;
|
||||||
|
}
|
||||||
|
|
||||||
|
Gpio getRunningLedPin() {
|
||||||
|
return Gpio::Unassigned;
|
||||||
|
}
|
||||||
|
|
||||||
|
Gpio getWarningLedPin() {
|
||||||
|
return Gpio::Unassigned;
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
See https://github.com/chuckwagoncomputing/interactive-pinout for documentation
|
Loading…
Reference in New Issue