Skip to content

Commit 301d74b

Browse files
committed
Merge branch 'master' into develop
2 parents 0d7bd43 + 2fbd317 commit 301d74b

File tree

5 files changed

+14
-20
lines changed

5 files changed

+14
-20
lines changed

CHANGELOG.md

+10-16
Original file line numberDiff line numberDiff line change
@@ -11,32 +11,26 @@ Please refer to [Releases pre-certification-results](https://github.com/Lora-net
1111

1212
## [Unreleased]
1313

14-
## Added
14+
### Changed
1515

16-
- Added GitHUb repository and firmware examples version definitions
17-
- Added Version_t Revision field to DutVersionAns message.
16+
- Changed IMST boards default power source to USB_POWER
1817

19-
## Changed
18+
### Fixed
2019

21-
- Changed fuota-test-01 examples in order to handle the new certification protocol implementation
20+
- Fixed an issue where the Join back off algorithm wasn't being applied when the duty-cycle enforcement was OFF.
21+
- Fixed `AU915_MAX_RX1_DR_OFFSET` value to 5 instead of 6
2222

23-
## Fixed
23+
### Removed
2424

25-
- Fixed compliance protocol implementation in order to get current versions from the MAC layer
26-
- Fixed `RxAppCnt` parameter endianess handling
27-
- Fixed AS923 max payload lengths by using N values instead of M values.
25+
- Removed NvmCtxCallback calls as they should only be done when a modification happens.
26+
- Removed ClassA, ClassB and ClassC examples.
2827

2928
## [4.4.5] - 2020-10-14
3029

3130
### General
3231

33-
- Release based on "LoRaWAN specification 1.0.4"/"LoRaWAN specification 1.1.1" and "LoRaWAN Regional Parameters 2-1.0.1"
34-
- GitHub reported issues corrections. Please refer to [Release Version 5.0.0](https://github.com/Lora-net/LoRaMac-node/milestone/3)
35-
36-
### Removed
37-
38-
- Removed ClassA, ClassB and ClassC examples.
39-
- Removed AS923 no more used `MaxPayloadOfDatarateDwell1DownAS923` table definition.
32+
- Release based on "LoRaWAN specification 1.0.3" and "LoRaWAN Regional Parameters v1.0.3revA"
33+
- GitHub reported issues corrections. Please refer to [Release Version 4.4.5](https://github.com/Lora-net/LoRaMac-node/milestone/7)
4034

4135
### Added
4236

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This project has 3 active branches in place.
2424
| ------------- |:-------------:|:---------:|:---------:|:---------:|:--------------|
2525
| | [1.0.3](https://lora-alliance.org/resource-hub/lorawanr-specification-v103) | [v1.0.3revA](https://www.lora-alliance.org/resource-hub/lorawanr-regional-parameters-v103reva) | [v4.4.5](https://github.com/Lora-net/LoRaMac-node/releases/tag/v4.4.5) | A/B/C | LoRaWAN L2 1.0.3 - **_Released_** |
2626
| [master](https://github.com/Lora-net/LoRaMac-node/tree/master) | [1.0.3](https://lora-alliance.org/resource-hub/lorawanr-specification-v103) | [v1.0.3revA](https://www.lora-alliance.org/resource-hub/lorawanr-regional-parameters-v103reva) | [M 4.4.6](https://github.com/Lora-net/LoRaMac-node/milestone/8) | A/B/C | LoRaWAN L2 1.0.3 |
27-
| [develop](https://github.com/Lora-net/LoRaMac-node/tree/develop) | [1.0.4](https://lora-alliance.org/resource-hub) | [2-1.0.1](https://lora-alliance.org/sites/default/files/2020-02/rp_2-1.0.1.pdf) | [M 4.5.0](https://github.com/Lora-net/LoRaMac-node/milestone/5) | A/B/C | LoRaWAN L2 1.0.4 |
27+
| [develop](https://github.com/Lora-net/LoRaMac-node/tree/develop) | [1.0.4](https://lora-alliance.org/resource-hub) | [2-1.0.1](https://lora-alliance.org/sites/default/files/2020-02/rp_2-1.0.1.pdf) | [v4.5.0-rc.1](https://github.com/Lora-net/LoRaMac-node/releases/tag/v4.5.0-rc.1)/[M 4.5.0](https://github.com/Lora-net/LoRaMac-node/milestone/5) | A/B/C | LoRaWAN L2 1.0.4 - **_Pre-Released_**|
2828
| [feature/5.0.0](https://github.com/Lora-net/LoRaMac-node/tree/feature/5.0.0) | [1.0.4](https://lora-alliance.org/resource-hub) / [1.1.1](https://lora-alliance.org/resource-hub/lorawanr-specification-v11) | [2-1.0.1](https://lora-alliance.org/sites/default/files/2020-02/rp_2-1.0.1.pdf) | [M 5.0.0](https://github.com/Lora-net/LoRaMac-node/milestone/3) | A/B/C | LoRaWAN L2 1.0.4 / 1.1.1 |
2929

3030
This project fully implements ClassA, ClassB and ClassC end-device classes and it also provides SX1272/73, SX1276/77/78/79, SX1261/2 and LR1110 radio drivers.

src/boards/SKiM880B/board.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ void SysTick_Handler( void )
471471

472472
uint8_t GetBoardPowerSource( void )
473473
{
474-
return BATTERY_POWER;
474+
return USB_POWER;
475475
}
476476

477477
/**

src/boards/SKiM881AXL/board.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ void SysTick_Handler( void )
444444

445445
uint8_t GetBoardPowerSource( void )
446446
{
447-
return BATTERY_POWER;
447+
return USB_POWER;
448448
}
449449

450450
/**

src/boards/SKiM980A/board.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ void SysTick_Handler( void )
471471

472472
uint8_t GetBoardPowerSource( void )
473473
{
474-
return BATTERY_POWER;
474+
return USB_POWER;
475475
}
476476

477477
/**

0 commit comments

Comments
 (0)