Hi folks,
i was running out of rti timers, so i decided to use the pwm section of the HET module on my RM48L952PGE. I've enabled the het1 driver, enabled interrupt channel 10 and 24 and enabled the interrupt for Eof Period 7. But -surprise- no interrupt is fired. So, what am i doing wrong?
The project is attached....
Cheers
Jan
Code:
main.h
signal.duty = 50; signal.period = 1000; hetInit(); _enable_interrupt_(); pwmEnableNotification(hetREG1,pwm7,pwmEND_OF_PERIOD); pwmSetSignal(hetRAM1,pwm7,signal); pwmStart(hetRAM1,pwm7);
while();