Hi!,
Well I finally have something working! I set RF Power to Max (0db)
and my address is set to 8 bits. Since my current range is
30-40 meters a far cry from the specd 280 meters :? Has anyone
actually achieved 100-150 meters 100 % of the time with the TRW-
24G module? If so how was it configured? I’d say in my test works
70% of the time. Below is part of my config settings any suggestions
would be appreciated.
mango4u
/*
23: 0 Payloads have an 8 bit address
22: 0
21: 1
20: 0
19: 0
18: 0
17: 1 16-Bit CRC
16: 1 CRC Enabled
15: 0 One channel receive
14: 1 ShockBurst Mode
13: 1 1Mbps Transmission Rate
12: 0
11: 1
10: 1
9: 1 RF Output Power
8: 1 RF Output Power
7: 0 Channel select (channel 2)
6: 0
5: 0
4: 0
3: 0
2: 1
1: 0
0: 0 Transmit mode
*/
//Clock in address
rf_address = 0b.1110.0111; //Power-on Default for all units
for(i = 0 ; i < 8 ; i++)
{
TX_DATA = rf_address.7;
TX_CLK1 = 1;
TX_CLK1 = 0;
rf_address <<= 1;
}