Skip to content

Commit fd00bb8

Browse files
committed
Fix pin reset flash conflict error
1 parent a59798e commit fd00bb8

File tree

1 file changed

+2
-2
lines changed
  • ports/mimxrt10xx/supervisor

1 file changed

+2
-2
lines changed

ports/mimxrt10xx/supervisor/port.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,8 +257,8 @@ safe_mode_t port_init(void) {
257257
// enabled. It won't occur very often so it'll be low overhead.
258258
NVIC_EnableIRQ(SNVS_HP_WRAPPER_IRQn);
259259

260-
// Reset everything into a known state before board_init.
261-
reset_port();
260+
// Note that reset_port CANNOT GO HERE, unlike other ports, since we currently rely on it to
261+
// protect never_reset pins per board.
262262

263263
if (board_requests_safe_mode()) {
264264
return USER_SAFE_MODE;

0 commit comments

Comments
 (0)