Skip to content

Commit 889b301

Browse files
committed
bump module version to 6.2.0 (6200)
1 parent 4c8dacc commit 889b301

8 files changed

+67
-9
lines changed

CHANGELOG.md

+52-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,55 @@
1+
## 6.2.0
2+
3+
### BREAKING CHANGES
4+
5+
- make `SYSTEM_THREAD(ENABLED)` the default, add deprecation warning on `SYSTEM_THREAD()` macro use [#2834](https://github.com/particle-iot/device-os/pull/2834)
6+
- Removed deprecated HAL API wrappers after a set of renamings in Device OS 4.x LTS [#2834](https://github.com/particle-iot/device-os/pull/2834)
7+
8+
### FEATURES
9+
10+
- Extend `Particle.publish()` and `Particle.subscribe()`` APIs to support events content types [#2804](https://github.com/particle-iot/device-os/pull/2804)
11+
- Tether API + ModemManager support [#2832](https://github.com/particle-iot/device-os/pull/2832)
12+
- Supports M.2 breakout board and Muon [#2809](https://github.com/particle-iot/device-os/pull/2809)
13+
14+
### ENHANCEMENTS
15+
16+
- [gen3] make sure that extended system-part1 is compatible with older bootloaders as well as 6.1.2 [#2831](https://github.com/particle-iot/device-os/pull/2831)
17+
- Improves `delay()` behavior [#2828](https://github.com/particle-iot/device-os/pull/2828)
18+
- [photon2] ethernet: use 12.5MHz as the default SPI clock rate for W5500 [#2835](https://github.com/particle-iot/device-os/pull/2835)
19+
- [Gen 4] Adds detailed WiFi access point disconnect reason logging [#2805](https://github.com/particle-iot/device-os/pull/2805)
20+
- [ACM] Perform cloud ping or reachability test on network events; non-blocking background reachability test [#2811](https://github.com/particle-iot/device-os/pull/2811)
21+
- [Gen 3] BLE: increase a number of retries for service discovery in central role [#2801](https://github.com/particle-iot/device-os/pull/2801)
22+
- [Gen 3] BLE: suspend scanning while in connected state and restore scanning after a disconnect (SoftDevice limitation) [#2801](https://github.com/particle-iot/device-os/pull/2801)
23+
- [cellular][r510] unmask bands for global use [#2803](https://github.com/particle-iot/device-os/pull/2803)
24+
- BLE: streamlines `BLE.scan()` behavior to be blocking irrespective of timeout, but allows other BLE operations to be performed [#2796](https://github.com/particle-iot/device-os/pull/2796)
25+
- BLE: streamlines `BLE.stopScanning()` behavior to be blocking when not called from BLE callback and guarantees scanning to be stopped on return [#2796](https://github.com/particle-iot/device-os/pull/2796)
26+
- [Gen 4] BLE: improves locking in a number of BLE API calls [#2813](https://github.com/particle-iot/device-os/pull/2813)
27+
- [Gen 3] Muon/M.2 breakout support enabled for Gen 3 SoMs [#2808](https://github.com/particle-iot/device-os/pull/2808)
28+
29+
### BUGFIXES
30+
- [Gen 3] BLE: fixes a race condition in connected state reporting in central and peripheral roles [#2801](https://github.com/particle-iot/device-os/pull/2801)
31+
- [Gen 4] i2c: use transactions for fuelgauge and pmic on platforms with single i2c bus to avoid cutting into compound application I2C transmissions [#2822](https://github.com/particle-iot/device-os/pull/2822)
32+
- Reduce latency of the system loop [#2797](https://github.com/particle-iot/device-os/pull/2797)
33+
- Work around a bug in lfs_remove() while recursive traversing directories [#2798](https://github.com/particle-iot/device-os/pull/2798)
34+
- [Gen 4] set sleep timer upper bounds [#2810](https://github.com/particle-iot/device-os/pull/2810)
35+
- [Gen 4] Fixes potential deadlock in WiFi and BLE stacks [#2805](https://github.com/particle-iot/device-os/pull/2805)
36+
- [Gen 4] fixes DMA enabled USART flush [#2800](https://github.com/particle-iot/device-os/pull/2800)
37+
- [Gen 4] Fixes `BLE.stopScanning()` deadlock when called from inside BLE callback [#2796](https://github.com/particle-iot/device-os/pull/2796)
38+
- [Gen 4] i2c: clear I2C tx buffer before each transmission [#2819](https://github.com/particle-iot/device-os/pull/2819)
39+
- fixes `USART::available()` after waking from sleep [#2816](https://github.com/particle-iot/device-os/pull/2816)
40+
- [Gen 4] fixes BLE race condition while scanning [#2818](https://github.com/particle-iot/device-os/pull/2818)
41+
- [Gen 4] usb: fix an issue with USB re-attach after sleep [#2824](https://github.com/particle-iot/device-os/pull/2824) [#2823](https://github.com/particle-iot/device-os/pull/2823)
42+
- [Gen 4] prebootloader: fix STOP/ULP sleep with disabled KM0 RTOS, get correct wake-up reason [#2825](https://github.com/particle-iot/device-os/pull/2825)
43+
- Fixes I2C hal issues [#2826](https://github.com/particle-iot/device-os/pull/2826)
44+
45+
### INTERNAL
46+
47+
- Remove access_token query param from Device OS makefile [#2833](https://github.com/particle-iot/device-os/pull/2833)
48+
- Add serial loopback to test runner [#2816](https://github.com/particle-iot/device-os/pull/2816)
49+
- [tests] Support integration tests on gen4 after device-constants update [#2814](https://github.com/particle-iot/device-os/pull/2814)
50+
- Adds fixture tests [#2823](https://github.com/particle-iot/device-os/pull/2823)
51+
- [tests] ACM prefer feature, adjust logging [#2795](https://github.com/particle-iot/device-os/pull/2795)
52+
153
## 6.1.2
254

355
### FEATURES
@@ -62,7 +114,6 @@
62114
### FEATURES
63115
- Supports M.2 breakout board and Muon [#2809](https://github.com/particle-iot/device-os/pull/2809)
64116

65-
66117
### ENHANCEMENTS
67118
- [Gen 4] Adds detailed WiFi access point disconnect reason logging [#2805](https://github.com/particle-iot/device-os/pull/2805)
68119
- [ACM] Perform cloud ping or reachability test on network events; non-blocking background reachability test [#2811](https://github.com/particle-iot/device-os/pull/2811)

build/release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -o errexit -o pipefail -o noclobber -o nounset
33

4-
VERSION=${VERSION:="6.1.2"}
4+
VERSION=${VERSION:="6.2.0"}
55

66
function display_help ()
77
{

build/version.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
VERSION_STRING = 6.1.2
1+
VERSION_STRING = 6.2.0
22

33
# PRODUCT_FIRMWARE_VERSION reported by default
44
# FIXME: Unclear if this is used, PRODUCT_FIRMWARE_VERSION defaults to 65535 every release
5-
VERSION = 6102
5+
VERSION = 6200
66

77
CFLAGS += -DSYSTEM_VERSION_STRING=$(VERSION_STRING)

hal/src/b5som/hal_platform_config.h

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
#define HAL_PLATFORM_RADIO_ANTENNA_EXTERNAL (1)
2626
#define HAL_PLATFORM_MAX_CLOUD_CONNECT_TIME (9*60*1000)
2727

28+
#define HAL_PLATFORM_IF_INIT_POSTPONE (1)
29+
2830
#define PRODUCT_SERIES "boron"
2931

3032
#if HAL_PLATFORM_ETHERNET

hal/src/boron/hal_platform_config.h

+2
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@
7878
#define HAL_PLATFORM_ETHERNET_WIZNETIF_INT_PIN_DEFAULT (D22)
7979
#endif // HAL_PLATFORM_ETHERNET
8080

81+
#define HAL_PLATFORM_IF_INIT_POSTPONE (1)
82+
8183
#endif // PLATFORM_ID != PLATFORM_BORON
8284

8385
#if PLATFORM_ID == PLATFORM_ESOMX

modules/shared/system_module_version.mk

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Skip to next 100 every v0.x.0 release (e.g. 108 for v0.6.2 to 200 for v0.7.0-rc.1)
22
# Bump by 1 for every prerelease or release with the same v0.x.* base.
3-
COMMON_MODULE_VERSION ?= 6102
3+
COMMON_MODULE_VERSION ?= 6200
44
SYSTEM_PART1_MODULE_VERSION ?= $(COMMON_MODULE_VERSION)
55

66
RELEASE_080_MODULE_VERSION_BASE ?= 300
@@ -14,7 +14,7 @@ USER_PART_MODULE_VERSION ?= 6
1414
# Skip to next 100 every v0.x.0 release (e.g. 11 for v0.6.2 to 100 for v0.7.0-rc.1),
1515
# but only if the bootloader has changed since the last v0.x.0 release.
1616
# Bump by 1 for every updated bootloader image for a release with the same v0.x.* base.
17-
BOOTLOADER_VERSION ?= 3002
17+
BOOTLOADER_VERSION ?= 3100
1818

1919
ifeq ($(PLATFORM_MCU),rtl872x)
2020
PREBOOTLOADER_MBR_VERSION ?= 2
@@ -26,9 +26,9 @@ endif
2626
# this version usually lags behind the current bootloader version, to avoid non-mandatory updates.
2727
ifeq ($(PLATFORM_GEN),3)
2828
ifeq ($(PLATFORM_MCU),rtl872x)
29-
BOOTLOADER_DEPENDENCY = 3001
29+
BOOTLOADER_DEPENDENCY = 3100
3030
else # ifeq ($(PLATFORM_MCU),rtl872x)
31-
BOOTLOADER_DEPENDENCY = 3002
31+
BOOTLOADER_DEPENDENCY = 3100
3232
endif # ifeq ($(PLATFORM_GEN),3)
3333
else
3434
# Some sensible default

system/inc/system_version.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,8 @@ extern "C" {
222222
#define SYSTEM_VERSION_v610 SYSTEM_VERSION_DEFAULT(6, 1, 0)
223223
#define SYSTEM_VERSION_v611 SYSTEM_VERSION_DEFAULT(6, 1, 1)
224224
#define SYSTEM_VERSION_v612 SYSTEM_VERSION_DEFAULT(6, 1, 2)
225-
#define SYSTEM_VERSION SYSTEM_VERSION_v612
225+
#define SYSTEM_VERSION_v620 SYSTEM_VERSION_DEFAULT(6, 2, 0)
226+
#define SYSTEM_VERSION SYSTEM_VERSION_v620
226227

227228
/**
228229
* Previously we would set the least significant byte to 0 for the final release, but to make
@@ -409,6 +410,7 @@ extern "C" {
409410
#define SYSTEM_VERSION_610
410411
#define SYSTEM_VERSION_611
411412
#define SYSTEM_VERSION_612
413+
#define SYSTEM_VERSION_620
412414

413415
typedef struct __attribute__((packed)) SystemVersionInfo
414416
{

system/system-versions.md

+1
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@
197197
| 3000 | 6100 | 6.1.0 | Argon, Boron, B SoM, B5 SoM, Tracker, Tracker M, E Som X, M SoM, P2 |
198198
| 3001 | 6101 | 6.1.1 | Argon, Boron, B SoM, B5 SoM, Tracker, E Som X |
199199
| 3002 | 6102 | 6.1.2 | Argon, Boron, B SoM, B5 SoM, Tracker, E Som X |
200+
| 3100 | 6200 | 6.2.0 | Argon, Boron, B SoM, B5 SoM, Tracker, Tracker M, E Som X, M SoM, P2 |
200201

201202
[1] For 0.8.0-rc.1, The v101 bootloader was also released in the Github releases as v200. Thus the next released bootloader in the 0.8.x line should be v201. As of 4/5/2018: 22 device had v200 bootloaders.
202203

0 commit comments

Comments
 (0)