Hi Everyone,
I am very tired and frustrated after trying many things for simply getting 4 PWM controlled outputs from my Axon. I would really appreciate anyone's help in this regard.
I have been working with microcontrollers, PICS, ATMEGA's, 8051 etc etc ..... I love Axon, but here is my problem:
I just need to get 4 PWM individual outputs from my Axon. The code I am using is provided below;
PWM_Init_timer2_H6(

;//9 doesn't work
delay_ms(100);
PWM_Init_timer3_E3(

;
delay_ms(100);
PWM_Init_timer3_E4(

;
delay_ms(100);
PWM_Init_timer3_E5(

;
delay_ms(100);
PWM_timer2_On_H6();
PWM_timer3_On_E3();
PWM_timer3_On_E4();
PWM_timer3_On_E5();
delay_ms(1000);
PWM_timer2_Set_H6(127);
PWM_timer3_Set_E3(127);
PWM_timer3_Set_E4(127);
PWM_timer3_Set_E5(127);
delay_ms(5000);
PWM_timer2_Set_H6(254);
PWM_timer3_Set_E3(254);
PWM_timer3_Set_E4(254);
PWM_timer3_Set_E5(254);
delay_ms(5000);
PWM_timer2_Set_H6(127);
PWM_timer3_Set_E3(127);
PWM_timer3_Set_E4(127);
PWM_timer3_Set_E5(127);
delay_ms(5000);
PWM_timer2_Set_H6(191);
PWM_timer3_Set_E3(191);
PWM_timer3_Set_E4(191);
PWM_timer3_Set_E5(191);
delay_ms(9000);
PWM_timer2_Off_H6();
PWM_timer3_Off_E3();
PWM_timer3_Off_E4();
PWM_timer3_Off_E5();
delay_ms(1000);
THE PROBLEM:
Only H6 is doing what its suppose to ..... E3,E4, and E5 are simply dead not doing anything....... Why why why?

:?( Please Help ..... Admin

?
Please do not recommend me the Tutorial, or the basic links available on the SoR, I have already tried several of these and NO RESULTS ..... I just wanted to know why the code above is not working and what is wrong with it.
Regards,
Ali