Skip to content

Commit c93ccd1

Browse files
committed
Disable pin resets on the 1060
1 parent b5b9a56 commit c93ccd1

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

ports/mimxrt10xx/boards/teensy41/board.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
#include "boards/board.h"
2929
#include "mpconfigboard.h"
30+
#include "shared-bindings/microcontroller/Pin.h"
3031

3132
void board_init(void) {
3233
// FLEX flash

ports/mimxrt10xx/supervisor/port.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,9 @@ void reset_port(void) {
306306

307307
//reset_event_system();
308308

309+
#if !defined (MIMXRT1062_SERIES)
309310
reset_all_pins();
311+
#endif
310312
}
311313

312314
void reset_to_bootloader(void) {

0 commit comments

Comments
 (0)