User Activity

#include "components.h"unsigned int i, location_no, data[9];int main(void){ /* Memory Unlock */ DFLASH.LML.R = 0xA1A11111;  //write password DFLASH.LML.R = 0x00000000;  //unlock all 4 16k blocks DFLASH.SLL.R = 0xC3C33333;  //write password DFLAS...
I am using Init package component (in which irq, osal, etc. components are present). When I use just timer interrupt, it gets successfully run. however, when I am trying to add UART peripheral inside the code, it gets stuck at _IVOR1. What can be the...