dtm for thingy53

hi support team,

DTM is not able to build thingy53, do we have any support for this board? or any instructions for it?

radio_test is also not able to build thing53.

Regards,

William.

  • Hi

    There is no inherent support for DTM/radio test on the Thingy:53, but it should be possible to run both those samples. You need to add the board files for support and likely also reassign the UART pins and rebuild the example to get it to work correctly.

    What exactly fails during the build process?

    Best regards,

    Simon

  • hi Simon,

    i think i have solved this problem, all we need to do is adding gpio_fwd to app core(boards/nrf5340dk_nrf5340_cpuapp.overlay) and nrf_radio_fem to netcore(/sysbuild/ipc_radio/boards/nrf5340dk+nrf5340_cpunet.overlay.

    and build thingy53 as 5340dk, it works well.

    &gpio_fwd {
        nrf21540-gpio-if {
            gpios = <&gpio0 30 0>,      /* tx-en-gpios */
                <&gpio1 11 0>,      /* rx-en-gpios */
                <&gpio1 10 0>,      /* ant-sel-gpios */
                <&gpio1 12 0>;      /* mode-gpios */
        };
    };
    / {
    nrf_radio_fem: nrf21540_fem {
    compatible = "nordic,nrf21540-fem";
    tx-en-gpios = <&gpio0 30 GPIO_ACTIVE_HIGH>; 
    rx-en-gpios = <&gpio1 11 GPIO_ACTIVE_HIGH>; 
    pdn-gpios = <&gpio1 10 GPIO_ACTIVE_HIGH>; 
    mode-gpios = <&gpio1 12 GPIO_ACTIVE_HIGH>; 
    supply-voltage-mv = <3000>;
    };
    };
    regards,
    William.
Related