circuitpython/ports/espressif/boards/lilygo_ttgo_t-oi-plus/board.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
274 B
C
Raw Normal View History

2022-05-12 13:18:39 -04:00
#include "shared-bindings/microcontroller/Pin.h"
#include "supervisor/board.h"
#include "components/driver/include/driver/gpio.h"
2022-05-12 17:46:49 -04:00
void board_init(void) {
2022-05-12 13:18:39 -04:00
}
bool board_requests_safe_mode(void) {
return false;
}
void reset_board(void) {
}
void board_deinit(void) {
}