pinMode PullUp in core library missing

This commit is contained in:
Christoph Haberer 2017-04-24 07:20:02 +02:00
parent c206a6623d
commit b7a187436d
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ const uint8_t Led[] = {GREENLED, ORANGELED, REDLED, BLUELED, REDLEDOTGOVERCURREN
void setup()
{
for (int n = 0; n < NUMLEDS; n++) pinMode(Led[n], OUTPUT);
//pinMode(REDLEDOTGOVERCURRENT,PULL_DOWN); // needed to protect STMPS2141 FAULT output from shortcutting PC5 on power fault
//pinMode(REDLEDOTGOVERCURRENT,PULL_UP); // needed to protect STMPS2141 FAULT output from shortcutting PC5 on power fault
}
void setLed(uint8_t n, uint8_t state)

View File

@ -14,7 +14,7 @@ const uint8_t Led[] = {GREENLED, REDLED, OTGFSOC_LED};
void setup()
{
for (int n = 0; n < NUMLEDS; n++) pinMode(Led[n], OUTPUT);
//pinMode(OTGFSOC_LED,PULL_DOWN); // needed to protect STMPS2141 FAULT output from shortcutting PC5 on power fault
//pinMode(OTGFSOC_LED,PULL_UP); // needed to protect STMPS2141 FAULT output from shortcutting PC5 on power fault
}
void setLed(uint8_t n, uint8_t state)