Skip to content

Commit c11f3e9

Browse files
authored
Merge pull request #685 from adafruit/release-1.0.0
Release 1.0.0
2 parents f51a7fa + a9e443e commit c11f3e9

File tree

37 files changed

+38519
-38562
lines changed

37 files changed

+38519
-38562
lines changed

Diff for: bootloader/circuitplayground_nrf52840/circuitplayground_nrf52840_bootloader-0.6.1_s140_6.1.1.hex

+11,789
Large diffs are not rendered by default.

Diff for: bootloader/particle_xenon/particle_xenon_bootloader-0.6.0_s140_6.1.1.hex renamed to bootloader/clue_nrf52840/clue_nrf52840_bootloader-0.6.1_s140_6.1.1.hex

+2,016-2,011
Large diffs are not rendered by default.

Diff for: bootloader/feather_nrf52832/feather_nrf52832_bootloader-0.6.0_s132_6.1.1.hex renamed to bootloader/feather_nrf52832/feather_nrf52832_bootloader-0.6.1_s132_6.1.1.hex

+1,211-1,215
Large diffs are not rendered by default.

Diff for: bootloader/feather_nrf52840_express/feather_nrf52840_express_bootloader-0.6.0_s140_6.1.1.hex

-11,800
This file was deleted.

Diff for: bootloader/feather_nrf52840_sense/feather_nrf52840_sense_bootloader-0.6.0_s140_6.1.1.hex renamed to bootloader/feather_nrf52840_express/feather_nrf52840_express_bootloader-0.6.1_s140_6.1.1.hex

+2,020-2,027
Large diffs are not rendered by default.

Diff for: bootloader/circuitplayground_nrf52840/circuitplayground_nrf52840_bootloader-0.6.0_s140_6.1.1.hex renamed to bootloader/feather_nrf52840_sense/feather_nrf52840_sense_bootloader-0.6.1_s140_6.1.1.hex

+1,881-1,884
Large diffs are not rendered by default.

Diff for: bootloader/itsybitsy_nrf52840_express/itsybitsy_nrf52840_express_bootloader-0.6.0_s140_6.1.1.hex renamed to bootloader/itsybitsy_nrf52840_express/itsybitsy_nrf52840_express_bootloader-0.6.1_s140_6.1.1.hex

+2,014-2,020
Large diffs are not rendered by default.

Diff for: bootloader/metro_nrf52840_express/metro_nrf52840_express_bootloader-0.6.0_s140_6.1.1.hex

-11,799
This file was deleted.

Diff for: bootloader/clue_nrf52840/clue_nrf52840_bootloader-0.6.0_s140_6.1.1.hex renamed to bootloader/metro_nrf52840_express/metro_nrf52840_express_bootloader-0.6.1_s140_6.1.1.hex

+2,010-2,012
Large diffs are not rendered by default.

Diff for: bootloader/pca10056/pca10056_bootloader-0.6.0_s140_6.1.1.hex renamed to bootloader/particle_xenon/particle_xenon_bootloader-0.6.1_s140_6.1.1.hex

+1,894-1,897
Large diffs are not rendered by default.
Binary file not shown.

Diff for: bootloader/raytac_mdbt50q_rx/raytac_mdbt50q_rx_bootloader-0.6.0_s140_6.1.1.hex renamed to bootloader/pca10056/pca10056_bootloader-0.6.1_s140_6.1.1.hex

+1,891-1,892
Large diffs are not rendered by default.

Diff for: bootloader/raytac_mdbt50q_rx/raytac_mdbt50q_rx_bootloader-0.6.1_s140_6.1.1.hex

+11,766
Large diffs are not rendered by default.

Diff for: changelog.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Adafruit nRF52 Arduino Core Changelog
22

3+
## 1.0.0 - 2021.08.18
4+
5+
Core is stable enough to be released as 1.0.0. Following is chagnes since last release
6+
7+
- Add UART missing baudrate of 31250 and 56000
8+
- Fix peer bonding with public/static address
9+
- Fix PDM driver issue when BLE is enabled
10+
- Update nrfutil binary to post17 for windows 7
11+
- Add analogSampleTime() to set ADC sample time
12+
- Add readCPUTemperature() to get CPU die temperature
13+
- Add analogCalibrateOffset() to calibrate ADC offset
14+
- Fix UART is not powered down correctly
15+
- Update included bootlaoder binaries to 0.6.1
16+
- Update included TinyUSB lib to 1.4.4
17+
318
## 0.24.0 - 2021.06.25
419

520
- Update included TinyUSB libraries to 1.3.0

Diff for: libraries/Adafruit_TinyUSB_Arduino

Diff for: libraries/Bluefruit52Lib/examples/Peripheral/blinky_ota/blinky_ota.ino

+5-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ BLEDfu bledfu;
2020
void setup()
2121
{
2222
Serial.begin(115200);
23-
while ( !Serial ) delay(10); // for nrf52840 with native usb
23+
24+
#if CFG_DEBUG
25+
// Blocking wait for connection when debug mode is enabled via IDE
26+
while ( !Serial ) yield();
27+
#endif
2428

2529
Serial.println("Bluefruit52 Blinky Example");
2630
Serial.println("--------------------------\n");

Diff for: platform.txt

+2-2
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.24.0
20+
version=1.0.0
2121

2222
# Compile variables
2323
# -----------------
@@ -147,7 +147,7 @@ tools.nrfutil.upload.pattern="{cmd}" {upload.verbose} dfu serial -pkg "{build.pa
147147
#***************************************************
148148

149149
# Bootloader version
150-
tools.bootburn.bootloader.file={runtime.platform.path}/bootloader/{build.variant}/{build.variant}_bootloader-0.6.0_{build.sd_name}_{build.sd_version}
150+
tools.bootburn.bootloader.file={runtime.platform.path}/bootloader/{build.variant}/{build.variant}_bootloader-0.6.1_{build.sd_name}_{build.sd_version}
151151

152152
tools.bootburn.bootloader.params.verbose=
153153
tools.bootburn.bootloader.params.quiet=

Diff for: tools/update_bootloader.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
with zipfile.ZipFile(name, "r") as zip_ref:
3636
zip_ref.extractall("bootloader/{}".format(variant))
3737

38-
# Remove update.uf2
38+
# Remove update.uf2 for 832
3939
if variant == 'feather_nrf52832':
4040
os.remove("bootloader/{}/update-{}_nosd.uf2".format(variant, name[:-4]))
41+
42+
# remove zip file
43+
os.remove(name)

0 commit comments

Comments
 (0)