Skip to content

Commit e54d3ec

Browse files
committed
Fixed compiling issues
1 parent da031ab commit e54d3ec

File tree

24 files changed

+786
-768
lines changed

24 files changed

+786
-768
lines changed

CHANGELOG.md

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

1212
## [Unreleased]
1313

14+
## [4.4.7] - 2021-01-18
15+
16+
### General
17+
18+
- Release based on "LoRaWAN specification 1.0.3" and "LoRaWAN Regional Parameters v1.0.3revA"
19+
- **Release 4.4.7 is an hotfix of 4.4.6 and is the last one supporting "LoRaWAN specification 1.0.3"**
20+
21+
### Changed
22+
23+
- Changed examples GitHub version to 4.4.7
24+
25+
### Fixed
26+
27+
- Fixed compiling issues when KR920 or RU864 regions are selected
28+
- Fixed compiling issues for `fuota-test-01` example
29+
1430
## [4.4.6] - 2020-12-18
1531

1632
### General

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ This project has 2 active branches in place.
2222

2323
| Branch | L2 spec | RP spec | Tag/Milestone | Class | Comments |
2424
| ------------- |:-------------:|:---------:|:---------:|:---------:|:--------------|
25-
| | [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.6](https://github.com/Lora-net/LoRaMac-node/releases/tag/v4.4.6) | A/B/C | LoRaWAN L2 1.0.3 - **_Released_ (last release based on 1.0.3)** |
26-
| [master](https://github.com/Lora-net/LoRaMac-node/tree/master) | [1.0.4](https://lora-alliance.org/resource-hub/lorawan-104-specification-package) | [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 |
25+
| | [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.7](https://github.com/Lora-net/LoRaMac-node/releases/tag/v4.4.7) | A/B/C | LoRaWAN L2 1.0.3 - **_Released_ (last release based on 1.0.3)** |
26+
| [master](https://github.com/Lora-net/LoRaMac-node/tree/master) | [1.0.4](https://lora-alliance.org/resource-hub/lorawan-104-specification-package) | [2-1.0.1](https://lora-alliance.org/sites/default/files/2020-02/rp_2-1.0.1.pdf) | [v4.5.0](https://github.com/Lora-net/LoRaMac-node/releases/tag/v4.5.0) | A/B/C | LoRaWAN L2 1.0.4 |
2727
| [develop](https://github.com/Lora-net/LoRaMac-node/tree/develop) | [1.0.4](https://lora-alliance.org/resource-hub/lorawan-104-specification-package) / [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 4.6.0](https://github.com/Lora-net/LoRaMac-node/milestone/3) | A/B/C | LoRaWAN L2 1.0.4 / 1.1.1 |
2828

2929
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/apps/LoRaMac/CMakeLists.txt

+170-169
Large diffs are not rendered by default.

src/apps/LoRaMac/fuota-test-01/B-L072Z-LRWAN1/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ int main( void )
318318
TimerSetValue( &LedBeaconTimer, 5000 );
319319

320320
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
321-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
321+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
322322
DisplayAppInfo( "fuota-test-01",
323323
&appVersion,
324324
&gitHubVersion );

src/apps/LoRaMac/fuota-test-01/NAMote72/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ int main( void )
307307
TimerSetValue( &LedBeaconTimer, 5000 );
308308

309309
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
310-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
310+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
311311
DisplayAppInfo( "fuota-test-01",
312312
&appVersion,
313313
&gitHubVersion );

src/apps/LoRaMac/fuota-test-01/NucleoL073/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ int main( void )
303303
TimerSetValue( &LedBeaconTimer, 5000 );
304304

305305
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
306-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
306+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
307307
DisplayAppInfo( "fuota-test-01",
308308
&appVersion,
309309
&gitHubVersion );

src/apps/LoRaMac/fuota-test-01/NucleoL152/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ int main( void )
303303
TimerSetValue( &LedBeaconTimer, 5000 );
304304

305305
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
306-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
306+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
307307
DisplayAppInfo( "fuota-test-01",
308308
&appVersion,
309309
&gitHubVersion );

src/apps/LoRaMac/fuota-test-01/NucleoL476/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ int main( void )
303303
TimerSetValue( &LedBeaconTimer, 5000 );
304304

305305
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
306-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
306+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
307307
DisplayAppInfo( "fuota-test-01",
308308
&appVersion,
309309
&gitHubVersion );

src/apps/LoRaMac/fuota-test-01/SAMR34/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ int main( void )
276276
TimerSetValue( &Led1Timer, 100 );
277277

278278
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
279-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
279+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
280280
DisplayAppInfo( "fuota-test-01",
281281
&appVersion,
282282
&gitHubVersion );

src/apps/LoRaMac/fuota-test-01/SKiM880B/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ int main( void )
291291
TimerSetValue( &Led2Timer, 100 );
292292

293293
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
294-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
294+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
295295
DisplayAppInfo( "fuota-test-01",
296296
&appVersion,
297297
&gitHubVersion );

src/apps/LoRaMac/fuota-test-01/SKiM881AXL/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ int main( void )
291291
TimerSetValue( &Led2Timer, 100 );
292292

293293
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
294-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
294+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
295295
DisplayAppInfo( "fuota-test-01",
296296
&appVersion,
297297
&gitHubVersion );

src/apps/LoRaMac/fuota-test-01/SKiM980A/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ int main( void )
291291
TimerSetValue( &Led2Timer, 100 );
292292

293293
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
294-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
294+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
295295
DisplayAppInfo( "fuota-test-01",
296296
&appVersion,
297297
&gitHubVersion );

src/apps/LoRaMac/periodic-uplink-lpp/B-L072Z-LRWAN1/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ int main( void )
273273
TimerSetValue( &LedBeaconTimer, 5000 );
274274

275275
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
276-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
276+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
277277
DisplayAppInfo( "periodic-uplink-lpp",
278278
&appVersion,
279279
&gitHubVersion );

src/apps/LoRaMac/periodic-uplink-lpp/NAMote72/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ int main( void )
262262
TimerSetValue( &LedBeaconTimer, 5000 );
263263

264264
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
265-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
265+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
266266
DisplayAppInfo( "periodic-uplink-lpp",
267267
&appVersion,
268268
&gitHubVersion );

src/apps/LoRaMac/periodic-uplink-lpp/NucleoL073/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ int main( void )
258258
TimerSetValue( &LedBeaconTimer, 5000 );
259259

260260
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
261-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
261+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
262262
DisplayAppInfo( "periodic-uplink-lpp",
263263
&appVersion,
264264
&gitHubVersion );

src/apps/LoRaMac/periodic-uplink-lpp/NucleoL152/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ int main( void )
258258
TimerSetValue( &LedBeaconTimer, 5000 );
259259

260260
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
261-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
261+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
262262
DisplayAppInfo( "periodic-uplink-lpp",
263263
&appVersion,
264264
&gitHubVersion );

src/apps/LoRaMac/periodic-uplink-lpp/NucleoL476/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ int main( void )
258258
TimerSetValue( &LedBeaconTimer, 5000 );
259259

260260
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
261-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
261+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
262262
DisplayAppInfo( "periodic-uplink-lpp",
263263
&appVersion,
264264
&gitHubVersion );

src/apps/LoRaMac/periodic-uplink-lpp/SAMR34/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ int main( void )
257257
TimerSetValue( &LedBeaconTimer, 5000 );
258258

259259
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
260-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
260+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
261261
DisplayAppInfo( "periodic-uplink-lpp",
262262
&appVersion,
263263
&gitHubVersion );

src/apps/LoRaMac/periodic-uplink-lpp/SKiM880B/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ int main( void )
259259
TimerSetValue( &LedBeaconTimer, 5000 );
260260

261261
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
262-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
262+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
263263
DisplayAppInfo( "periodic-uplink-lpp",
264264
&appVersion,
265265
&gitHubVersion );

src/apps/LoRaMac/periodic-uplink-lpp/SKiM881AXL/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ int main( void )
259259
TimerSetValue( &LedBeaconTimer, 5000 );
260260

261261
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
262-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
262+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
263263
DisplayAppInfo( "periodic-uplink-lpp",
264264
&appVersion,
265265
&gitHubVersion );

src/apps/LoRaMac/periodic-uplink-lpp/SKiM980A/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ int main( void )
259259
TimerSetValue( &LedBeaconTimer, 5000 );
260260

261261
const Version_t appVersion = { .Fields.Major = 1, .Fields.Minor = 0, .Fields.Patch = 0 };
262-
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 5 };
262+
const Version_t gitHubVersion = { .Fields.Major = 4, .Fields.Minor = 4, .Fields.Patch = 7 };
263263
DisplayAppInfo( "periodic-uplink-lpp",
264264
&appVersion,
265265
&gitHubVersion );

0 commit comments

Comments
 (0)