Correct the return time on morseLookup to be more obvious it's binary.
This commit is contained in:
parent
7dff74d780
commit
1c7dbfc4b6
|
@ -1299,7 +1299,7 @@ void HamShield::morseOut(char buffer[HAMSHIELD_MORSE_BUFFER_SIZE]) {
|
||||||
|
|
||||||
/* Morse code lookup table */
|
/* Morse code lookup table */
|
||||||
|
|
||||||
char HamShield::morseLookup(char letter) {
|
uint8_t HamShield::morseLookup(char letter) {
|
||||||
uint8_t i;
|
uint8_t i;
|
||||||
for(i = 0; i < MORSE_TABLE_LENGTH; i++) {
|
for(i = 0; i < MORSE_TABLE_LENGTH; i++) {
|
||||||
#ifndef MORSE_TABLE_PROGMEM
|
#ifndef MORSE_TABLE_PROGMEM
|
||||||
|
|
|
@ -522,7 +522,7 @@ class HamShield {
|
||||||
static void isr_ptt();
|
static void isr_ptt();
|
||||||
static void isr_reset();
|
static void isr_reset();
|
||||||
void morseOut(char buffer[HAMSHIELD_MORSE_BUFFER_SIZE]);
|
void morseOut(char buffer[HAMSHIELD_MORSE_BUFFER_SIZE]);
|
||||||
char morseLookup(char letter);
|
uint8_t morseLookup(char letter);
|
||||||
bool waitForChannel(long timeout, long breakwindow, int setRSSI);
|
bool waitForChannel(long timeout, long breakwindow, int setRSSI);
|
||||||
void SSTVVISCode(int code);
|
void SSTVVISCode(int code);
|
||||||
void SSTVTestPattern(int code);
|
void SSTVTestPattern(int code);
|
||||||
|
|
Loading…
Reference in New Issue