@ -2714,16 +2714,14 @@ bool TimerHandler0(struct repeating_timer *t) {
tx_bit = (buffer[wav_position] > 0) ? HIGH: LOW;
if (tx_bit)
Serial.print("-");
else
Serial.print("_");
digitalWrite(AUDIO_OUT_PIN, tx_bit);
tx_bit = (buffer[wav_position++] > 0) ? true: false;
/*
*/
pwm_config_set_output_polarity( &config, tx_bit, tx_bit);
pwm_init(bpsk_pin_slice, &config, true);
Powered by TurnKey Linux.