Skip to content
Merged
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
ee65291
expand nx_context for DPS
ryanwinter Nov 4, 2021
d236fde
Merge branch 'master' of github.com:azurertos/getting-started into ry…
ryanwinter Nov 4, 2021
055c7ac
reconnect logic initial stm impl
ryanwinter Nov 7, 2021
532a38a
update gcc arm and cmake
ryanwinter Nov 7, 2021
7137bbb
update to latest GCC
ryanwinter Nov 7, 2021
910612d
updated stm wifi reconnect logic
ryanwinter Nov 8, 2021
6a94a58
fix clang format
ryanwinter Nov 8, 2021
f353a17
remove old code, update pipeline
ryanwinter Nov 9, 2021
3cebe3e
update stm pipeline, remove old code
ryanwinter Nov 9, 2021
9510116
Create seperate hub and dps entry points to allow linker optimisation…
ryanwinter Nov 9, 2021
c7aaf94
update SAME54
ryanwinter Nov 10, 2021
8e01057
fix updating period timer doesnt accidently start the timer if its in…
ryanwinter Nov 10, 2021
fa79025
update nxp1060
ryanwinter Nov 10, 2021
6a558c7
update nxp 1050
ryanwinter Nov 10, 2021
2ca8fa5
fix stm compile errors
ryanwinter Nov 10, 2021
3f71766
update RX65N
ryanwinter Nov 10, 2021
69cc3bd
fix 1060 pipeline
ryanwinter Nov 10, 2021
41da4f4
fix same54 pipeline and rx65n compile error
ryanwinter Nov 10, 2021
db6d3d5
mxchip conversion
ryanwinter Nov 10, 2021
c5216de
fix for mxchip wifi reconnect
ryanwinter Nov 10, 2021
211386c
update MXCHIP wifi connection logic
ryanwinter Nov 10, 2021
98422f0
add disconnect printf
ryanwinter Nov 10, 2021
d228c2e
update RX65N Cloud kit
ryanwinter Nov 10, 2021
eb300d5
add updated MXCHIP interface
ryanwinter Nov 10, 2021
3d83a42
remove unused header
ryanwinter Nov 10, 2021
417706b
EFR32 initial migration, DPS connect is broken
ryanwinter Nov 11, 2021
26a89d5
resync time on reconnect
ryanwinter Nov 11, 2021
7b94372
stm network compile fix
ryanwinter Nov 11, 2021
1d2f081
fix tabs in code.
ryanwinter Nov 11, 2021
ec099bd
fix MXCHIP devops pipeline
ryanwinter Nov 11, 2021
6af6dc1
add disconnection detection to rx cloud kit
ryanwinter Nov 12, 2021
757d75f
add more precision for debug output for SNTP
ryanwinter Nov 12, 2021
587f245
cleaned up connection serial output
ryanwinter Nov 15, 2021
528909f
restart SNTP count each connect
ryanwinter Nov 15, 2021
ad8bca7
update reconnection diagram
ryanwinter Nov 15, 2021
2c203a7
Merge branch 'master' of github.com:azurertos/getting-started into ry…
ryanwinter Nov 16, 2021
cf27178
surface component to command callback
ryanwinter Nov 16, 2021
41da60a
add component options to sending properties
ryanwinter Nov 17, 2021
7ca15b4
add component parameters to publish bool property
ryanwinter Nov 17, 2021
1ad09e9
adding EFR32MG component change
ryanwinter Nov 17, 2021
015f742
update sntp loop to not fail out with a DNS lookup error.
ryanwinter Nov 18, 2021
2fb43c6
disconnect rx networking on retry
ryanwinter Nov 19, 2021
475c009
update rx65n cloud kit bsp
ryanwinter Nov 19, 2021
455e8b0
refactor reporting properties
ryanwinter Nov 20, 2021
94b7618
reorder property reporting at startup
ryanwinter Nov 20, 2021
b4b76b5
formatting fix
ryanwinter Nov 20, 2021
b82b608
microchip formatting
ryanwinter Nov 20, 2021
e0de4b1
Merge branch 'master' of github.com:azurertos/getting-started into ry…
ryanwinter Nov 20, 2021
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
6 changes: 3 additions & 3 deletions Microchip/ATSAME54-XPRO/app/nx_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ static void writable_property_received_cb(AZURE_IOT_NX_CONTEXT* nx_context,
status = nx_azure_iot_json_reader_token_int32_get(json_reader_ptr, &telemetry_interval);
if (status == NX_AZURE_IOT_SUCCESS)
{
printf("\tUpdating %s to %ld\r\n", TELEMETRY_INTERVAL_PROPERTY, telemetry_interval);
printf("Updating %s to %ld\r\n", TELEMETRY_INTERVAL_PROPERTY, telemetry_interval);

// Confirm reception back to hub
azure_nx_client_respond_int_writable_property(
Expand All @@ -209,7 +209,7 @@ static void property_received_cb(AZURE_IOT_NX_CONTEXT* nx_context,
status = nx_azure_iot_json_reader_token_int32_get(json_reader_ptr, &telemetry_interval);
if (status == NX_AZURE_IOT_SUCCESS)
{
printf("\tUpdating %s to %ld\r\n", TELEMETRY_INTERVAL_PROPERTY, telemetry_interval);
printf("Updating %s to %ld\r\n", TELEMETRY_INTERVAL_PROPERTY, telemetry_interval);
azure_nx_client_periodic_interval_set(nx_context, telemetry_interval);
}
}
Expand All @@ -219,9 +219,9 @@ static void properties_complete_cb(AZURE_IOT_NX_CONTEXT* nx_context)
{
// Device twin processing is done, send out property updates
azure_iot_nx_client_publish_properties(nx_context, DEVICE_INFO_COMPONENT_NAME, append_device_info_properties);
azure_iot_nx_client_publish_bool_property(nx_context, NULL, LED_STATE_PROPERTY, false);
azure_iot_nx_client_publish_int_writable_property(
nx_context, NULL, TELEMETRY_INTERVAL_PROPERTY, telemetry_interval);
azure_iot_nx_client_publish_bool_property(nx_context, NULL, LED_STATE_PROPERTY, false);

printf("\r\nStarting Main loop\r\n");
}
Expand Down