Skip to content

Commit

Permalink
Ensure that even 0x00000 causes a write of the extended address byte,…
Browse files Browse the repository at this point in the history
… for flash >128KB.
  • Loading branch information
Peter Van Hoyweghen authored and Peter Van Hoyweghen committed Nov 29, 2015
1 parent e483ea3 commit 14af55e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware/isp.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ void ispConnect() {
}

/* Initial extended address value */
isp_hiaddr = 0;
isp_hiaddr = 0xff; /* ensure that even 0x00000 causes a write of the extended address byte */
}

void ispDisconnect() {
Expand Down

0 comments on commit 14af55e

Please sign in to comment.