Skip to content

Commit

Permalink
Merge pull request #685 from adafruit/release-1.0.0
Browse files Browse the repository at this point in the history
Release 1.0.0
  • Loading branch information
hathach committed Aug 20, 2021
2 parents f51a7fa + a9e443e commit c11f3e9
Show file tree
Hide file tree
Showing 37 changed files with 38,519 additions and 38,562 deletions.

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.

This file was deleted.

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.

This file was deleted.

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
11,766 changes: 11,766 additions & 0 deletions bootloader/raytac_mdbt50q_rx/raytac_mdbt50q_rx_bootloader-0.6.1_s140_6.1.1.hex

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
15 changes: 15 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Adafruit nRF52 Arduino Core Changelog

## 1.0.0 - 2021.08.18

Core is stable enough to be released as 1.0.0. Following is chagnes since last release

- Add UART missing baudrate of 31250 and 56000
- Fix peer bonding with public/static address
- Fix PDM driver issue when BLE is enabled
- Update nrfutil binary to post17 for windows 7
- Add analogSampleTime() to set ADC sample time
- Add readCPUTemperature() to get CPU die temperature
- Add analogCalibrateOffset() to calibrate ADC offset
- Fix UART is not powered down correctly
- Update included bootlaoder binaries to 0.6.1
- Update included TinyUSB lib to 1.4.4

## 0.24.0 - 2021.06.25

- Update included TinyUSB libraries to 1.3.0
Expand Down
2 changes: 1 addition & 1 deletion libraries/Adafruit_TinyUSB_Arduino
Submodule Adafruit_TinyUSB_Arduino updated 47 files
+23 −0 changelog.md
+0 −1 examples/Composite/hid_generic_inout_ramdisk/README.md
+0 −135 examples/Composite/hid_generic_inout_ramdisk/hid_generic_inout_ramdisk.ino
+0 −113 examples/Composite/hid_generic_inout_ramdisk/ramdisk.h
+2 −0 examples/Composite/mouse_ramdisk/mouse_ramdisk.ino
+32 −37 examples/HID/hid_boot_keyboard/hid_boot_keyboard.ino
+10 −6 examples/HID/hid_boot_mouse/hid_boot_mouse.ino
+5 −3 examples/HID/hid_composite/hid_composite.ino
+3 −4 examples/HID/hid_generic_inout/boards.js
+18 −10 examples/HID/hid_generic_inout/hid_generic_inout.ino
+4 −7 examples/HID/hid_generic_inout/hid_test.js
+4 −1 examples/HID/hid_generic_inout/hid_test.py
+1 −1 library.properties
+28 −1 src/class/audio/audio.h
+215 −185 src/class/audio/audio_device.c
+11 −6 src/class/cdc/cdc.h
+4 −6 src/class/cdc/cdc_device.c
+24 −23 src/class/dfu/dfu.h
+458 −0 src/class/dfu/dfu_device.c
+98 −0 src/class/dfu/dfu_device.h
+3 −3 src/class/dfu/dfu_rt_device.c
+2 −2 src/class/hid/hid.h
+26 −2 src/class/hid/hid_device.c
+14 −14 src/class/midi/midi_device.c
+12 −8 src/class/msc/msc_device.c
+16 −8 src/common/tusb_common.h
+59 −8 src/common/tusb_compiler.h
+2 −10 src/common/tusb_fifo.c
+1 −1 src/common/tusb_fifo.h
+16 −5 src/common/tusb_types.h
+1 −1 src/common/tusb_verify.h
+13 −0 src/device/dcd.h
+164 −0 src/device/dcd_attr.h
+48 −29 src/device/usbd.c
+54 −18 src/device/usbd.h
+1 −0 src/device/usbd_control.c
+0 −1 src/device/usbd_pvt.h
+74 −31 src/portable/nordic/nrf5x/dcd_nrf5x.c
+52 −80 src/portable/raspberrypi/rp2040/dcd_rp2040.c
+136 −112 src/portable/raspberrypi/rp2040/hcd_rp2040.c
+201 −198 src/portable/raspberrypi/rp2040/rp2040_usb.c
+25 −38 src/portable/raspberrypi/rp2040/rp2040_usb.h
+20 −1 src/portable/st/stm32_fsdev/dcd_stm32_fsdev.c
+4 −0 src/portable/st/stm32_fsdev/dcd_stm32_fsdev_pvt_st.h
+37 −4 src/portable/st/synopsys/dcd_synopsys.c
+1 −1 src/tusb.h
+23 −25 src/tusb_option.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ BLEDfu bledfu;
void setup()
{
Serial.begin(115200);
while ( !Serial ) delay(10); // for nrf52840 with native usb

#if CFG_DEBUG
// Blocking wait for connection when debug mode is enabled via IDE
while ( !Serial ) yield();
#endif

Serial.println("Bluefruit52 Blinky Example");
Serial.println("--------------------------\n");
Expand Down
4 changes: 2 additions & 2 deletions platform.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

name=Adafruit nRF52 Boards
version=0.24.0
version=1.0.0

# Compile variables
# -----------------
Expand Down Expand Up @@ -147,7 +147,7 @@ tools.nrfutil.upload.pattern="{cmd}" {upload.verbose} dfu serial -pkg "{build.pa
#***************************************************

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

tools.bootburn.bootloader.params.verbose=
tools.bootburn.bootloader.params.quiet=
Expand Down
5 changes: 4 additions & 1 deletion tools/update_bootloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
with zipfile.ZipFile(name, "r") as zip_ref:
zip_ref.extractall("bootloader/{}".format(variant))

# Remove update.uf2
# Remove update.uf2 for 832
if variant == 'feather_nrf52832':
os.remove("bootloader/{}/update-{}_nosd.uf2".format(variant, name[:-4]))

# remove zip file
os.remove(name)

0 comments on commit c11f3e9

Please sign in to comment.