nrf54l15 SB_CONFIG_BOOTLOADER_MCUBOOT=y makes main() gpio toggle stop.

As title.

  In nRF54L15 DK,  I set "SB_CONFIG_BOOTLOADER_MCUBOOT=y" in file "sysbuild.conf".

  It makes main function GPIO toggle stop.

  Do have any solution to prevent this problem?

result:

Parents Reply
  • I am using Timer00 every 4us interrupt once.

    Does it have to be done inside an interrupt? With this short interval you will likely be spending most of the available CPU time on context switching, which is not very efficient. I am not sure why you did not get it to work with TIMER20 but not the base clock on this is 16MHZ compared to the 128 MHz on TIMER00.

       The Timer Interrupt just toggle GPIO. and it cost 1us.

    It is possible to completely offload the CPU if you only need to toggle a GPIO by combining the TIMER instance with DPPI and GPIOTE. 

Children
Related