Hi: I make the gazell ready, and I need an extern PA(RFX2401) for a long distance commuicate. But there is some trouble when enalbe the PA. My function:
Host:
pin_Set(rxen);
in function host_rx_data_ready()
{ pin_Set(txen);
add_packet_tx_fifo(ack);
pin_clear(txen);}
Device:
pin_Set(txen);
add_packet_tx_fifo();
in function device_tx_success()
{pin_clear(txen);
pin_Set(rxen);
fetch_packet_form_rx_fifo(ack);
pin_clear(rxen);}
Is this method can make both data and ack singal pass the PA? thank you?