fix noTone calls
This commit is contained in:
parent
467765d892
commit
1b1c9b3f80
|
@ -1615,11 +1615,11 @@ void HamShield::morseOut(char buffer[HAMSHIELD_MORSE_BUFFER_SIZE]) {
|
||||||
if(bits & 1) {
|
if(bits & 1) {
|
||||||
HStone(hs_pwm_pin, morse_freq); //, morse_dot_millis * 3);
|
HStone(hs_pwm_pin, morse_freq); //, morse_dot_millis * 3);
|
||||||
HSdelay(morse_dot_millis*3);
|
HSdelay(morse_dot_millis*3);
|
||||||
HSnoTone();
|
HSnoTone(hs_pwm_pin);
|
||||||
} else {
|
} else {
|
||||||
HStone(hs_pwm_pin, morse_freq); //, morse_dot_millis);
|
HStone(hs_pwm_pin, morse_freq); //, morse_dot_millis);
|
||||||
HSdelay(morse_dot_millis);
|
HSdelay(morse_dot_millis);
|
||||||
HSnoTone();
|
HSnoTone(hs_pwm_pin);
|
||||||
}
|
}
|
||||||
//tone(hs_pwm_pin, 6000, morse_dot_millis);
|
//tone(hs_pwm_pin, 6000, morse_dot_millis);
|
||||||
HSnoTone(hs_pwm_pin);
|
HSnoTone(hs_pwm_pin);
|
||||||
|
@ -1762,7 +1762,7 @@ void HamShield::SSTVTestPattern(int code) {
|
||||||
void HamShield::toneWait(uint16_t freq, long timer) {
|
void HamShield::toneWait(uint16_t freq, long timer) {
|
||||||
HStone(hs_pwm_pin,freq); //,timer);
|
HStone(hs_pwm_pin,freq); //,timer);
|
||||||
HSdelay(timer);
|
HSdelay(timer);
|
||||||
HSnoTone();
|
HSnoTone(hs_pwm_pin);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* wait microseconds for tone to complete */
|
/* wait microseconds for tone to complete */
|
||||||
|
|
Loading…
Reference in New Issue