Hello, I am trying to use the DRV 8301 kit to read an digital input pin, and by looking at the schematics it seems that GIOA1 (pin 32 on the DIMM) is available for this functionality, but I am unable to get any response from the pin. Do you have any suggestions on how to fix this? As a frame of reference, I blue-wired this pin from the bottom of the board and I am 100% sure I have the correct pin.
When I set this bit as an output and set a value of 1 I am only reading 0V from my DMM instead of 3.3V. Below is my sample code:
void main(void){
gioInit();
while(1){
gioSetDirection(gioPORTA,1U);
gioSetBit(gioPORTA,1U,1U);
}
}