aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/touchpad/touchpadADS7843/touchpad_lld.c10
-rw-r--r--drivers/touchpad/touchpadXPT2046/touchpad_lld.c8
2 files changed, 9 insertions, 9 deletions
diff --git a/drivers/touchpad/touchpadADS7843/touchpad_lld.c b/drivers/touchpad/touchpadADS7843/touchpad_lld.c
index a5265995..8fc334b2 100644
--- a/drivers/touchpad/touchpadADS7843/touchpad_lld.c
+++ b/drivers/touchpad/touchpadADS7843/touchpad_lld.c
@@ -91,7 +91,7 @@ void tp_lld_init(TOUCHPADDriver *tp) {
uint16_t tp_lld_read_x(void) {
uint8_t txbuf[1];
uint8_t rxbuf[2];
- uint16_t y;
+ uint16_t x;
txbuf[0] = 0xd0;
TP_CS_LOW;
@@ -99,14 +99,14 @@ uint16_t tp_lld_read_x(void) {
spiReceive(&SPID1, 2, rxbuf);
TP_CS_HIGH;
- y = rxbuf[0] << 4;
- y |= rxbuf[1] >> 4;
+ x = rxbuf[0] << 4;
+ x |= rxbuf[1] >> 4;
- return y;
+ return x;
}
/*
- * @brief Reads out the X direction.
+ * @brief Reads out the Y direction.
*
* @notapi
*/
diff --git a/drivers/touchpad/touchpadXPT2046/touchpad_lld.c b/drivers/touchpad/touchpadXPT2046/touchpad_lld.c
index 195c8aa6..24afcab4 100644
--- a/drivers/touchpad/touchpadXPT2046/touchpad_lld.c
+++ b/drivers/touchpad/touchpadXPT2046/touchpad_lld.c
@@ -91,7 +91,7 @@ void tp_lld_init(TOUCHPADDriver *tp) {
uint16_t tp_lld_read_x(void) {
uint8_t txbuf[1];
uint8_t rxbuf[2];
- uint16_t y;
+ uint16_t x;
txbuf[0] = 0xd0;
TP_CS_LOW;
@@ -99,10 +99,10 @@ uint16_t tp_lld_read_x(void) {
spiReceive(&SPID1, 2, rxbuf);
TP_CS_HIGH;
- y = rxbuf[0] << 4;
- y |= rxbuf[1] >> 4;
+ x = rxbuf[0] << 4;
+ x |= rxbuf[1] >> 4;
- return y;
+ return x;
}
/*