|
| 1 | +#Release notes 0.9.3: |
| 2 | + |
| 3 | +##Changes: |
| 4 | +* Added Device Firmware Update support for Arduino UNO(ATmega328p) |
| 5 | + - New ble-optiboot has been released to bootload over BLE |
| 6 | + - https://github.com/NordicSemiconductor/ble-optiboot |
| 7 | + - This new bootloader supports both UART and BLE interfaces and is a drop-in replacement |
| 8 | + for the Arduino bootloader. |
| 9 | +* Added example projects for DFU for Arduino with the UART template and the Proximity template. |
| 10 | + - DFU is supported over encrypted and over open links |
| 11 | + |
| 12 | +##Fixes: |
| 13 | +* Setup data structs are added to readmy_modify_setup.docx in \documentation\libraries\BLE\examples\ble_modify_setup_data |
| 14 | +* Bootloader is now available |
| 15 | + |
| 16 | +##Known issues: |
| 17 | +1. Assert functionality has been removed and should be put back to the SDK. |
| 18 | +Currently the asserts have been replaced with while(1) |
| 19 | + |
| 20 | +4. The FIFO/Queue uses the "one slot" free method to detect empty and full conditions. |
| 21 | +This wastes one extra element in the queue. |
| 22 | +The algorithm can be optimized to reduce RAM usage. |
| 23 | + |
| 24 | +5. Bonding info is stored in non-volatile memory on the Arduino after an ACI Timing Event and the Timing Event may not always arrive. |
| 25 | +This issue is applicable for all projects that use pairing. |
| 26 | + |
| 27 | +6. Documentation for using the Nordic adapter shield for nRF8001 with the nRF8001 Development kit and the Bluetooth low energy SDK for Arduino is incomplete. |
| 28 | + |
| 29 | +7. Documentation for the Bluetooth low energy SDK for Arduino is still in progress. |
| 30 | + |
| 31 | +9. Sending zero byte value from the hello world example causes nRF UART on iOS to crash. |
| 32 | + |
| 33 | +11. A patch is needed to prevent compilation errors with Android 1.0.5 on linux. Won't fix this as the fix creates conflicts on OS X. |
| 34 | +``` |
| 35 | +find: |
| 36 | +static hal_aci_data_t setup_msgs[NB_SETUP_MESSAGES] PROGMEM |
| 37 | +
|
| 38 | +replace: |
| 39 | +static const hal_aci_data_t setup_msgs[NB_SETUP_MESSAGES] PROGMEM |
| 40 | +
|
| 41 | +find: |
| 42 | +aci_state.aci_setup_info.setup_msgs = setup_msgs; |
| 43 | +
|
| 44 | +replace: |
| 45 | +aci_state.aci_setup_info.setup_msgs = (hal_aci_data_t*)setup_msgs; |
| 46 | +``` |
| 47 | + |
| 48 | +#Release notes 0.9.2: |
| 49 | + |
| 50 | +##Fixes: |
| 51 | +* Removed is_freshest_sample from Health thermometer and Heart rate service files. |
| 52 | + |
1 | 53 | #Release notes 0.9.1:
|
2 | 54 |
|
3 | 55 | ##Changes:
|
|
0 commit comments