Skip to content
Snippets Groups Projects
Commit e431bf7f authored by Sandeep Mistry's avatar Sandeep Mistry
Browse files

Enable input on pinMode OUTPUT to support reading back current value via digitalRead

parent f355d30e
No related branches found
No related tags found
No related merge requests found
......@@ -58,8 +58,10 @@ void pinMode( uint32_t ulPin, uint32_t ulMode )
break ;
case OUTPUT:
// enable input, to support reading back values
PORT->Group[g_APinDescription[ulPin].ulPort].PINCFG[g_APinDescription[ulPin].ulPin].bit.INEN = 1 ;
// Set pin to output mode
PORT->Group[g_APinDescription[ulPin].ulPort].PINCFG[g_APinDescription[ulPin].ulPin].reg&=~(uint8_t)(PORT_PINCFG_INEN) ;
PORT->Group[g_APinDescription[ulPin].ulPort].DIRSET.reg = (uint32_t)(1<<g_APinDescription[ulPin].ulPin) ;
break ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment