Skip to content

Commit 1d2484b

Browse files
committed
Documentation tweaks
1 parent f6dd377 commit 1d2484b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Serial Flasher Protocol Specification v1 for Arduino Due
22
This implementation ~~uses~~ used software SPI (bit banging).
3-
It uses hardware SPI through the ICSP header, since commit 2f98c47.
3+
It uses hardware SPI (`C̅S̅ → pin 52`) through the ICSP header since commit 2f98c47.
44

55
### Why bit banging?
66
I needed to flash my laptop's BIOS and the Arduino Due was the only one I had running at 3.3V.

serprog-due/serprog-due.ino

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
2-
* Serprog for Arduino Due using hardware SPI
2+
* Serprog for Arduino Due using hardware SPI (CS on pin 52 by default, see below)
33
* Use a Pomona SOIC-8 clip to program a soldered serial flash
44
*
5-
* SOP8 clip pinout
5+
* SOP8 clip pinout (Winbond 25Q64FV)
66
* 1 -- /CS (CS)
77
* 2 -- DO (MISO)
88
* 3 -- /WP (pull-up)
@@ -31,7 +31,7 @@
3131
* 0x14 (Set SPI frequency)
3232
*/
3333

34-
//Change serial port and CS pin number accordingly
34+
//Change serial port and CS pin if using a different Arduino
3535
serprog sp(SerialUSB, 52);
3636

3737
void setup()

0 commit comments

Comments
 (0)