Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RobTillaart committed Dec 25, 2023
1 parent 252811e commit 48937c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FRAM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ uint16_t FRAM::getSize()
uint16_t density = (value >> 8) & 0x0F;
uint16_t size = (1UL << density) * 8; // KB
_sizeBytes = size * 1024UL;
return size
return size;
}
// default FRAM_MANU_FUJITSU
uint16_t density = (value >> 8) & 0x0F;
Expand Down

0 comments on commit 48937c8

Please sign in to comment.