All:
I am using SYS/BIOS on the F28335. So far, I have been able to use the Experimenter's Kit to go through the following steps:
1. Add peripheral header files to Idle time function, to be able to use GPIO to blink and LED from the idle time function.
2. Move on to adding an SWI function, so now I have 2 blinking LEDs, one from an SWI and a second from the idle time function.
3. Add peripheral clock initialization and flash initialization - I am now able to generate a PWM waveform while blinking 2 LEDs.
I am now trying to add HWI support, and I am having some problems, particularly with the use of the Peripheral Interrupt Expansion of the F28335:
I have tried to migrate the PWM interrupt example from the F28335 example code into the above environment, but so far no interrupts...
Do I use "Add the portable Hwi management module to my configuration? (I think the answer is No.)
Under "Device-specific Hwi Support" I have tried to add an interrupt service routine for epwm1_isr( ) by clicking on the Add... and filling in these values for the required settings: Handle = PWM1 (Is this correct?)
ISR function = epwm1_isr
Interrupt number = 48
However, once I have done this and loaded the error-free compile, I do not stop at a breakpoint at the epwm1_isr function. Any help?