This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Radio test doesn't work when we use NFC (Base freq is not 2.4GHZ)

Hi,

We need to pass the radio certification and in order to simplify the setup we created an application to setup BLE TX/RX/CC/MC from an NFC command but we meet a strange issue.

When we use the NFC to call radio_tx_carrier(channel 0), the labs claim that the base frequency is not 2.4 GHZ but 2.3 something ....

When we invoke radio_tx_carrier directly from the main() (Without NFC communication) everything is working properly.

So the NFC seems having an impact on the radio test but we currently have no way to debug it without specific equipments.

So, I wondoring if you already met this issue or if you are aware about this symptom. If you need I can provide the source code to reproduce this issue but you can easily reproduce it with below behavior:

In NFC callback, when I receive event "HAL_NFC_EVENT_DATA_RECEIVED", I post a message in the scheduler. Then, from the main context I invoke:

radio_tx_carrier(RADIO_TXPOWER_TXPOWER_0dBm, RADIO_MODE_MODE_Nrf_1Mbit, 0);

(radio_test.c is the original file provided by nordic).

Thank you for your support,

Regards,

Thierry.

Parents
  • Based on the info you have provided, the only way for this to happen is that you have inadvertently turned off or not started the external hfxo in your code modifications to provide NFC communications for the radio test app.

    The internal HFXO cannot be used as the frequency reference during radio operations.

    Also I should point out that since you specify your intent is BLE communications you should be running in BLE mode not Nordic proprietary as noted in your call on radio_tx_carrier. And, the first BLE channel is 02 not 00.

Reply
  • Based on the info you have provided, the only way for this to happen is that you have inadvertently turned off or not started the external hfxo in your code modifications to provide NFC communications for the radio test app.

    The internal HFXO cannot be used as the frequency reference during radio operations.

    Also I should point out that since you specify your intent is BLE communications you should be running in BLE mode not Nordic proprietary as noted in your call on radio_tx_carrier. And, the first BLE channel is 02 not 00.

Children
No Data
Related