You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,8 +107,8 @@ This Arduino Core does **not** contain any BLE functionality. It has been design
107
107
2. Select nrfutil as the firmware uploader in the tools menu.
108
108
109
109
## Configuration (optional)
110
-
You can change the configuration for many settings by creating a `build_opt.h` file in your sketch folder.
111
-
In here you can set compile time definitions for settings that will be included directly on the command line.
110
+
You can change the configuration for many settings by creating a `build_opt.h` file in your sketch folder.
111
+
In here you can set compile time definitions for settings that will be included directly on the command line.
112
112
For example: `'-DCONFIG_MAIN_TASK_STACK_SIZE=2048'` This will set the main task stack size to 2048 bytes.
113
113
114
114
### Configuration option list
@@ -118,6 +118,7 @@ For example: `'-DCONFIG_MAIN_TASK_STACK_SIZE=2048'` This will set the main task
118
118
*`CONFIG_RTOS_MIN_TASK_STACK_SIZE` - set the minimum task stack size.
119
119
*`CONFIG_RTOS_TIMER_QUEUE_LENGTH` - set the queue size for the FreeRTOS timers.
120
120
*`CONFIG_RTOS_TIMER_STACK_DEPTH` - set the timer task stack size **in 32bit words**.
121
+
*`CONFIG_WDT_TIMEOUT_SECONDS` - set the number of seconds before the watchdog times out (0 = disable watchdog, default = 5).
121
122
* Nimble configuration options can also be included, the list of those can be found [here](https://h2zero.github.io/NimBLE-Arduino/md__command_line_config.html)
122
123
* Other compiler options or definitions for other libraries can also be specified.
123
124
@@ -138,7 +139,7 @@ There are a few useful functions available to help with your project.
138
139
*`void systemRestart();` - Reboot.
139
140
140
141
## Bootloader
141
-
Currently only some boards have Adafruit bootloaders available which are provided as options. You may choose to use the bootloader or none.
142
+
Currently only some boards have Adafruit bootloaders available which are provided as options. You may choose to use the bootloader or none.
142
143
The provided Adafruit bootloaders have no softdevice, if you currently are using the softdevice based Adafruit bootloader on your nRF52 board you will need to update it to the one provided by selecting it from the boards menu and clicking `Burn Bootloader`.
143
144
144
145
For boards without the Adafruit bootloader option clicking `Burn Bootloader` will simply erase the flash memory on the device. This is required if you have any bootloader flashed already.
0 commit comments