Skip to content

Commit 362c2ce

Browse files
committed
bump module version to 5.8.2 (5802)
1 parent ea15582 commit 362c2ce

File tree

6 files changed

+27
-12
lines changed

6 files changed

+27
-12
lines changed

CHANGELOG.md

+15-3
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,33 @@
44

55
- Protected mode [#2734](https://github.com/particle-iot/device-os/pull/2734)
66

7-
## 5.8.1
7+
## 5.8.2
88

99
### FEATURES
10-
10+
- [Gen 4] [rtl872x] Improve coexistence between Wifi and BLE when both are used simultaneously [#2764](https://github.com/particle-iot/device-os/pull/2764)
1111
- [Gen 4] [rtl872x] [BREAKING CHANGE] Backup RAM is no longer automatically written to flash periodically. Backup RAM will be saved when entering sleep. If users are going to reset, `hal_backup_ram_sync()` should be called first [#2766](https://github.com/particle-iot/device-os/pull/2766)
1212

13+
### ENHANCEMENTS
14+
- [eg91e] [eg91ex] enable 921600 baud rate [#2782](https://github.com/particle-iot/device-os/pull/2782)
15+
- [rtl872x] SPI hal: set sample delay for SPI0@25MHz [#2784](https://github.com/particle-iot/device-os/pull/2784)
16+
- [Gen 4] [msom]ACM Behavior changes [#2738](https://github.com/particle-iot/device-os/pull/2738)
1317

1418
### BUGFIXES
15-
19+
- Fix wifi setup not connecting when in listening mode [#2783](https://github.com/particle-iot/device-os/pull/2783) [#2778](https://github.com/particle-iot/device-os/pull/2778)
20+
- Resumable OTA fixes [#2769](https://github.com/particle-iot/device-os/pull/2769)
21+
- [quectel] fixes PPP resume during warm boot [#2772](https://github.com/particle-iot/device-os/pull/2772)
22+
- [Gen 4] [bootloader] Implement bootloader reset reasons [#2773](https://github.com/particle-iot/device-os/pull/2773)
23+
- [RTL872x] multiple SPI fixes [#2768](https://github.com/particle-iot/device-os/pull/2768)
1624
- [Gen 4] [rtl872x] Reinitialize internal wifi stack if scan or connect fails [#2766](https://github.com/particle-iot/device-os/pull/2766) [#2760](https://github.com/particle-iot/device-os/pull/2760/)
1725
- [Gen 4] [rtl872x] Resolve deadlock with USB serial monitoring on boot in some cases[#2765](https://github.com/particle-iot/device-os/pull/2765)
26+
- [gen3] hal: fix gpio glitch [#2787](https://github.com/particle-iot/device-os/pull/2787)
1827

1928
### INTERNAL
29+
- [rtl872x] Display Photon 2 instead of P2, dont allow extended advertising data on rtl platforms [#2779](https://github.com/particle-iot/device-os/pull/2779)
30+
- Add set credentials usb request [#2763](https://github.com/particle-iot/device-os/pull/2763)
2031
- [Gen 4] [rtl872x] Prevent M404/BG95M5 modems from connecting on 2G networks for the time being[#2761](https://github.com/particle-iot/device-os/pull/2761)
2132
- [Gen 4] [rtl872x] Query 2G registration status for M404/BG95M5 modems when querying CGMI [#2761](https://github.com/particle-iot/device-os/pull/2761)
33+
- [Gen 4] Update sdk submoudle ref to fix compiler warnings [#2789](https://github.com/particle-iot/device-os/pull/2789)
2234

2335

2436
## 5.8.0

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:="5.8.1"}
4+
VERSION=${VERSION:="5.8.2"}
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 = 5.8.1
1+
VERSION_STRING = 5.8.2
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 = 5801
5+
VERSION = 5802
66

77
CFLAGS += -DSYSTEM_VERSION_STRING=$(VERSION_STRING)

modules/shared/system_module_version.mk

+5-5
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 ?= 5801
3+
COMMON_MODULE_VERSION ?= 5802
44
SYSTEM_PART1_MODULE_VERSION ?= $(COMMON_MODULE_VERSION)
55

66
RELEASE_080_MODULE_VERSION_BASE ?= 300
@@ -14,19 +14,19 @@ 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 ?= 2600
17+
BOOTLOADER_VERSION ?= 2601
1818

1919
ifeq ($(PLATFORM_MCU),rtl872x)
2020
PREBOOTLOADER_MBR_VERSION ?= 2
21-
PREBOOTLOADER_PART1_VERSION ?= 7
21+
PREBOOTLOADER_PART1_VERSION ?= 8
2222
endif
2323

2424
# The version of the bootloader that the system firmware requires
2525
# NOTE: this will force the device into safe mode until this dependency is met, which is why
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 = 2600
29+
BOOTLOADER_DEPENDENCY = 2601
3030
else # ifeq ($(PLATFORM_MCU),rtl872x)
3131
BOOTLOADER_DEPENDENCY = 2300
3232
endif # ifeq ($(PLATFORM_GEN),3)
@@ -36,7 +36,7 @@ BOOTLOADER_DEPENDENCY = 0
3636
endif
3737

3838
ifeq ($(PLATFORM_MCU),rtl872x)
39-
PREBOOTLOADER_PART1_DEPENDENCY = 7
39+
PREBOOTLOADER_PART1_DEPENDENCY = 8
4040
endif
4141

4242
ifeq ($(PLATFORM_GEN),3)

system/inc/system_version.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,8 @@ extern "C" {
216216
#define SYSTEM_VERSION_v570 SYSTEM_VERSION_DEFAULT(5, 7, 0)
217217
#define SYSTEM_VERSION_v580 SYSTEM_VERSION_DEFAULT(5, 8, 0)
218218
#define SYSTEM_VERSION_v581 SYSTEM_VERSION_DEFAULT(5, 8, 1)
219-
#define SYSTEM_VERSION SYSTEM_VERSION_v581
219+
#define SYSTEM_VERSION_v582 SYSTEM_VERSION_DEFAULT(5, 8, 2)
220+
#define SYSTEM_VERSION SYSTEM_VERSION_v582
220221

221222
/**
222223
* Previously we would set the least significant byte to 0 for the final release, but to make
@@ -397,6 +398,7 @@ extern "C" {
397398
#define SYSTEM_VERSION_570
398399
#define SYSTEM_VERSION_580
399400
#define SYSTEM_VERSION_581
401+
#define SYSTEM_VERSION_582
400402

401403
typedef struct __attribute__((packed)) SystemVersionInfo
402404
{

system/system-versions.md

+1
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@
191191
| 2500 | 5700 | 5.7.0 | Argon, Boron, B SoM, B5 SoM, Tracker, Tracker M, E Som X, M SoM, P2 |
192192
| 2600 | 5800 | 5.8.0 | Argon, Boron, B SoM, B5 SoM, Tracker, Tracker M, E Som X, M SoM, P2 |
193193
| 2600 | 5801 | 5.8.1 | Argon, Boron, B SoM, B5 SoM, Tracker, Tracker M, E Som X, M SoM, P2 |
194+
| 2601 | 5802 | 5.8.2 | Argon, Boron, B SoM, B5 SoM, Tracker, Tracker M, E Som X, M SoM, P2 |
194195
| 3000 | 6000 | 6.0.0 | Argon, Boron, B SoM, B5 SoM, Tracker, Tracker M, E Som X, M SoM, P2 |
195196

196197
[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.

0 commit comments

Comments
 (0)