Skip to content

Commit

Permalink
Fix pre-commit failure
Browse files Browse the repository at this point in the history
  • Loading branch information
GlibSkunk authored Jul 30, 2024
1 parent 2756b58 commit 7a67d02
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Adafruit_FRAM_SPI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,8 @@ bool Adafruit_FRAM_SPI::exitSleep(void) {
delayMicroseconds(100);

// MB85RS4MTY requires 450us (extra 50us) to wake from "Hibernate"
if(_supported_devices[_dev_idx].manufID == 0x04 && _supported_devices[_dev_idx].prodID == 0x0B) {
if (_supported_devices[_dev_idx].manufID == 0x04 &&
_supported_devices[_dev_idx].prodID == 0x0B) {
delayMicroseconds(50);
}

Expand Down

0 comments on commit 7a67d02

Please sign in to comment.