Hi,
I have realize a custom PCB with CC2530 + CC2591.
In the schematics, I have connected the signals as below:
HGM_EN = P2.1 instead of P0.7
PA_EN = P2.0 instead of P1.1
LNA_EN = P2.2 instead of P0.6
I use TI-MAC 1.4.3 and I need to set the CC2591 for TX and RX mode.
I try to set CC591 in power up TX at the end of RX, so in mac_rx.c
line 1196
static void rxDone(void)
{
#if defined BOOST
ENABLE_TX_PA();
ENABLE_TX_LNA(); //
#endif
....
........
}
and in mac_tx.c line 202 where I see this comment:
/*--------------------- * Prepare for transmit. */
I put the CC2591 in TX mode, so:
#if defined BOOST
ENABLE_TX_PA();
ENABLE_TX_LNA();
#endif
Now, I can see the beacon sent from the device with good RSSI but I've some problem in the associate procedure.
I think that the RX/TX and reverse change doesn't work well.
Does anybody tell me where I should set the CC2591 for a correct RX/TX behavior?
thank you
Best Regards,
Emanuele