Radio test software

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
JaMi_334126
Level 1
Level 1
5 replies posted Welcome! First question asked

Is there application software available to load onto a target PSoC to help RF agency (FCC for example) testing?

0 Likes
1 Solution
lock attach
Attachments are accessible only for community members.

Hi,

If you are using PSoC 6 BLE, please find the attached project. This is a project similar to the PSoC 4 BLE’s integrated test code, where with a button press, the radio goes through different test modes required for FCC and most of RED testing.

Thanks

Ganesh

View solution in original post

3 Replies
VenkataD_41
Moderator
Moderator
Moderator
750 replies posted 500 replies posted 250 solutions authored

Hi,

Please check the following KBA if you are looking for PSoC 4 BLE test firmware.

Test Firmware for PSoC®/PRoC™ BLE RF Certification – KBA220073

Thanks

Ganesh

lock attach
Attachments are accessible only for community members.

Hi,

If you are using PSoC 6 BLE, please find the attached project. This is a project similar to the PSoC 4 BLE’s integrated test code, where with a button press, the radio goes through different test modes required for FCC and most of RED testing.

Thanks

Ganesh

OscarC
Level 1
Level 1
5 sign-ins First reply posted First question asked

Hi all,

to avoid the possible problem in sending more than 104 packets with the TXP command, I suggest replacing this loop instead of the wait function

 

//CyDelayUs(num_packets * UNIT_PACKET_TX_TIMEOUT);
for(int32_t i=0;i < num_packets;i++)
{
  CyDelayUs(UNIT_PACKET_TX_TIMEOUT);
}

 

because the function CyDelayUs accepts an uint16 as a parameter.

Regards.

 

Oscar C.

 

0 Likes