Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob

Software Reset with PSoC1

Software Reset with PSoC1

Anonymous
Not applicable
Question: How can I implement a software reset with PSoC1?

 

Answer:
M8C_Reset macro performs a software reset function and more details on this function can be found in the SROM chapter in the Technical Reference Manual
 
The following are some more points on software reset:
 
1. A software reset will restore the M8C to a know state but not PSoC blocks, systems, peripherals, or registers. For a software reset, the CPU registers (CPU_A, CPU_F, CPU_PC, CPU_SP, and CPU_X) are set to 0x00. Therefore, code execution will begin at Flash address 0x0000. Hardware reset will restore all the registers to a known state.
 
2.SRAM will always be changed by the SWBootReset function as explained in  Technical Reference Manual
 
Note:
 
The Reset macro is a System Supervisory function and once the reset occurs, the ICE loses synchronization with the POD and therefore, the invalid memory reference error. Basically, you cannot emulate the software reset, however, you can use the chip and it will work properly.
0 Likes
617 Views
Contributors