Skip to content

Commit

Permalink
Fixed compiling issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mluis1 committed Jan 18, 2021
1 parent 4b626e3 commit 6ff4561
Show file tree
Hide file tree
Showing 20 changed files with 49 additions and 2 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Expand Up @@ -11,6 +11,35 @@ Please refer to [Releases pre-certification-results](https://github.com/Lora-net

## [Unreleased]

## [4.5.1] - 2021-01-18


### General

- Release based on "LoRaWAN specification 1.0.4" and "LoRaWAN Regional Parameters 2-1.0.1"
- GitHub reported issues corrections.

### Fixed

- Fixed compiling issues

## [4.4.7] - 2021-01-18

### General

- Release based on "LoRaWAN specification 1.0.3" and "LoRaWAN Regional Parameters v1.0.3revA"
- **Release 4.4.7 is an hotfix of 4.4.6 and is the last one supporting "LoRaWAN specification 1.0.3"**

### Changed

- Changed examples GitHub version to 4.4.7

### Fixed

- Fixed compiling issues when KR920 or RU864 regions are selected
- Fixed compiling issues for `fuota-test-01` example


## [4.5.0] - 2020-12-18

### General
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -22,8 +22,8 @@ This project has 2 active branches in place.

| Branch | L2 spec | RP spec | Tag/Milestone | Class | Comments |
| ------------- |:-------------:|:---------:|:---------:|:---------:|:--------------|
| | [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 - **_Released_** |
| | [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)** |
| | [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.1](https://github.com/Lora-net/LoRaMac-node/releases/tag/v4.5.1) | A/B/C | LoRaWAN L2 1.0.4 - **_Released_** |
| | [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)** |
| [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 |
| [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 |

Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/CMakeLists.txt
Expand Up @@ -78,6 +78,7 @@ elseif(SUB_PROJECT STREQUAL fuota-test-01)
# Application common features handling
#---------------------------------------------------------------------------------------
list(APPEND ${PROJECT_NAME}_COMMON
"${CMAKE_CURRENT_LIST_DIR}/common/cli.c"
"${CMAKE_CURRENT_LIST_DIR}/common/LmHandlerMsgDisplay.c"
"${CMAKE_CURRENT_LIST_DIR}/common/NvmDataMgmt.c"
)
Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/fuota-test-01/B-L072Z-LRWAN1/main.c
Expand Up @@ -28,6 +28,7 @@
#include "board.h"
#include "gpio.h"
#include "uart.h"
#include "RegionCommon.h"

#include "cli.h"
#include "Commissioning.h"
Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/fuota-test-01/NAMote72/main.c
Expand Up @@ -29,6 +29,7 @@
#include "board.h"
#include "gpio.h"
#include "uart.h"
#include "RegionCommon.h"
#include "gps.h"
#include "mpl3115.h"

Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/fuota-test-01/NucleoL073/main.c
Expand Up @@ -28,6 +28,7 @@
#include "board.h"
#include "gpio.h"
#include "uart.h"
#include "RegionCommon.h"

#include "cli.h"
#include "Commissioning.h"
Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/fuota-test-01/NucleoL152/main.c
Expand Up @@ -28,6 +28,7 @@
#include "board.h"
#include "gpio.h"
#include "uart.h"
#include "RegionCommon.h"

#include "cli.h"
#include "Commissioning.h"
Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/fuota-test-01/NucleoL476/main.c
Expand Up @@ -28,6 +28,7 @@
#include "board.h"
#include "gpio.h"
#include "uart.h"
#include "RegionCommon.h"

#include "cli.h"
#include "Commissioning.h"
Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/fuota-test-01/SAMR34/main.c
Expand Up @@ -28,6 +28,7 @@
#include "board.h"
#include "gpio.h"
#include "uart.h"
#include "RegionCommon.h"

#include "cli.h"
#include "Commissioning.h"
Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/fuota-test-01/SKiM880B/main.c
Expand Up @@ -28,6 +28,7 @@
#include "board.h"
#include "gpio.h"
#include "uart.h"
#include "RegionCommon.h"

#include "cli.h"
#include "Commissioning.h"
Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/fuota-test-01/SKiM881AXL/main.c
Expand Up @@ -28,6 +28,7 @@
#include "board.h"
#include "gpio.h"
#include "uart.h"
#include "RegionCommon.h"

#include "cli.h"
#include "Commissioning.h"
Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/fuota-test-01/SKiM980A/main.c
Expand Up @@ -28,6 +28,7 @@
#include "board.h"
#include "gpio.h"
#include "uart.h"
#include "RegionCommon.h"

#include "cli.h"
#include "Commissioning.h"
Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/periodic-uplink-lpp/B-L072Z-LRWAN1/main.c
Expand Up @@ -28,6 +28,7 @@
#include "board.h"
#include "gpio.h"
#include "uart.h"
#include "RegionCommon.h"

#include "cli.h"
#include "Commissioning.h"
Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/periodic-uplink-lpp/NAMote72/main.c
Expand Up @@ -29,6 +29,7 @@
#include "board.h"
#include "gpio.h"
#include "uart.h"
#include "RegionCommon.h"
#include "gps.h"
#include "mpl3115.h"

Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/periodic-uplink-lpp/NucleoL152/main.c
Expand Up @@ -28,6 +28,7 @@
#include "board.h"
#include "gpio.h"
#include "uart.h"
#include "RegionCommon.h"

#include "cli.h"
#include "Commissioning.h"
Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/periodic-uplink-lpp/NucleoL476/main.c
Expand Up @@ -28,6 +28,7 @@
#include "board.h"
#include "gpio.h"
#include "uart.h"
#include "RegionCommon.h"

#include "cli.h"
#include "Commissioning.h"
Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/periodic-uplink-lpp/SAMR34/main.c
Expand Up @@ -28,6 +28,7 @@
#include "board.h"
#include "gpio.h"
#include "uart.h"
#include "RegionCommon.h"

#include "cli.h"
#include "Commissioning.h"
Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/periodic-uplink-lpp/SKiM880B/main.c
Expand Up @@ -28,6 +28,7 @@
#include "board.h"
#include "gpio.h"
#include "uart.h"
#include "RegionCommon.h"

#include "cli.h"
#include "Commissioning.h"
Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/periodic-uplink-lpp/SKiM881AXL/main.c
Expand Up @@ -28,6 +28,7 @@
#include "board.h"
#include "gpio.h"
#include "uart.h"
#include "RegionCommon.h"

#include "cli.h"
#include "Commissioning.h"
Expand Down
1 change: 1 addition & 0 deletions src/apps/LoRaMac/periodic-uplink-lpp/SKiM980A/main.c
Expand Up @@ -28,6 +28,7 @@
#include "board.h"
#include "gpio.h"
#include "uart.h"
#include "RegionCommon.h"

#include "cli.h"
#include "Commissioning.h"
Expand Down

0 comments on commit 6ff4561

Please sign in to comment.