-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathS25FLx.cpp
355 lines (266 loc) · 8.41 KB
/
S25FLx.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
/*
Arduino S25FLx Serial Flash library
By John-Mike Reed (Dr. Bleep) of Bleep labs
bleeplabs.com
Usage guide at github.com/BleepLabs/S25FLx/
Datasheet for S25FL216K www.mouser.com/ds/2/380/S25FL216K_00-6756.pdf
This library can interface with most of the S25FL family with no modifications.
This free library is realeased under Creative comoms license CC BY-SA 3.0
http://creativecommons.org/licenses/by-sa/3.0/deed.en_US
*/
#include "arduino.h"
#include <SPI.h>
#include "S25FLx.h"
//Define S25FLx control bytes
#define WREN 0x06 /* Write Enable */
#define WRDI 0x04 /* Write Disable */
#define RDSR 0x05 /* Read Status Register */
#define WRSR 0x01 /* Write Status Register */
#define READ 0x03 /* Read Data Bytes */
#define FAST_READ 0x0b /* Read Data Bytes at Higher Speed //Not used as as the 328 isn't fast enough */
#define PP 0x02 /* Page Program */
#define SE 0x20 /* Sector Erase (4k) */
#define BE 0x20 /* Block Erase (64k) */
#define CE 0xc7 /* Erase entire chip */
#define DP 0xb9 /* Deep Power-down */
#define RES 0xab /* Release Power-down, return Device ID */
#define RDID 0x9F /* Read Manufacture ID, memory type ID, capacity ID */
#define cs 10 //Chip select pin
unsigned long prev;
//A great little tool for printing a byte as binary without it chopping off the leading zeros.
//from http://forum.arduino.cc/index.php/topic,46320.0.html
flash::flash(){
SPI.begin();
SPI.setBitOrder(MSBFIRST);
SPI.setClockDivider(SPI_CLOCK_DIV8);
SPI.setDataMode(SPI_MODE0);
}
void printBits(byte myByte){
for(byte mask = 0x80; mask; mask >>= 1){
if(mask & myByte)
Serial.print('1');
else
Serial.print('0');
}
}
//read and return the status register.
byte flash::stat(){ //check status register
digitalWriteFast(cs,LOW);
SPI.transfer(RDSR);
byte s=SPI.transfer(0);
digitalWriteFast(cs,HIGH);
// printBits(s);
return s;
}
// use between each communication to make sure S25FLxx is ready to go.
void flash::waitforit(){
byte s=stat();
while ((s & B0000001)==B00000001){ //check if WIP bit is 1
// while (s==B00000011||s==B00000001){
if ((millis()-prev)>1000){
prev=millis();
Serial.print("S25FL Busy. Status register = B");
printBits(s);
Serial.println();
}
s=stat();
}
}
// Must be done to allow erasing or writing
void flash::write_enable(){
digitalWriteFast(cs,LOW);
SPI.transfer(WREN);
digitalWriteFast(cs,HIGH);
waitforit();
// Serial.println("write enabled");
}
// Erase an entire 4k sector the location is in.
// For example "erase_4k(300);" will erase everything from 0-3999.
//
// All erase commands take time. No other actions can be preformed
// while the chip is errasing except for reading the register
void flash::erase_4k(unsigned long loc){
waitforit();
write_enable();
digitalWriteFast(cs,LOW);
SPI.transfer(0x20);
SPI.transfer(loc>>16);
SPI.transfer(loc>>8);
SPI.transfer(loc & 0xFF);
digitalWriteFast(cs,HIGH);
waitforit();
}
// Errase an entire 64_k sector the location is in.
// For example erase4k(530000) will erase everything from 524543 to 589823.
void flash::erase_64k(unsigned long loc){
waitforit();
write_enable();
digitalWriteFast(cs,LOW);
SPI.transfer(0x20);
SPI.transfer(loc>>16);
SPI.transfer(loc>>8);
SPI.transfer(loc & 0xFF);
digitalWriteFast(cs,HIGH);
waitforit();
}
//errases all the memory. Can take several seconds.
void flash::erase_all(){
waitforit();
write_enable();
digitalWriteFast(cs,LOW);
SPI.transfer(CE);
digitalWriteFast(cs,HIGH);
waitforit();
}
// Read data from the flash chip. There is no limit "length". The entire memory can be read with one command.
//read_S25(starting location, array, number of bytes);
void flash::read(unsigned long loc, uint8_t* array, unsigned long length){
digitalWriteFast(cs,LOW);
SPI.transfer(READ); //control byte follow by location bytes
SPI.transfer(loc>>16); // convert the location integer to 3 bytes
SPI.transfer(loc>>8);
SPI.transfer(loc & 0xff);
for (int i=0; i<length+1;i++){
array[i]=SPI.transfer(0); //send the data
}
digitalWriteFast(cs,HIGH);
}
// Programs up to 256 bytes of data to flash chip. Data must be erased first. You cannot overwrite.
// Only one continuous page (256 Bytes) can be programmed at once so there's some
// sorcery going on here to make it not wrap around.
// It's most efficent to only program one page so if you're going for speed make sure your
// location %=0 (for example location=256, length=255.) or your length is less that the bytes remain
// in the page (location =120 , length= 135)
//write_S25(starting location, array, number of bytes);
void flash::write(unsigned long loc, uint8_t* array, unsigned long length){
if (length>255){
unsigned long reps=length>>8;
unsigned long length1;
unsigned long array_count;
unsigned long first_length;
unsigned remainer0=length-(256*reps);
unsigned long locb=loc;
Serial.print("reps ");Serial.println(reps);
Serial.print("remainer0 ");Serial.println(remainer0);
for (int i=0; i<(reps+2);i++){
if (i==0){
length1=256-(locb & 0xff);
first_length=length1;
if (length1==0){i++;}
array_count=0;
}
if (i>0 && i<(reps+1)){
locb= first_length+loc+(256*(i-1));;
array_count=first_length+(256*(i-1));
length1=255;
}
if (i==(reps+1)){
locb+=(256);
array_count+=256;
length1=remainer0;
if (remainer0==0){break;}
}
//Serial.print("i ");Serial.println(i);
//Serial.print("locb ");Serial.println(locb);
//Serial.print("length1 ");Serial.println(length1);
//Serial.print("array_count ");Serial.println(array_count );
write_enable();
waitforit();
digitalWriteFast(cs,LOW);
SPI.transfer(PP);
SPI.transfer(locb>>16);
SPI.transfer(locb>>8);
SPI.transfer(locb & 0xff);
for (unsigned long i=array_count; i<(length1+array_count+1) ; i++){
SPI.transfer(array[i]);
}
digitalWriteFast(cs,HIGH);
waitforit();
//Serial.println("//////////");
}
}
if (length<=255){
if (((loc & 0xff)!=0) | ((loc & 0xff)<length)){
byte remainer = loc & 0xff;
byte length1 =256-remainer;
byte length2 = length-length1;
unsigned long page1_loc = loc;
unsigned long page2_loc = loc+length1;
write_enable();
waitforit();
digitalWriteFast(cs,LOW);
SPI.transfer(PP);
SPI.transfer(page1_loc>>16);
SPI.transfer(page1_loc>>8);
SPI.transfer(page1_loc & 0xff);
for (int i=0; i<length1;i++){
SPI.transfer(array[i]);
}
digitalWriteFast(cs,HIGH);
waitforit();
write_enable();
waitforit();
digitalWriteFast(cs,LOW);
SPI.transfer(PP);
SPI.transfer(page2_loc>>16);
SPI.transfer(page2_loc>>8);
SPI.transfer(page2_loc & 0xff);
for (int i=length1; i<length+1;i++){
SPI.transfer(array[i]);
}
digitalWriteFast(cs,HIGH);
waitforit();
//Serial.println("//////////");
//Serial.print("remainer ");Serial.println(remainer);
//Serial.print("length1 ");Serial.println(length1);
//Serial.print("length2 ");Serial.println(length2);
//Serial.print("page1_loc ");Serial.println(page1_loc);
//Serial.print("page2_loc ");Serial.println(page2_loc);
//Serial.println("//////////");
}
else{
Serial.print("loc & 0xff = ");Serial.println(loc & 0xff);
write_enable(); // Must be done before writing can commence. Erase clears it.
waitforit();
digitalWriteFast(cs,LOW);
SPI.transfer(PP);
SPI.transfer(loc>>16);
SPI.transfer(loc>>8);
SPI.transfer(loc & 0xff);
for (int i=0; i<length+1;i++){
SPI.transfer(array[i]);
}
digitalWriteFast(cs,HIGH);
waitforit();
}
}
}
//Used in conjuture with the write protect pin to protect blocks.
//For example on the S25FL216K sending "write_reg(B00001000);" will protect 2 blocks, 30 and 31.
//See the datasheet for more. http://www.mouser.com/ds/2/380/S25FL216K_00-6756.pdf
void flash::write_reg(byte w){
digitalWriteFast(cs,LOW);
SPI.transfer(WRSR);
SPI.transfer(w);
digitalWriteFast(cs,HIGH);
}
void flash::read_info(){
digitalWriteFast(cs,LOW);
SPI.transfer(0x9F);
// SPI.transfer(0);
byte m= SPI.transfer(0);
byte t = SPI.transfer(0);
byte c = SPI.transfer(0);
digitalWriteFast(cs,HIGH);
while (c==0){
Serial.println("Cannot read S25FL. Check wiring");
}
Serial.print("Manufacturer ID: ");
Serial.print(m);
Serial.print(" Memory type: ");
Serial.print(t);
Serial.print(" Capacity: ");
Serial.println(c);
Serial.println();
waitforit();
}