 
					
				
		
 
					
				
		
Hi
I know that in some processors (56F8323) there is a register called PWM configure register. It has two bits that allow the PWMs to run in debug and wait modes. Unfortunately I do not know how to set the bits in CodeWarrior. If any one can help I'm anxious for a reply.
Thanks
Greg
 
					
				
		
I found the following solution
By adding the lines
PESL(PWMA,PWM_WAIT_OPERATION, PWM_RUN);  //Test only for PWMs to run in debug and wait
PESL(PWMA,PWM_DEBUG_OPERATION, PWM_RUN);
to the initialization part of my code.   I was able to get the PWMS to stay on in debug mode.  I set a break point and the testpoint held at 0.8V (usually it  drops to zero). 
Thanks
Greg
