-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add optional (on by default) shocker Keep-Alive (#125)
* Add optional (on by default) shocker Keep-Alive! * Move Keep-Alive manager into it's own task * Allow Idle Task to alongside Keep-Alive Task, plus iterator logic fix * Revert RFTransmitter Changes * CommandHandler Keep-Alive * Keep-Alive working in Command Handler Co-Authored-By: hhvrc <[email protected]> * Switch to using a queue kill message to avoid panic when deleting a mid-listening queue * Gateway Keep-Alive wording :) * Some cleanup * Mini CommandHandler cleanup * Add keep-alive toggling to Serial commands * Fix USB Serial on OpenShock Core * Revert keep-alive duration used during testing --------- Co-authored-by: hhvrc <[email protected]>
- Loading branch information
1 parent
4119946
commit c207665
Showing
14 changed files
with
325 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
OPENSHOCK_API_DOMAIN=api.shocklink.net | ||
OPENSHOCK_FW_VERSION=0.0.0-unknown | ||
OPENSHOCK_FW_HOSTNAME=OpenShock | ||
OPENSHOCK_FW_AP_PREFIX=OpenShock- | ||
OPENSHOCK_FW_AP_PREFIX=OpenShock- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ struct BSSID { | |
|
||
struct RFConfig { | ||
tx_pin:uint8; | ||
keepalive_enabled:bool; | ||
} | ||
|
||
table WiFiCredentials { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.