Other Parts Discussed in Thread: LAUNCHXL-F28379D, C2000WARE
Thanks for the code and for your time;probably you assumed that i am familar with TI but actually i have been working with Ti for only two weeks now.
could you please just clarify the following:
1/is this program works with LAUNCHXL-F28379D !? does it have "driverlib.h" ... couldn't find it in F28379xD device support
2/is device.h the same as F2837xD_device.h?
3/where is Device_init() located ? is it the same as InitSysCtrl() that is located in F2837xD_SysCtrl.c?
Device_initGPIO != InitGpio()
Interrupt_initModule() != InitPieCtrl()
Interrupt_initVectorTable() != InitPieVectTable()
4/where is GPIO_setPadConfig(0, GPIO_PIN_TYPE_STD) located ... i guess it only sets some GPIO registers.
5/Interrupt_register(INT_EPWM1, &epwm1ISR) != PieVectTable.EPWM1_ISR= &epwm1ISR;
6/ if i decided to poll the GPIOs, and if i try this simple code
GpioCtrlRegs.GPAPUD.bit.GPIO4 = 0; // Enable pullup on GPIO4
GpioCtrlRegs.GPAMUX1.bit.GPIO4 = 1;
GpioCtrlRegs.GPADIR.bit.GPIO4 = 1; //output
GpioDataRegs.GPADAT.bit.GPIO4 = 1;
the pin doesn't go high (5v) ...am i missing somthing here !?

