Correct the return time on morseLookup to be more obvious it's binary.

This commit is contained in:
Stephen Olesen 2015-06-30 15:17:07 -06:00
parent 7dff74d780
commit 1c7dbfc4b6
2 changed files with 2 additions and 2 deletions

View File

@ -1299,7 +1299,7 @@ void HamShield::morseOut(char buffer[HAMSHIELD_MORSE_BUFFER_SIZE]) {
/* Morse code lookup table */
char HamShield::morseLookup(char letter) {
uint8_t HamShield::morseLookup(char letter) {
uint8_t i;
for(i = 0; i < MORSE_TABLE_LENGTH; i++) {
#ifndef MORSE_TABLE_PROGMEM

View File

@ -522,7 +522,7 @@ class HamShield {
static void isr_ptt();
static void isr_reset();
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);
void SSTVVISCode(int code);
void SSTVTestPattern(int code);