Is the update with SUIT always complete?

Hello,

We have the following environment:

1) nRF Connect SDK v3.0.1

2) The custom board with nRF54H20

3) Our project with update capability using SUIT file.

We update the FW on nRF52H20 with SUIT and it looked good.

But after some changes in our app.overlay our code didn't work well after update with SUIT.

We needed to flash our FW with programmer first and then the behavior became as expected.

So the question is the update with SUIT is always complete?

Thanks.

Parents Reply
  • Thank you for your help. Yes, we know that SUIT will be deprecated but we continue to use it so far.

    About our question, the P9.05 was as can120 pin by default.

    Now we need to have Sync pin as GPIOTE input on P9.05.

    So the changes in app.overlay are as follow:

      

    &can120 {
        // This allows to use P9.05 pin as GPIOTE event
        status = "disabled";
    };

    / {
        sync_pin: sync_pin {
            compatible = "nordic,gpio-pins";
            gpios = <&gpio9 5 (GPIO_PULL_UP | GPIO_ACTIVE_HIGH)>;
            status = "okay";
        };
    };
Children
Related