summaryrefslogtreecommitdiff
path: root/supervisor
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2018-11-26 16:00:27 -0800
committerScott Shawcroft <scott@tannewt.org>2018-11-27 00:13:24 -0800
commitd446d328d83fa38f095a0c19d3f22c35a581dcdf (patch)
tree2f0186e58769b1667d4c1ea29a5efd745dabe869 /supervisor
parent292737fa2b3c18d18ccefe9b8cf6eef5e158fdd0 (diff)
Fix QSPI on Feather nRF52840
We were writing with quad page program including the address (0x38) which is unsupported by the GD25Q16C but it is supported by the flash on the DK. So, we use the single address, quad data command (0x32).
Diffstat (limited to 'supervisor')
-rw-r--r--supervisor/shared/external_flash/devices.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/supervisor/shared/external_flash/devices.h b/supervisor/shared/external_flash/devices.h
index 06fc178cb..86e0868d0 100644
--- a/supervisor/shared/external_flash/devices.h
+++ b/supervisor/shared/external_flash/devices.h
@@ -86,7 +86,7 @@ typedef struct {
}
// Settings for the Gigadevice GD25Q16C 2MiB SPI flash.
-// Datasheet: http://www.gigadevice.com/wp-content/uploads/2017/12/DS-00086-GD25Q16C-Rev2.6.pdf
+// Datasheet: http://www.gigadevice.com/datasheet/gd25q16c/
#define GD25Q16C {\
.total_size = (1 << 21), /* 2 MiB */ \
.start_up_time_us = 5000, \