Hi,
This is a very simple problem which I am struggling to solve, I am trying to disable the internal pull up resistors on my TMS38f28069 this is what I am doing, however is not working the voltage at the pin is 2.6 V. I am using one of the development boards.
here is my code.
EALLOW;
//input pin for Channel1 ADD busy line
GpioCtrlRegs.GPBPUD.bit.GPIO34 = 1;
GpioCtrlRegs.GPBMUX1.bit.GPIO34 = 0;
GpioCtrlRegs.GPBDIR.bit.GPIO34 = 0;
EDIS;