Combined WiFi and BLE Radio testing for nRF7002DK

Hello,

We are in certification stages for our custom product based on the nRF7002DK. Our application requires BLE and WiFi to be operational simultaneously. Consequently, the certification process also requires capability to test both WiFi and BLE radio simultaneously.

We have been referring to the existing separate nordic samples for BLE and WiFi radio tests but unable to find a sample/ guide which can make both work as part of the same application.

Is there any way to achieve this where the radio tests can be performed simultaneously for WiFi and BLE through a common build?

Thanks,

Ashish 

Parents
  • Hello Håkon,

    In continuation to the certification tests that we need to support, the next test has the following high-level requirements:

    1. DUT connects to a WiFi network
    2. Test equipment/ WiFi sniffer will scan for the WiFi advertised by the DUT and connect to it
    3. Configuration will be performed on the DUT related to IPV4/IPV6 interfaces i.e., different combinations of IPV4 and IPV6 enabling/ disabling

    Is there a sample to support tests as per the above requirement? This is the test specification for your reference RFC 4213:2005, 2460:1998, 8200:2017

    • DUT connects to a WiFi network
    • Test equipment/ WiFi sniffer will scan for the WiFi advertised by the DUT and connect to it

    Please see this section of the previously linked application note:

    https://docs.nordicsemi.com/bundle/nan_046/page/APP/nan_046/wifi_shell_sample.html

     

    Configuration will be performed on the DUT related to IPV4/IPV6 interfaces i.e., different combinations of IPV4 and IPV6 enabling/ disabling

    Did you read my former comment on this matter?

    Unfortunately, there is no direct command in the network shell to take down ipv4/ipv6, but you can add or remove IP addresses, for instance:

    net ipv4 del index ip

    ie.

    net ipv4 del 1 192.168.1.x

     

    Where '1' is the index, and 'xx.yy.zz.xx' is the IP assigned. You will then need to add it manually again:

    net ipv4 add 1 ip mask

     

    Similar with ipv6.

    I am not sure why you are referring to these RFCs:

    This is the test specification for your reference RFC 4213:2005, 2460:1998, 8200:2017

    These RFCs are for describing IPv6 implementation in general.

    What specifically are you testing? Is this a specific test case with teleregulatory requirements, and if yes; can you please share the test case?

     

    Kind regards,

    Håkon

Reply
    • DUT connects to a WiFi network
    • Test equipment/ WiFi sniffer will scan for the WiFi advertised by the DUT and connect to it

    Please see this section of the previously linked application note:

    https://docs.nordicsemi.com/bundle/nan_046/page/APP/nan_046/wifi_shell_sample.html

     

    Configuration will be performed on the DUT related to IPV4/IPV6 interfaces i.e., different combinations of IPV4 and IPV6 enabling/ disabling

    Did you read my former comment on this matter?

    Unfortunately, there is no direct command in the network shell to take down ipv4/ipv6, but you can add or remove IP addresses, for instance:

    net ipv4 del index ip

    ie.

    net ipv4 del 1 192.168.1.x

     

    Where '1' is the index, and 'xx.yy.zz.xx' is the IP assigned. You will then need to add it manually again:

    net ipv4 add 1 ip mask

     

    Similar with ipv6.

    I am not sure why you are referring to these RFCs:

    This is the test specification for your reference RFC 4213:2005, 2460:1998, 8200:2017

    These RFCs are for describing IPv6 implementation in general.

    What specifically are you testing? Is this a specific test case with teleregulatory requirements, and if yes; can you please share the test case?

     

    Kind regards,

    Håkon

Children
Related