diff options
author | Michael Büchler <michael.buechler@posteo.net> | 2023-09-25 05:00:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-25 13:00:13 +1000 |
commit | 4d994458f02482a659e0f7580576c92e950321d1 (patch) | |
tree | 840900e5970570d996f9ee9ab92cbb5f0c8d3d5f /platforms/chibios/drivers | |
parent | c10a46aa436fdd55279bf5b78cc5b9b54c90ca56 (diff) |
Document the RP2040-specific PS/2 implementation (#22079)
Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com>
Diffstat (limited to 'platforms/chibios/drivers')
-rw-r--r-- | platforms/chibios/drivers/vendor/RP/RP2040/ps2_vendor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platforms/chibios/drivers/vendor/RP/RP2040/ps2_vendor.c b/platforms/chibios/drivers/vendor/RP/RP2040/ps2_vendor.c index 119c6354b0..1c61f196bd 100644 --- a/platforms/chibios/drivers/vendor/RP/RP2040/ps2_vendor.c +++ b/platforms/chibios/drivers/vendor/RP/RP2040/ps2_vendor.c @@ -22,7 +22,7 @@ #endif #if PS2_DATA_PIN + 1 != PS2_CLOCK_PIN -# error PS/2 Clock pin must be followed by data pin! +# error PS/2 clock pin must be data pin + 1! #endif static inline void pio_serve_interrupt(void); |