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 4848#define BUTTON_2 _PINNUM(0, 10)
4949#define BUTTON_PULL NRF_GPIO_PIN_PULLUP
5050
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-
6051//--------------------------------------------------------------------+
6152// BLE OTA
6253//--------------------------------------------------------------------+
Original file line number Diff line number Diff line change 3131 DBL_RESET (rwx) : ORIGIN = 0x20007F7C , LENGTH = 0x04
3232
3333 /* * 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. */
3535 NOINIT (rwx) : ORIGIN = 0x20007F80 , LENGTH = 0x80
3636
3737
Original file line number Diff line number Diff line change @@ -326,10 +326,10 @@ static uint32_t softdev_init(bool init_softdevice)
326326 .accuracy = NRF_CLOCK_LF_ACCURACY_250_PPM
327327 };
328328
329- #ifndef ANT_LICENSE_KEY
330- APP_ERROR_CHECK ( sd_softdevice_enable (& clock_cfg , app_error_fault_handler ) );
331- #else
329+ #ifdef ANT_LICENSE_KEY
332330 APP_ERROR_CHECK ( sd_softdevice_enable (& clock_cfg , app_error_fault_handler , ANT_LICENSE_KEY ) );
331+ #else
332+ APP_ERROR_CHECK ( sd_softdevice_enable (& clock_cfg , app_error_fault_handler ) );
333333 #endif
334334
335335 sd_nvic_EnableIRQ (SD_EVT_IRQn );
You can’t perform that action at this time.
0 commit comments