Skip to content

Commit c46fff1

Browse files
committed
finalize for release
1 parent 63c1e3f commit c46fff1

File tree

5 files changed

+33
-31
lines changed

5 files changed

+33
-31
lines changed

boards.txt

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -125,44 +125,44 @@ feather52840.menu.debug.l3.build.debug_flags=-DCFG_DEBUG=3 -Os
125125
#**********************************************
126126
# Bluefruit Metro nRF52840 Express Board
127127
#**********************************************
128-
metro52840.name=Adafruit Bluefruit nRF52840 Metro Express
129-
metro52840.bootloader.tool=bootburn
128+
#metro52840.name=Adafruit Bluefruit nRF52840 Metro Express
129+
#metro52840.bootloader.tool=bootburn
130130

131131
# Upload
132-
metro52840.upload.tool=nrfutil
133-
metro52840.upload.protocol=nrfutil
134-
metro52840.upload.use_1200bps_touch=true
135-
metro52840.upload.wait_for_upload_port=true
132+
#metro52840.upload.tool=nrfutil
133+
#metro52840.upload.protocol=nrfutil
134+
#metro52840.upload.use_1200bps_touch=true
135+
#metro52840.upload.wait_for_upload_port=true
136136

137137
# Build
138-
metro52840.build.mcu=cortex-m4
139-
metro52840.build.f_cpu=64000000
140-
metro52840.build.board=NRF52840_METRO
141-
metro52840.build.core=nRF5
142-
metro52840.build.variant=metro_nrf52840_express
143-
metro52840.build.extra_flags=-DNRF52840_XXAA
138+
#metro52840.build.mcu=cortex-m4
139+
#metro52840.build.f_cpu=64000000
140+
#metro52840.build.board=NRF52840_METRO
141+
#metro52840.build.core=nRF5
142+
#metro52840.build.variant=metro_nrf52840_express
143+
#metro52840.build.extra_flags=-DNRF52840_XXAA
144144

145145
# SofDevice Menu
146146
# Ram & ROM size varies depending on SoftDevice (check linker script)
147147

148-
metro52840.menu.softdevice.s140v6=0.2.9 (s140 6.1.1)
149-
metro52840.menu.softdevice.s140v6.build.sd_flags=-DS140
150-
metro52840.menu.softdevice.s140v6.build.sd_name=s140
151-
metro52840.menu.softdevice.s140v6.build.sd_version=6.1.1
152-
metro52840.menu.softdevice.s140v6.build.sd_fwid=0x00B6
153-
metro52840.menu.softdevice.s140v6.build.ldscript=nrf52840_s140_v6.ld
154-
metro52840.menu.softdevice.s140v6.upload.maximum_size=815104
155-
metro52840.menu.softdevice.s140v6.upload.maximum_data_size=248832
148+
#metro52840.menu.softdevice.s140v6=0.2.9 (s140 6.1.1)
149+
#metro52840.menu.softdevice.s140v6.build.sd_flags=-DS140
150+
#metro52840.menu.softdevice.s140v6.build.sd_name=s140
151+
#metro52840.menu.softdevice.s140v6.build.sd_version=6.1.1
152+
#metro52840.menu.softdevice.s140v6.build.sd_fwid=0x00B6
153+
#metro52840.menu.softdevice.s140v6.build.ldscript=nrf52840_s140_v6.ld
154+
#metro52840.menu.softdevice.s140v6.upload.maximum_size=815104
155+
#metro52840.menu.softdevice.s140v6.upload.maximum_data_size=248832
156156

157157
# Debug Menu
158-
metro52840.menu.debug.l0=Level 0 (Release)
159-
metro52840.menu.debug.l0.build.debug_flags=-DCFG_DEBUG=0 -Os
160-
metro52840.menu.debug.l1=Level 1 (Error Message)
161-
metro52840.menu.debug.l1.build.debug_flags=-DCFG_DEBUG=1 -Os
162-
metro52840.menu.debug.l2=Level 2 (Full Debug)
163-
metro52840.menu.debug.l2.build.debug_flags=-DCFG_DEBUG=2 -Os
164-
metro52840.menu.debug.l3=Level 3 (Segger SystemView)
165-
metro52840.menu.debug.l3.build.debug_flags=-DCFG_DEBUG=3 -Os
158+
#metro52840.menu.debug.l0=Level 0 (Release)
159+
#metro52840.menu.debug.l0.build.debug_flags=-DCFG_DEBUG=0 -Os
160+
#metro52840.menu.debug.l1=Level 1 (Error Message)
161+
#metro52840.menu.debug.l1.build.debug_flags=-DCFG_DEBUG=1 -Os
162+
#metro52840.menu.debug.l2=Level 2 (Full Debug)
163+
#metro52840.menu.debug.l2.build.debug_flags=-DCFG_DEBUG=2 -Os
164+
#metro52840.menu.debug.l3=Level 3 (Segger SystemView)
165+
#metro52840.menu.debug.l3.build.debug_flags=-DCFG_DEBUG=3 -Os
166166

167167
#**********************************************
168168
# Nordic nRF52840DK (PCA10056)

changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
# 0.10.0
44

5+
This release added multiple concurrent peripheral connections support, allow Bluefruit device to multiple central (phones/PC) simultaneously. It introduces new BLE class: BLEPeriph, BLEConnection, remove BLEGap, refactor/rename/move functions and callbacks.
6+
57
- Fixed Servo detach issue
68
- Fixed pulseIn() compile issue: implement countPulseASM() using C instead of ASM
79
- Update bootloader to 0.2.9 which fixed OTA issue with latest BLE5 central such as iPhone X

libraries/Bluefruit52Lib/library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Adafruit Bluefruit nRF52 Libraries
2-
version=0.9.5
2+
version=0.10.0
33
author=Adafruit
44
maintainer=Adafruit <info@adafruit.com>
55
sentence=Arduino library for nRF52-based Adafruit Bluefruit LE modules

libraries/FileSystem/library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Adafruit File System Libraries
2-
version=0.9.5
2+
version=0.10.0
33
author=Adafruit
44
maintainer=Adafruit <info@adafruit.com>
55
sentence=Arduino library for nRF52-based Adafruit Bluefruit LE modules

platform.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1818

1919
name=Adafruit nRF52 Boards
20-
version=0.9.5
20+
version=0.10.0
2121

2222
# Compile variables
2323
# -----------------

0 commit comments

Comments
 (0)