Skip to content

Commit 9a0cca7

Browse files
committed
more clean up
1 parent 123c308 commit 9a0cca7

File tree

4 files changed

+7
-13
lines changed

4 files changed

+7
-13
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,9 @@ which in turn is based on the [Arduino SAMD Core](https://github.com/arduino/Ard
145145
The following libraries are used:
146146
147147
- adafruit-nrfutil is based on Nordic Semiconductor ASA's [pc-nrfutil](https://github.com/NordicSemiconductor/pc-nrfutil)
148+
- freeRTOS as operating system
148149
- [tinyusb](https://github.com/hathach/tinyusb) as usb stack
149150
- [nrfx](https://github.com/NordicSemiconductor/nrfx) for peripherals driver
150151
- [littlefs](https://github.com/ARMmbed/littlefs) for internal file system
151-
- [fatfs by elm-chan](http://elm-chan.org/fsw/ff/00index_e.html) for external file system
152+
- [fatfs by elm-chan](http://elm-chan.org/fsw/ff/00index_e.html) for external file system
153+
- Segger Sysview for debugging.

changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@
55
- Feather nRF52840 support
66
- Upgrade bootloader to v6.1.0 ( single bank only )
77
- Upgrade freeRTOS from v8 to v10.0.1
8+
- Upgrade Segger SysView to 2.52d
89
- Added nrfx to core
910
- Added tinyusb stack to libraries
1011
- Added LittleFS to replace NFFS
1112
- Added FileSystem Libraries base on SD File API
1213
- InternalFS use LittleFS to manage internal flash for bonding and other user data
1314
- ExternalFS use fatfs to manage external spi flash (nrf52840 only) for usb msc.
15+
- Replace cpritnf by std printf
1416

1517
## 0.8.6
1618

cores/nRF5/sysview/library.properties

Lines changed: 0 additions & 10 deletions
This file was deleted.

libraries/Bluefruit52Lib/src/BLEAdvertising.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,8 +353,8 @@ bool BLEAdvertising::_start(uint16_t interval, uint16_t timeout)
353353
//.primary_phy, .secondary_phy, .set_id, .scan_req_notification
354354
};
355355

356-
// Configure Data
357-
ble_gap_adv_data_t gap_adv =
356+
// gap_adv long-live is required by SD v6
357+
static ble_gap_adv_data_t gap_adv =
358358
{
359359
.adv_data = { .p_data = _data, .len = _count },
360360
.scan_rsp_data = { .p_data = Bluefruit.ScanResponse.getData(), .len = Bluefruit.ScanResponse.count() }

0 commit comments

Comments
 (0)