2022-01-06 03:43 AM
when performed NVM operations (write on page and erase page),
i lost some recieved bytes in my LPUART Rx line.
can any one please tell me if there is a way to use this modules together?
Thanks a lot,
Yoni
Solved! Go to Solution.
2022-01-06 06:58 AM
While erase operations are ongoing, access to the flash bank will block the cpu until the erase is finished.
If you want to run code while erasing flash pages, you'll need to move that code to RAM, or use separate banks (if available on your chip).
2022-01-06 06:58 AM
While erase operations are ongoing, access to the flash bank will block the cpu until the erase is finished.
If you want to run code while erasing flash pages, you'll need to move that code to RAM, or use separate banks (if available on your chip).
2022-01-06 09:57 AM
Thanks a lot TDK !
it helped a lot