removed i < 5 since it didn't work

pull/210/head
alanbjohnston 4 years ago committed by GitHub
parent ce1bb08342
commit 8ea74740cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3489,7 +3489,7 @@ void transmit_string(char *string) {
void transmit_char(char character) {
int i = 0;
while ((morse_table[(toupper(character) - '0') % 44][i] != 0) && (i < 5)) {
while (morse_table[(toupper(character) - '0') % 44][i] != 0) {
Serial.print("i = ");
Serial.println(i);
// Serial.print(morse_table[(toupper(character) - '0') % 44][i]);

Loading…
Cancel
Save

Powered by TurnKey Linux.