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

Disable pull-ups on pinMode OUTPUT

parent e431bf7f
No related branches found
No related tags found
No related merge requests found
......@@ -61,6 +61,9 @@ void pinMode( uint32_t ulPin, uint32_t ulMode )
// enable input, to support reading back values
PORT->Group[g_APinDescription[ulPin].ulPort].PINCFG[g_APinDescription[ulPin].ulPin].bit.INEN = 1 ;
// disable pullups
PORT->Group[g_APinDescription[ulPin].ulPort].PINCFG[g_APinDescription[ulPin].ulPin].bit.PULLEN = 0 ;
// Set pin to output mode
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