in transmit_on, turn BPSK on as well

pico-v0.1
alanbjohnston 3 years ago committed by GitHub
parent 0e1bad64a1
commit 39589c40e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -257,6 +257,10 @@ void transmit_on() {
digitalWrite(MAIN_LED_BLUE, HIGH);
digitalWrite(PTT_PIN, LOW);
}
else if (mode == BPSK) {
pwm_set_gpio_level(BPSK_PWM_A_PIN, (config.top + 1) * 0.5);
pwm_set_gpio_level(BPSK_PWM_B_PIN, (config.top + 1) * 0.5);
}
}
void transmit_off() {

Loading…
Cancel
Save

Powered by TurnKey Linux.