pull/5/head
Jason Milldrum 2016-07-09 20:10:43 -07:00
rodzic 72a4129652
commit e5a53ddfb2
1 zmienionych plików z 15 dodań i 15 usunięć

Wyświetl plik

@ -195,22 +195,22 @@ Public Methods
*/
```
### fsq_dir_encode()
### fsq_dir_encode()
```
/*
* fsq_dir_encode(String from_call, String to_call, String cmd, String message, uint8_t * symbols)
*
* Takes an arbitrary message and returns a FSQ channel symbol table.
*
* from_call - Callsign from which message is directed (maximum size: 20)
* to_call - Callsign to which message is directed (maximum size: 20)
* cmd - Directed command (maximum size: 20)
* message - Null-terminated message string, no greater than 200 chars in length
* symbols - Array of channel symbols to transmit retunred by the method.
* Ensure that you pass a uint8_t array of at least the size of the message
* plus 5 characters to the method. Terminated in 0xFF.
*
*/
/*
* fsq_dir_encode(String from_call, String to_call, String cmd, String message, uint8_t * symbols)
*
* Takes an arbitrary message and returns a FSQ channel symbol table.
*
* from_call - Callsign from which message is directed (maximum size: 20)
* to_call - Callsign to which message is directed (maximum size: 20)
* cmd - Directed command (maximum size: 20)
* message - Null-terminated message string, no greater than 200 chars in length
* symbols - Array of channel symbols to transmit retunred by the method.
* Ensure that you pass a uint8_t array of at least the size of the message
* plus 5 characters to the method. Terminated in 0xFF.
*
*/
```
Tokens