File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# 0.11.0
4
4
5
- - Rework USB driver using Adafruit_TinyUSB library
5
+ - Rework USB driver to support Adafruit_TinyUSB library (support HID and MSC)
6
6
- Added Metro nRF52840 Express
7
7
- Update bootloader binaries to 0.2.11
8
+ - Rework Filesystem
9
+ - Seperate LittleFS and InternalFS into ` Adafruit_LittleFS ` and ` InternalFileSystem `
10
+ - Remove ExternalFS in favor of using Adafruit_QSPI and Adafruit_SPIFlash library
11
+ - Update nrfx to 1.6.2
12
+ - Fixed #250 wrong values for g_ADigitalPinMap, thanks to @henrygab
13
+ - Fixed interrupts for device with multiple I/O Port, thanks to MacGyverNL PR #261
14
+ - Update adc_vbat.ino sketch to work with nrf52840, thanks to @pyro9
15
+ - Extend SoftwareTimer with option to make it non-repeating, add reset function & ISR-safe functions, thanks to @MacGyverNL PR #260
16
+ - Fixed connection handle in BLEHidAdafruit single connection api, thanks to @ogatatsu PR #267
17
+ - Fixed spelling & Add Environmental Sensing GATT Service and UV Index GATT Characteristics UUID, thanks to @sayanee
18
+ - Fixed #276 rename macro FILE_READ/WRITE to enum FILE_O_READ/WRITE
19
+ - Upgrade compiler toolchain from gcc 5.2 2015q2 to gcc 7 2017q4
8
20
9
21
# 0.10.1
10
22
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ compiler.warning_flags.default=
28
28
compiler.warning_flags.more=-Wall
29
29
compiler.warning_flags.all=-Wall -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-pointer-arith
30
30
31
- compiler.path={runtime.tools.gcc- arm-none-eabi-5_2-2015q4 .path}/bin/
31
+ compiler.path={runtime.tools.arm-none-eabi-gcc .path}/bin/
32
32
compiler.c.cmd=arm-none-eabi-gcc
33
33
compiler.c.flags=-mcpu={build.mcu} -mthumb -c -g {compiler.warning_flags} {build.float_flags} -std=gnu11 -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -MMD
34
34
compiler.c.elf.cmd=arm-none-eabi-gcc
You can’t perform that action at this time.
0 commit comments