I am trying to use JFlash with a Flasher ARM to setup a cortex M4 board with Kinetis K64. I have a script that works with a different brand flash programmer. I am trying to use MCU Init Steps to duplicate the script actions.
The script sequence is reset CPU, disable watchdog, and setup clocks.
A typical script action would be something like
while ((memValue & mask) != 0x10); //which just waits for specific bits to be set or cleared in a memory location
I see that there is a Verify 8bit command in init steps that might be useful, but the explanation just says it verifies that a memory location is equal to a defined value. It does not say what happens if they are equal or if they are not equal. Is there a document somewhere that provides a more complete description of MCU Init Step commands?
The script sequence is reset CPU, disable watchdog, and setup clocks.
A typical script action would be something like
while ((memValue & mask) != 0x10); //which just waits for specific bits to be set or cleared in a memory location
I see that there is a Verify 8bit command in init steps that might be useful, but the explanation just says it verifies that a memory location is equal to a defined value. It does not say what happens if they are equal or if they are not equal. Is there a document somewhere that provides a more complete description of MCU Init Step commands?