SerialPlugin using port 64

pull/8/head
Jm Casler 2021-01-12 21:53:16 -08:00 zatwierdzone przez GitHub
rodzic dfe7bc1217
commit 04bc6b41a4
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 11 dodań i 1 usunięć

Wyświetl plik

@ -72,7 +72,17 @@ enum PortNum {
/** Used for the python IP tunnel feature */
IP_TUNNEL_APP = 33;
/** Provides a hardware serial interface to send and receive from the Meshtastic network.
Connect to the RX/TX pins of a device with 38400 8N1. Packets received from the Meshtastic
network is forwarded to the RX pin while sending a packet to TX will go out to the Mesh
network. Maximum packet size of 240 bytes.
Plugin is disabled by default can be turned on by setting SERIALPLUGIN_ENABLED = 1 in
SerialPlugh.cpp.
*/
SERIAL_APP = 64;
/** Private applications should use portnums >= 256. To simplify initial development and testing you can use "PRIVATE_APP"
in your code without needing to rebuild protobuf files (via bin/regin_protos.sh) */
PRIVATE_APP = 256;
}
}