diff options
Diffstat (limited to 'quantum/encoder/tests/mock.h')
| -rw-r--r-- | quantum/encoder/tests/mock.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/quantum/encoder/tests/mock.h b/quantum/encoder/tests/mock.h index 80c336b5ef..28774b82ab 100644 --- a/quantum/encoder/tests/mock.h +++ b/quantum/encoder/tests/mock.h | |||
| @@ -24,11 +24,11 @@ typedef uint8_t pin_t; | |||
| 24 | extern bool pins[]; | 24 | extern bool pins[]; |
| 25 | extern bool pinIsInputHigh[]; | 25 | extern bool pinIsInputHigh[]; |
| 26 | 26 | ||
| 27 | #define setPinInputHigh(pin) (mockSetPinInputHigh(pin)) | 27 | #define gpio_set_pin_input_high(pin) (mock_set_pin_input_high(pin)) |
| 28 | #define readPin(pin) (mockReadPin(pin)) | 28 | #define gpio_read_pin(pin) (mock_read_pin(pin)) |
| 29 | 29 | ||
| 30 | uint8_t mockSetPinInputHigh(pin_t pin); | 30 | uint8_t mock_set_pin_input_high(pin_t pin); |
| 31 | 31 | ||
| 32 | bool mockReadPin(pin_t pin); | 32 | bool mock_read_pin(pin_t pin); |
| 33 | 33 | ||
| 34 | bool setPin(pin_t pin, bool val); | 34 | bool setPin(pin_t pin, bool val); |
