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 37947d8 commit 252811e
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 @@ -286,7 +286,7 @@ uint16_t FRAM::getSize()
{
uint16_t density = (value >> 8) & 0x0F;
uint16_t size = (1UL << density) * 8; // KB
_sizeBytes = size * 8192UL;
_sizeBytes = size * 1024UL;
return size
}
// default FRAM_MANU_FUJITSU
Expand Down

0 comments on commit 252811e

Please sign in to comment.