RemoteHardwareModule.cpp: Hot Fix digitalReads() pinModes(mask, INPUT_PULLUP) (#2459)

This commit is contained in:
IhorNehrutsa 2023-05-04 05:09:18 +03:00 committed by GitHub
parent 973b30fc0b
commit e360c62480
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,10 +29,7 @@ static uint64_t digitalReads(uint64_t mask)
{ {
uint64_t res = 0; uint64_t res = 0;
// The Arduino docs show to run pinMode(). But, when testing, found it is best not to. pinModes(mask, INPUT_PULLUP);
// If the line below is uncommented, read will flip the pin to the default of the second
// argument in pinModes(), which will make the read turn the PIN "on".
// pinModes(mask, INPUT_PULLUP);
for (uint64_t i = 0; i < NUM_GPIOS; i++) { for (uint64_t i = 0; i < NUM_GPIOS; i++) {
uint64_t m = 1ULL << i; uint64_t m = 1ULL << i;