File tree Expand file tree Collapse file tree 3 files changed +4
-13
lines changed
boards/feather_nrf52840_express_s340 Expand file tree Collapse file tree 3 files changed +4
-13
lines changed Original file line number Diff line number Diff line change 48
48
#define BUTTON_2 _PINNUM(0, 10)
49
49
#define BUTTON_PULL NRF_GPIO_PIN_PULLUP
50
50
51
- /*------------------------------------------------------------------*/
52
- /* UART (only used by nRF52832)
53
- *------------------------------------------------------------------*/
54
- #define RX_PIN_NUMBER 8
55
- #define TX_PIN_NUMBER 6
56
- #define CTS_PIN_NUMBER 0
57
- #define RTS_PIN_NUMBER 0
58
- #define HWFC false
59
-
60
51
//--------------------------------------------------------------------+
61
52
// BLE OTA
62
53
//--------------------------------------------------------------------+
Original file line number Diff line number Diff line change 31
31
DBL_RESET (rwx) : ORIGIN = 0x20007F7C, LENGTH = 0x04
32
32
33
33
/** Location of non initialized RAM. Non initialized RAM is used for exchanging bond information
34
- * from application to bootloader when using buttonluss DFU OTA. */
34
+ * from application to bootloader when using buttonless DFU OTA. */
35
35
NOINIT (rwx) : ORIGIN = 0x20007F80, LENGTH = 0x80
36
36
37
37
Original file line number Diff line number Diff line change @@ -328,10 +328,10 @@ static uint32_t softdev_init(bool init_softdevice)
328
328
.accuracy = NRF_CLOCK_LF_ACCURACY_250_PPM
329
329
};
330
330
331
- #ifndef ANT_LICENSE_KEY
332
- APP_ERROR_CHECK ( sd_softdevice_enable (& clock_cfg , app_error_fault_handler ) );
333
- #else
331
+ #ifdef ANT_LICENSE_KEY
334
332
APP_ERROR_CHECK ( sd_softdevice_enable (& clock_cfg , app_error_fault_handler , ANT_LICENSE_KEY ) );
333
+ #else
334
+ APP_ERROR_CHECK ( sd_softdevice_enable (& clock_cfg , app_error_fault_handler ) );
335
335
#endif
336
336
337
337
sd_nvic_EnableIRQ (SD_EVT_IRQn );
You can’t perform that action at this time.
0 commit comments