Skip to content

Commit f0ec813

Browse files
DBS06Cruz Monrreal II
authored andcommitted
Update Comments
1 parent 167a309 commit f0ec813

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/storage/blockdevice/COMPONENT_QSPIF/QSPIFBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ int QSPIFBlockDevice::init()
205205
switch (vendor_device_ids[0]) {
206206
case 0xbf:
207207
// SST devices come preset with block protection
208-
// enabled for some regions, issue write disable instruction to clear
208+
// enabled for some regions, issue global protection unlock to clear
209209
_set_write_enable();
210210
_qspi_send_general_command(QSPIF_ULBPR, QSPI_NO_ADDRESS_COMMAND, NULL, 0, NULL, 0);
211211
break;

components/storage/blockdevice/COMPONENT_RSPIF/SPIFReducedBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ int SPIFReducedBlockDevice::init()
6767
switch (id[0]) {
6868
case 0xbf:
6969
// SST devices come preset with block protection
70-
// enabled for some regions, issue gbpu instruction to clear
70+
// enabled for some regions, issue global protection unlock to clear
7171
_wren();
7272
_cmdwrite(SPIF_ULBPR, 0, 0, 0x0, NULL);
7373
break;

components/storage/blockdevice/COMPONENT_SPIF/SPIFBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ int SPIFBlockDevice::init()
168168
switch (vendor_device_ids[0]) {
169169
case 0xbf:
170170
// SST devices come preset with block protection
171-
// enabled for some regions, issue write disable instruction to clear
171+
// enabled for some regions, issue global protection unlock to clear
172172
_set_write_enable();
173173
_spi_send_general_command(SPIF_ULBPR, SPI_NO_ADDRESS_COMMAND, NULL, 0, NULL, 0);
174174
break;

0 commit comments

Comments
 (0)