How PSOC 6 performs FCC certification

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

cross mob
jali_3846906
Level 3
Level 3
10 replies posted 5 replies posted 10 questions asked

Dear All:

     Because the project needs to be certified, and one of the certifications is BLE fixed frequency, I would like to ask how BLE conducts fixed frequency testing. Is there related software or firmware provided?

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

Hi,

You can use the following lines of code in your project for continuous transmission of carrier wave.

void ll_hal_transmit_carrier_wave(uint8 channel)

{

uint16 u16temp;

CY_SET_REG32 (CYREG_BLE_BLELL_COMMAND_REGISTER, 0x48);   

u16temp = channel + (5<<7) + (1<<13);

CY_SET_REG32((CYREG_BLE_BLELL_LE_RF_TEST_MODE), u16temp);           

    CY_SET_REG32 (CYREG_BLE_BLELL_COMMAND_REGISTER, 0x46);   

}

Thanks

Ganesh

0 Likes

Can I specify the transmission frequency of BLE?

0 Likes

You can fix the transmission freq through setting the specific channel number in ll_hal_transmit_carrier_wave().

0 Likes