forked from derekevans/W25Q16
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathW25Q16.cpp
363 lines (344 loc) · 10.4 KB
/
W25Q16.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
356
357
358
359
360
361
362
363
/*
W25Q16.cpp - Arduino library for communicating with the Winbond W25Q16 Serial Flash.
Created by Derek Evans, July 17, 2016.
*/
#include "Arduino.h"
#include "W25Q16.h"
/********************************Public methods****************************/
/*****************************************************************************
*
* Function name : init
*
* Returns : None
*
* Parameters : int FLASS_SS -> The Slave Select or Chip Select pin used by
* Arduino to select W25Q16.
*
*
* Purpose : Initializes the W25Q16 by setting the input slave select pin
* as OUTPUT and writing it HIGH. Also initializes the SPI bus,
* sets the SPI bit order to MSBFIRST and the SPI data mode to
* SPI_MODE3, ensures the flash is not in low power mode, and
* that flash write is disabled.
*
*
******************************************************************************/
void W25Q16::init(int FLASH_SS)
{
pinMode(FLASH_SS, OUTPUT);
digitalWrite(FLASH_SS, HIGH);
_FLASH_SS = FLASH_SS;
SPI.begin();
SPI.setBitOrder(MSBFIRST);
SPI.setDataMode(SPI_MODE3);
releasePowerDown();
writeDisable();
}
/*****************************************************************************
*
* Function name : read
*
* Returns : byte
*
* Parameters : unsigned int page -> The page to read from.
* byte pageAddress -> the page address from which a byte
will be read
*
*
* Purpose : Reads a byte from the flash page and page address. The W25Q16 has
* 8192 pages with 256 bytes in a page. Both page and byte addresses
* start at 0. Page ends at address 8191 and page address ends at 255.
*
*
******************************************************************************/
byte W25Q16::read(unsigned int page, byte pageAddress) {
digitalWrite(_FLASH_SS, LOW);
SPI.transfer(READ_DATA);
SPI.transfer((page >> 8) & 0xFF);
SPI.transfer((page >> 0) & 0xFF);
SPI.transfer(pageAddress);
byte val = SPI.transfer(0);
digitalWrite(_FLASH_SS, HIGH);
notBusy();
return val;
}
/*****************************************************************************
*
* Function name : write
*
* Returns : None
*
* Parameters : unsigned int page -> The page to write to.
* byte pageAddress -> The page address to which a byte
* will be written.
* byte val -> the byte to write to the page and page address.
*
* Purpose : Writes a byte to the flash page and page address. The W25Q16 has
* 8192 pages with 256 bytes in a page. Both page and byte addresses
* start at 0. Page ends at address 8191 and page address ends at 255.
*
*
******************************************************************************/
void W25Q16::write(unsigned int page, byte pageAddress, byte val) {
writeEnable();
digitalWrite(_FLASH_SS, LOW);
SPI.transfer(PAGE_PROGRAM);
SPI.transfer((page >> 8) & 0xFF);
SPI.transfer((page >> 0) & 0xFF);
SPI.transfer(pageAddress);
SPI.transfer(val);
digitalWrite(_FLASH_SS, HIGH);
notBusy();
writeDisable();
}
/*****************************************************************************
*
* Function name : initStreamWrite
*
* Returns : None
*
* Parameters : unsigned int page -> The page to begin writing.
* byte pageAddress -> The page address to to begin
* writing.
*
* Purpose : Initializes flash for stream write, e.g. write more than one byte
* consecutively. Both page and byte addresses start at 0. Page
* ends at address 8191 and page address ends at 255.
*
******************************************************************************/
void W25Q16::initStreamWrite(unsigned int page, byte pageAddress) {
writeEnable();
digitalWrite(_FLASH_SS, LOW);
SPI.transfer(PAGE_PROGRAM);
SPI.transfer((page >> 8) & 0xFF);
SPI.transfer((page >> 0) & 0xFF);
SPI.transfer(pageAddress);
}
/*****************************************************************************
*
* Function name : streamWrite
*
* Returns : None
*
* Parameters : byte val -> the byte to write to the flash.
*
* Purpose : Writes a byte to the W25Q16. Must be first called after
* initStreamWrite and then consecutively to write multiple bytes.
*
******************************************************************************/
void W25Q16::streamWrite(byte val) {
SPI.transfer(val);
}
/*****************************************************************************
*
* Function name : closeStreamWrite
*
* Returns : None
*
* Parameters : None
*
* Purpose : Close the stream write. Must be called after the last call to
* streamWrite.
*
******************************************************************************/
void W25Q16::closeStreamWrite() {
digitalWrite(_FLASH_SS, HIGH);
notBusy();
writeDisable();
}
/*****************************************************************************
*
* Function name : initStreamRead
*
* Returns : None
*
* Parameters : unsigned int page -> The page to begin reading.
* byte pageAddress -> The page address to to begin
* reading.
*
* Purpose : Initializes flash for stream read, e.g. read more than one byte
* consecutively. Both page and byte addresses start at 0. Page
* ends at address 8191 and page address ends at 255.
*
******************************************************************************/
void W25Q16::initStreamRead(unsigned int page, byte pageAddress) {
digitalWrite(_FLASH_SS, LOW);
SPI.transfer(READ_DATA);
SPI.transfer((page >> 8) & 0xFF);
SPI.transfer((page >> 0) & 0xFF);
SPI.transfer(pageAddress);
}
/*****************************************************************************
*
* Function name : streamRead
*
* Returns : byte
*
* Parameters : None
*
* Purpose : Reads a byte from the W25Q16. Must be first called after
* initStreamRead and then consecutively to write multiple bytes.
*
******************************************************************************/
byte W25Q16::streamRead() {
return SPI.transfer(0);
}
/*****************************************************************************
*
* Function name : closeStreamRead
*
* Returns : None
*
* Parameters : None
*
* Purpose : Close the stream read. Must be called after the last call to
* streamRead.
*
******************************************************************************/
void W25Q16::closeStreamRead() {
digitalWrite(_FLASH_SS, HIGH);
notBusy();
}
/*****************************************************************************
*
* Function name : powerDown
*
* Returns : None
*
* Parameters : None
*
* Purpose : Puts the flash in its low power mode.
*
*
******************************************************************************/
void W25Q16::powerDown() {
digitalWrite(_FLASH_SS, LOW);
SPI.transfer(POWER_DOWN);
digitalWrite(_FLASH_SS, HIGH);
notBusy();
}
/*****************************************************************************
*
* Function name : powerDown
*
* Returns : None
*
* Parameters : None
*
* Purpose : Releases the flash from its low power mode. Flash cannot be in
* low power mode to perform read/write operations.
*
*
******************************************************************************/
void W25Q16::releasePowerDown() {
digitalWrite(_FLASH_SS, LOW);
SPI.transfer(RELEASE_POWER_DOWN);
digitalWrite(_FLASH_SS, HIGH);
notBusy();
}
/*****************************************************************************
*
* Function name : chipErase
*
* Returns : None
*
* Parameters : None
*
* Purpose : Erases all data from the flash.
*
*
******************************************************************************/
void W25Q16::chipErase() {
writeEnable();
digitalWrite(_FLASH_SS, LOW);
SPI.transfer(CHIP_ERASE);
digitalWrite(_FLASH_SS, HIGH);
notBusy();
writeDisable();
}
/*****************************************************************************
*
* Function name : manufacturerID
*
* Returns : byte
*
* Parameters : None
*
* Purpose : Reads the manufacturer ID from the W25Q16. Should return 0xEF.
*
*
******************************************************************************/
byte W25Q16::manufacturerID() {
digitalWrite(_FLASH_SS, LOW);
SPI.transfer(MANUFACTURER_ID);
SPI.transfer(0);
SPI.transfer(0);
SPI.transfer(0);
byte val = SPI.transfer(0);
digitalWrite(_FLASH_SS, HIGH);
notBusy();
return val;
}
/*******************************Private Methods******************************/
/*****************************************************************************
*
* Function name : notBusy
*
* Returns : byte
*
* Parameters : None
*
* Purpose : Halts operation until the flash is finished with its
* write/erase operation. Bit 0 of Status Register 1 of the
* W25Q16 is 1 if the chip is busy with a write/erase operation.
*
*
******************************************************************************/
void W25Q16::notBusy() {
digitalWrite(_FLASH_SS, LOW);
SPI.transfer(READ_STATUS_REGISTER_1);
while (bitRead(SPI.transfer(0),0) & 1) {
}
digitalWrite(_FLASH_SS, HIGH);
}
/*****************************************************************************
*
* Function name : writeEnable
*
* Returns : byte
*
* Parameters : None
*
* Purpose : Sets Bit 1 of Status Register 1. Bit 1 is the write enable
* latch bit of the status register. This bit must be set prior
* to every write/erase operation.
*
*
******************************************************************************/
void W25Q16::writeEnable() {
digitalWrite(_FLASH_SS, LOW);
SPI.transfer(WRITE_ENABLE);
digitalWrite(_FLASH_SS, HIGH);
notBusy();
}
/*****************************************************************************
*
* Function name : writeDisable
*
* Returns : byte
*
* Parameters : None
*
* Purpose : Clears Bit 1 of Status Register 1. Bit 1 is the write enable
* latch bit of the status register. Clearing this bit prevents
* the flash from being written or erased.
*
*
*
******************************************************************************/
void W25Q16::writeDisable() {
digitalWrite(_FLASH_SS, LOW);
SPI.transfer(WRITE_DISABLE);
digitalWrite(_FLASH_SS, HIGH);
notBusy();
}