Skip to content

Commit 327fe53

Browse files
authored
Merge pull request #13410 from ashok-rao/lorawan-refactor
Refactoring \lorawan --> moving it inside \connectivity.
2 parents 94c62f2 + 07511d3 commit 327fe53

File tree

106 files changed

+70
-67
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+70
-67
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion

UNITTESTS/CMakeLists.txt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -146,11 +146,12 @@ set(unittest-includes-base
146146
"${PROJECT_SOURCE_DIR}/../connectivity/cellular/include/cellular/framework/device"
147147
"${PROJECT_SOURCE_DIR}/../connectivity/cellular/include/cellular/framework"
148148
"${PROJECT_SOURCE_DIR}/../connectivity/cellular/include/cellular/framework/common"
149-
"${PROJECT_SOURCE_DIR}/../features/lorawan"
150-
"${PROJECT_SOURCE_DIR}/../features/lorawan/lorastack"
151-
"${PROJECT_SOURCE_DIR}/../features/lorawan/lorastack/mac"
152-
"${PROJECT_SOURCE_DIR}/../features/lorawan/lorastack/phy"
153-
"${PROJECT_SOURCE_DIR}/../features/lorawan/system"
149+
"${PROJECT_SOURCE_DIR}/../connectivity"
150+
"${PROJECT_SOURCE_DIR}/../connectivity/lorawan/include/lorawan"
151+
"${PROJECT_SOURCE_DIR}/../connectivity/lorawan/lorastack"
152+
"${PROJECT_SOURCE_DIR}/../connectivity/lorawan/lorastack/mac"
153+
"${PROJECT_SOURCE_DIR}/../connectivity/lorawan/lorastack/phy"
154+
"${PROJECT_SOURCE_DIR}/../connectivity/lorawan"
154155
"${PROJECT_SOURCE_DIR}/../connectivity/mbedtls"
155156
"${PROJECT_SOURCE_DIR}/../connectivity/mbedtls/include"
156157
)

UNITTESTS/stubs/LoRaMac_stub.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include <cstddef>
2121

2222
#include "lorawan_types.h"
23-
#include "lorawan_data_structures.h"
23+
#include "system/lorawan_data_structures.h"
2424

2525
namespace LoRaMac_stub {
2626
extern bool bool_value;

UNITTESTS/stubs/LoRaWANTimer_stub.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717

1818
#include "mbed_assert.h"
19-
#include "LoRaWANTimer.h"
19+
#include "system/LoRaWANTimer.h"
2020

2121
#include "LoRaWANTimer_stub.h"
2222

UNITTESTS/stubs/LoRaWANTimer_stub.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
#include "LoRaWANTimer.h"
18+
#include "system/LoRaWANTimer.h"
1919

2020
namespace LoRaWANTimer_stub {
2121
extern lorawan_time_t time_value;

0 commit comments

Comments
 (0)