forgot deinit

This commit is contained in:
lady ada 2021-01-09 14:01:58 -05:00
parent 301facf102
commit a600fd3478
1 changed files with 5 additions and 0 deletions

View File

@ -34,8 +34,10 @@ void board_init(void) {
common_hal_never_reset_pin(&pin_GPIO20);
// Debug UART
#ifdef DEBUG
common_hal_never_reset_pin(&pin_GPIO43);
common_hal_never_reset_pin(&pin_GPIO44);
#endif /* DEBUG */
}
bool board_requests_safe_mode(void) {
@ -45,3 +47,6 @@ bool board_requests_safe_mode(void) {
void reset_board(void) {
}
void board_deinit(void) {
}