| 70 | } |
| 71 | |
| 72 | bool configure(Pin pin, Mode mode, bool pullUp, bool pullDown) { |
| 73 | #ifdef ESP_PLATFORM |
| 74 | return configureWithPinBitmask(BIT64(toEspPin(pin)), mode, pullUp, pullDown); |
| 75 | #else |
| 76 | return true; |
| 77 | #endif |
| 78 | } |
| 79 | |
| 80 | bool setMode(Pin pin, Mode mode) { |
| 81 | #ifdef ESP_PLATFORM |
nothing calls this directly
no test coverage detected