Part Number:CC1310
Hello ,
I work on custom board which includes CC1310 and CC1190.
And I prepared almost all of the code part and made the modules communicate.
Now I am testing range of my boards.
Max RSSI val is (-25dB ... -30 dB) , in the closest case (but sometimes I get -128dB it is not every time but it happens.Anyway this is also a problem and i am working on it)
and Max range is about 200 m .I got these measurements in an area with trees and buildings.But there was no building between the receiver and transmitter.
This distance is so low and insufficient.
I have checked
PA,LNA,HGM
in normal situation boards waits rf signal and at this situation
PA = 0
LNA = 1
HGM = 1
code part:
PIN_setOutputValue(pinHandle, Board_HGM,1);//high gain
PIN_setOutputValue(pinHandle, Board_PA_EN, 0);
PIN_setOutputValue(pinHandle, Board_LNA_EN, 1);//rx mode
and when boards send signal
PA = 1
LNA = 0
HGM = 1
code part:
PIN_setOutputValue(pinHandle, Board_HGM,1);//high gain
PIN_setOutputValue(pinHandle, Board_PA_EN, 1);
PIN_setOutputValue(pinHandle, Board_LNA_EN, 0);//tx mode
I set and verified this signal. Are these values correct ?
And also my Smartrf settings is
// Frequency: 868.00000 MHz
// Data Format: Serial mode disable
// Deviation: 5.000 kHz
// Packet Length Config: Variable
// Max Packet Length: 128
// Packet Length: 20
// RX Filter BW: 98 kHz
// Symbol Rate: 50.00000 kBaud
// Sync Word Length: 32 Bits
// TX Power: 26 dBm (requires define CCFG_FORCE_VDDR_HH = 0 in ccfg.c, see CC13xx/CC26xx Technical Reference Manual)(done)
// Whitening: No whitening
Please inform me about this subjects .
Thanks,
Emre