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

Admin message to setup node for amateur radio usage #309

Merged
merged 3 commits into from
Feb 4, 2023
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
3 changes: 3 additions & 0 deletions meshtastic/admin.options
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@

*AdminMessage.set_ringtone_message max_size:231
*AdminMessage.get_ringtone_response max_size:231


*HamParameters.call_sign max_size:8
27 changes: 27 additions & 0 deletions meshtastic/admin.proto
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,11 @@ message AdminMessage {
*/
DeviceConnectionStatus get_device_connection_status_response = 17;

/*
* Setup a node for licensed amateur (ham) radio operation
*/
HamParameters set_ham_mode = 18;

/*
* Set the owner for this node
*/
Expand Down Expand Up @@ -279,3 +284,25 @@ message AdminMessage {
int32 nodedb_reset = 100;
}
}

/*
* Parameters for setting up Meshtastic for ameteur radio usage
*/
message HamParameters {
/*
* Amateur radio call sign, eg. KD2ABC
*/
string call_sign = 1;

/*
* Transmit power in dBm at the LoRA transceiver, not including any amplification
*/
int32 tx_power = 2;

/*
* The selected frequency of LoRA operation
* Please respect your local laws, regulations, and band plans.
* Ensure your radio is capable of operating of the selected frequency before setting this.
*/
float frequency = 3;
caveman99 marked this conversation as resolved.
Show resolved Hide resolved
}