File tree Expand file tree Collapse file tree 9 files changed +15
-3
lines changed
circuitplayground_nrf52840
itsybitsy_nrf52840_express Expand file tree Collapse file tree 9 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -114,9 +114,9 @@ feather52840.menu.debug.l3.build.debug_flags=-DCFG_DEBUG=3
114
114
115
115
116
116
# ----------------------------------
117
- # Bluefruit Feather nRF52840 sense
117
+ # Feather Bluefruit sense
118
118
# ----------------------------------
119
- feather52840sense.name=Adafruit Feather nRF52840 Sense
119
+ feather52840sense.name=Adafruit Feather Bluefruit Sense
120
120
121
121
# VID/PID for bootloader with/without UF2, Arduino + Circuitpython App
122
122
feather52840sense.vid.0=0x239A
@@ -144,7 +144,7 @@ feather52840sense.build.board=NRF52840_FEATHER_SENSE
144
144
feather52840sense.build.core=nRF5
145
145
feather52840sense.build.variant=feather_nrf52840_sense
146
146
feather52840sense.build.usb_manufacturer="Adafruit LLC"
147
- feather52840sense.build.usb_product="Feather nRF52840 Sense"
147
+ feather52840sense.build.usb_product="Feather Bluefruit Sense"
148
148
feather52840sense.build.extra_flags=-DNRF52840_XXAA {build.flags.usb}
149
149
feather52840sense.build.ldscript=nrf52840_s140_v6.ld
150
150
feather52840sense.build.vid=0x239A
Original file line number Diff line number Diff line change @@ -131,6 +131,7 @@ static const uint8_t SCK = PIN_SPI_SCK ;
131
131
132
132
// On-board QSPI Flash
133
133
#define EXTERNAL_FLASH_DEVICES GD25Q16C
134
+ #define EXTERNAL_FLASH_USE_QSPI
134
135
135
136
#define USB_MSC_BLOCK_SIZE 512
136
137
#define USB_MSC_BLOCK_COUNT ((2*1024*1024) / USB_MSC_BLOCK_SIZE)
Original file line number Diff line number Diff line change @@ -131,6 +131,7 @@ static const uint8_t SCK1 = PIN_SPI1_SCK ;
131
131
132
132
// On-board QSPI Flash
133
133
#define EXTERNAL_FLASH_DEVICES GD25Q16C
134
+ #define EXTERNAL_FLASH_USE_QSPI
134
135
135
136
#define USB_MSC_BLOCK_SIZE 512
136
137
#define USB_MSC_BLOCK_COUNT ((2*1024*1024) / USB_MSC_BLOCK_SIZE)
Original file line number Diff line number Diff line change @@ -128,6 +128,7 @@ static const uint8_t SCK = PIN_SPI_SCK ;
128
128
129
129
// On-board QSPI Flash
130
130
#define EXTERNAL_FLASH_DEVICES GD25Q16C
131
+ #define EXTERNAL_FLASH_USE_QSPI
131
132
132
133
#define USB_MSC_BLOCK_SIZE 512
133
134
#define USB_MSC_BLOCK_COUNT ((2*1024*1024) / USB_MSC_BLOCK_SIZE)
Original file line number Diff line number Diff line change @@ -132,6 +132,7 @@ static const uint8_t SCK = PIN_SPI_SCK ;
132
132
133
133
// On-board QSPI Flash
134
134
#define EXTERNAL_FLASH_DEVICES GD25Q16C
135
+ #define EXTERNAL_FLASH_USE_QSPI
135
136
136
137
#define USB_MSC_BLOCK_SIZE 512
137
138
#define USB_MSC_BLOCK_COUNT ((2*1024*1024) / USB_MSC_BLOCK_SIZE)
Original file line number Diff line number Diff line change @@ -124,6 +124,7 @@ static const uint8_t SCK = PIN_SPI_SCK ;
124
124
125
125
// On-board QSPI Flash
126
126
#define EXTERNAL_FLASH_DEVICES GD25Q16C
127
+ #define EXTERNAL_FLASH_USE_QSPI
127
128
128
129
#define USB_MSC_BLOCK_SIZE 512
129
130
#define USB_MSC_BLOCK_COUNT ((2*1024*1024) / USB_MSC_BLOCK_SIZE)
Original file line number Diff line number Diff line change @@ -130,6 +130,11 @@ static const uint8_t SCK = PIN_SPI_SCK ;
130
130
// On-board QSPI Flash
131
131
// If EXTERNAL_FLASH_DEVICES is not defined, all supported devices will be used
132
132
#define EXTERNAL_FLASH_DEVICES GD25Q16C
133
+ #define EXTERNAL_FLASH_USE_QSPI
134
+
135
+ #define USB_MSC_BLOCK_SIZE 512
136
+ #define USB_MSC_BLOCK_COUNT ((2*1024*1024) / USB_MSC_BLOCK_SIZE)
137
+
133
138
134
139
#ifdef __cplusplus
135
140
}
Original file line number Diff line number Diff line change @@ -182,6 +182,7 @@ static const uint8_t SCK1 = PIN_SPI1_SCK;
182
182
183
183
// On-board QSPI Flash
184
184
#define EXTERNAL_FLASH_DEVICES GD25Q16C
185
+ #define EXTERNAL_FLASH_USE_QSPI
185
186
186
187
#define USB_MSC_BLOCK_SIZE 512
187
188
#define USB_MSC_BLOCK_COUNT ((2*1024*1024) / USB_MSC_BLOCK_SIZE)
Original file line number Diff line number Diff line change @@ -135,6 +135,7 @@ static const uint8_t SCK = PIN_SPI_SCK ;
135
135
136
136
// On-board QSPI Flash
137
137
#define EXTERNAL_FLASH_DEVICES MX25R6435F
138
+ #define EXTERNAL_FLASH_USE_QSPI
138
139
139
140
#define USB_MSC_BLOCK_SIZE 512
140
141
#define USB_MSC_BLOCK_COUNT ((8*1024*1024) / USB_MSC_BLOCK_SIZE)
You can’t perform that action at this time.
0 commit comments