Skip to content

Commit 3f49bca

Browse files
Ayush1325MaureenHelm
authored andcommitted
boards: beagle: beagleconnect_freedom: Fix SPI flash size
- SPI flash size should be given in bits, not bytes. - Tested with samples/drivers/spi_flash Signed-off-by: Ayush Singh <[email protected]>
1 parent 993baae commit 3f49bca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

boards/beagle/beagleconnect_freedom/beagleconnect_freedom.dts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@
169169
compatible = "jedec,spi-nor";
170170
reg = <0>;
171171
spi-max-frequency = <2000000>;
172-
size = <0x200000>;
172+
// Size (2 MiB) is in bits
173+
size = <0x1000000>;
173174
//has-be32k;
174175
has-dpd;
175176
t-enter-dpd = <20000>;

0 commit comments

Comments
 (0)