I want change the default target
configuration settings.
How is the syntax of the initialisation commands?
To setup register settings, when UDE connects to the target, edit the values from the Config - Target Interface - Connect/Reset- Execute Initialisiation Commands page ...
Syntax: SET <dst_register> <value> [<mask>] COPY <src_register> <dst_register> [<mask>] EINIT DISWDT
<dst_register> | <src_register> := <register_addr> | <register_symbol> <value> := <hexnumber>h <mask> := <hexnumber>h
<register_addr> := <hexnumber>h <register_symbol> := <textstring> Action: SET: *<dst_register> = (*<dst_register> & ~<mask>) | (<value> & <mask>) COPY: *<dst_register> = (*<src_register> | <mask>) EINIT: Execute EINIT command DISWDT: Disable Watchdog Example: Set the XPEN bit in SYSCON register independently from the WRL/BHE/WRH control.
SET SYSCON 04h 04h |