I am using RM48HDK, but I can find few Introduction about the POM, and can't find any demo code about POM.
would somebody provides me some document and demos ?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I am using RM48HDK, but I can find few Introduction about the POM, and can't find any demo code about POM.
would somebody provides me some document and demos ?
I am attaching a simple example here to illustrate how POM works.
From Halcogen, I generated POM function to overlay Flash 0x10000 with RAM 0x08000000. The size is 1KB. The test works as follows.
(1) set a breakpoint at POM_Enable() and run to the breakpoint.
(2) Open a memory window to view the content at 0x10000. It should be all 0xffffffff because this flash location is erased.
(3) View memory at 0x08000000. You should see all 0x0 because of the RAM initialization during start up. You can manually type some value into this location.
(4) set a breakpoint after POM_Enable() and run to the breakpoint. Open the memory window at 0x10000. You should see the same content as at 0x08000000 because overlay is enabled.
Thanks and regards,
Zhaohong