We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a38dc2a commit 770813eCopy full SHA for 770813e
storage/blockdevice/COMPONENT_QSPIF/source/QSPIFBlockDevice.cpp
@@ -1172,9 +1172,11 @@ int QSPIFBlockDevice::_handle_vendor_quirks()
1172
break;
1173
case 0x1f:
1174
// Adesto device
1175
- tr_debug("Applying quirks for Adesto AT25SF128A");
1176
- _write_status_reg_2_inst = 0x31;
1177
- _AT25SF128A_quirk = true;
+ if (vendor_device_ids[1] == 0x89) {
+ tr_debug("Applying quirks for Adesto AT25SF128A");
+ _write_status_reg_2_inst = 0x31;
1178
+ _AT25SF128A_quirk = true;
1179
+ }
1180
1181
}
1182
0 commit comments