Skip to content

Commit 173efe0

Browse files
committed
Update README.md
1 parent 2a6b804 commit 173efe0

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

README.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,23 @@ Dependencies: Arduino & SST25VF004, SST25VF016, SST25VF064, etc Nor Serial Flas
88
```
99

1010
Much of the code in the library is Based on SST code from: (Rugged Circuits and Wusik)
11-
Should work for SST25VF004, SST25VF016, SST25VF064, etc.
11+
Should work for SST25VF004, SST25VF016, SST25VF064, etc.
12+
13+
### List of Functions
14+
15+
```cpp
16+
void begin(int chipSelect,int writeProtect,int hold);
17+
void update();
18+
void readID();
19+
void totalErase();
20+
void sectorErase(uint8_t sectorAddress);
21+
22+
void readInit(uint32_t address);
23+
uint8_t readNext();
24+
void readFinish();
25+
void readArray(uint32_t address,uint8_t dataBuffer[],uint16_t dataLength);
26+
27+
void writeByte(uint32_t address, uint8_t data);
28+
uint32_t writeArray(uint32_t address,const uint8_t dataBuffer[],uint16_t dataLength);
29+
```
30+

0 commit comments

Comments
 (0)