added pull up question authored by Matthias Wenzl's avatar Matthias Wenzl
......@@ -10,6 +10,11 @@
{blank}
== My GPIO Pins are configured as input and the pull-ups are set, but button presses are still not recognized
GPIOPinTypeGPIOInput() calls GPIOPadConfigSet() which overwrites previous configurations.
Thererore, call GPIOPinTypeGPIOInput() *before* calling GPIOPadConfigSet().
== What is the "best" way to start a "new" Project
Since there are many configurations well hidden in the project settings that can severely impact the behavior of the binary, the *recommended way* is:
......
......