Hi team,
my customer use CC2630 + CC2592, with CC2630 4x4 package, External bias, Differential.
Currently, SmartRF Studio cannot support CC2592. They only can use RadioTestLibrary (1.5.0) to verify/finetune their HW. By default, RadioTestLibrary support CC2650EM-7ID. Please instruct how to support CC2630 4x4, External bias, Differential.
I have notified them to modify below.
void getTargetName(QString& targetName)
{
if(deviceName == "CC2650_BLE")
{
targetName = "CC2650EM-7ID";
}
else if(deviceName == "CC2650_IEEE_15_4")
{
targetName = "CC2650EM-4XS";
}
...
}
Please instruct what else they should modify. Below list some items.
- Is below change correct ? (config/xml/cc2650/targets/target_cc2650em-4xs.xml). or leave is as "CC2650EM-4XS"
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE target SYSTEM "../../dtd/target.dtd"[]>
<target>
<Name>CC2650EM-4XD</Name>
<Revision></Revision>
<Description></Description>
<DeviceName></DeviceName>
<DevicePackage></DevicePackage>
<FrontEnd>XS</FrontEnd>
<PaSettings>pasettings.xml</PaSettings>
<RfDesign>CC2650EM-4XD</RfDesign>
<IoSettingsIdle>
</IoSettingsIdle>
<IoSettingsRx>
</IoSettingsRx>
<IoSettingsTx>
</IoSettingsTx>
</target>
- Since they use CC2592, do you have default power table to replace below ? (cc2650\targets\pasettings.xml)
<RfDesign name="CC2650EM-4XS">
<FrequencyRange>
<Min>2400</Min>
<Max>2500</Max>
<PaSettingTable>
<PaSetting text="2"><Value>0x9C29</Value></PaSetting>
<PaSetting text="1"><Value>0x6A1F</Value></PaSetting>
<PaSetting text="0"><Value>0x566C</Value></PaSetting>
<PaSetting text="-3"><Value>0x355C</Value></PaSetting>
<PaSetting text="-6"><Value>0x2954</Value></PaSetting>
<PaSetting text="-9"><Value>0x214F</Value></PaSetting>
<PaSetting text="-12"><Value>0x14CE</Value></PaSetting>
<PaSetting text="-15"><Value>0x14CB</Value></PaSetting>
<PaSetting text="-18"><Value>0x10C9</Value></PaSetting>
<PaSetting text="-21"><Value>0x0CC7</Value></PaSetting>
</PaSettingTable>
</FrequencyRange>
</RfDesign>
Thank you.