Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

app: Add sensors_lorawan_se example app #242

Merged
merged 5 commits into from
Aug 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Software/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ set (APP_LIST
"secure_element_lorawan"
"basic_azurertos"
"sensors_lorawan"
"sensors_lorawan_se"
"basic_fuota")
#-------------------
# MCU Setup
Expand Down
2 changes: 1 addition & 1 deletion Software/app/basic_fuota/conf/radio_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ extern "C" {
/**
* @brief voltage of vdd tcxo.
*/
#define TCXO_CTRL_VOLTAGE TCXO_CTRL_1_7V
#define TCXO_CTRL_VOLTAGE TCXO_CTRL_3_0V

#ifndef CRITICAL_SECTION_BEGIN
/**
Expand Down
2 changes: 1 addition & 1 deletion Software/app/basic_lorawan/conf/radio_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ extern "C" {
/**
* @brief voltage of vdd tcxo.
*/
#define TCXO_CTRL_VOLTAGE TCXO_CTRL_1_7V
#define TCXO_CTRL_VOLTAGE TCXO_CTRL_3_0V

#ifndef CRITICAL_SECTION_BEGIN
/**
Expand Down
2 changes: 1 addition & 1 deletion Software/app/freefall_lorawan/conf/radio_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ extern "C" {
/**
* @brief voltage of vdd tcxo.
*/
#define TCXO_CTRL_VOLTAGE TCXO_CTRL_1_7V
#define TCXO_CTRL_VOLTAGE TCXO_CTRL_3_0V

#ifndef CRITICAL_SECTION_BEGIN
/**
Expand Down
2 changes: 1 addition & 1 deletion Software/app/freertos_lorawan/conf/radio_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ extern "C" {
/**
* @brief voltage of vdd tcxo.
*/
#define TCXO_CTRL_VOLTAGE TCXO_CTRL_1_7V
#define TCXO_CTRL_VOLTAGE TCXO_CTRL_3_0V

#ifndef CRITICAL_SECTION_BEGIN
/**
Expand Down
2 changes: 1 addition & 1 deletion Software/app/secure_element_lorawan/conf/radio_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ extern "C" {
/**
* @brief voltage of vdd tcxo.
*/
#define TCXO_CTRL_VOLTAGE TCXO_CTRL_1_7V
#define TCXO_CTRL_VOLTAGE TCXO_CTRL_3_0V

#ifndef CRITICAL_SECTION_BEGIN
/**
Expand Down
6 changes: 4 additions & 2 deletions Software/app/sensors_lorawan/conf/app_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#ifndef APP_CONF_H
#define APP_CONF_H

#define GNSE_ADVANCED_TRACER_ENABLE 1
#define GNSE_ADVANCED_TRACER_ENABLE 0

/* if ON (=1) it enables the debugger plus 4 dbg pins */
/* if OFF (=0) the debugger is OFF (lower consumption) */
Expand All @@ -42,7 +42,7 @@
#define SENSORS_DOWNLINK_CONF_PORT 1

/* Default, max, and min time interval of the TX dutycycle window in seconds */
#define SENSORS_TX_DUTYCYCLE_DEFAULT_S 10
#define SENSORS_TX_DUTYCYCLE_DEFAULT_S 60
#define SENSORS_DUTYCYCLE_CONF_MAX_S 8640
#define SENSORS_DUTYCYCLE_CONF_MIN_S 5

Expand All @@ -58,6 +58,8 @@
#define DEVEUI 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
#define APPKEY 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00



/**
* sequencer definitions
*/
Expand Down
2 changes: 1 addition & 1 deletion Software/app/sensors_lorawan/conf/radio_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ extern "C" {
/**
* @brief voltage of vdd tcxo.
*/
#define TCXO_CTRL_VOLTAGE TCXO_CTRL_1_7V
#define TCXO_CTRL_VOLTAGE TCXO_CTRL_3_0V

#ifndef CRITICAL_SECTION_BEGIN
/**
Expand Down
202 changes: 202 additions & 0 deletions Software/app/sensors_lorawan_se/.cproject

Large diffs are not rendered by default.

Loading