Browse Source

Merge pull request #4320 from DavidLin1577/patch-5

[bsp] mini optimized the drv_xpt2046.c
Bernard Xiong 4 years ago
parent
commit
b7c2c85aa0
1 changed files with 3 additions and 3 deletions
  1. 3 3
      bsp/raspberry-pi/raspi4-32/driver/touch/drv_xpt2046.c

+ 3 - 3
bsp/raspberry-pi/raspi4-32/driver/touch/drv_xpt2046.c

@@ -19,7 +19,7 @@
 #define DBG_LVL DBG_INFO
 #include <rtdbg.h>
 
-//XPT2049
+//XPT2046
 #define     READ_X                (0xD0)
 #define     READ_Y                (0x90)
 
@@ -218,7 +218,7 @@ static struct rt_touch_ops touch_ops =
     .touch_control = xpt2046_control,
 };
 
-static int hw_xpt2049_touch_init(void)
+static int hw_xpt2046_touch_init(void)
 {
     //touch sem
     rt_sem_init(&touch_ack, "touch_ack", 0, RT_IPC_FLAG_FIFO);
@@ -249,4 +249,4 @@ static int hw_xpt2049_touch_init(void)
 
     return 0;
 }
-INIT_DEVICE_EXPORT(hw_xpt2049_touch_init);
+INIT_DEVICE_EXPORT(hw_xpt2046_touch_init);