提交 af2b9b99 编写于 作者: B Bernard Xiong

[DeviceDrivers][USB Stack] code cleanup

上级 8cb012a0
...@@ -15,19 +15,22 @@ ...@@ -15,19 +15,22 @@
#include <rtthread.h> #include <rtthread.h>
#include <drivers/usb_host.h> #include <drivers/usb_host.h>
#include "hid.h" #include "hid.h"
#ifdef RT_USING_RTGUI #ifdef RT_USING_RTGUI
#include <rtgui/event.h> #include <rtgui/event.h>
#include <rtgui/rtgui_server.h> #include <rtgui/rtgui_server.h>
#include "drv_lcd.h" #include "drv_lcd.h"
#endif #endif
#if defined(RT_USBH_HID) && defined(RT_USBH_HID_MOUSE) #if defined(RT_USBH_HID) && defined(RT_USBH_HID_MOUSE)
static struct uprotocal mouse_protocal; static struct uprotocal mouse_protocal;
#ifdef RT_USING_RTGUI #ifdef RT_USING_RTGUI
#define LKEY_PRESS 0x01 #define LKEY_PRESS 0x01
#define RKEY_PRESS 0x02 #define RKEY_PRESS 0x02
#define MKEY_PRESS 0x04 #define MKEY_PRESS 0x04
#define MOUSE_SCALING 0x02 #define MOUSE_SCALING 0x02
static rt_bool_t lkey_down=RT_FALSE; static rt_bool_t lkey_down=RT_FALSE;
//static rt_bool_t rkey_down=RT_FALSE; //static rt_bool_t rkey_down=RT_FALSE;
//static rt_bool_t mkey_down=RT_FALSE; //static rt_bool_t mkey_down=RT_FALSE;
...@@ -36,86 +39,94 @@ static struct rtgui_event_mouse emouse; ...@@ -36,86 +39,94 @@ static struct rtgui_event_mouse emouse;
static rt_err_t rt_usbh_hid_mouse_callback(void* arg) static rt_err_t rt_usbh_hid_mouse_callback(void* arg)
{ {
struct uhid* hid; struct uhid* hid;
#ifdef RT_USING_RTGUI #ifdef RT_USING_RTGUI
rt_uint16_t xoffset=0; rt_uint16_t xoffset=0;
rt_uint16_t yoffset=0; rt_uint16_t yoffset=0;
#endif #endif
hid = (struct uhid*)arg; hid = (struct uhid*)arg;
RT_DEBUG_LOG(RT_DEBUG_USB, ("hid 0x%x 0x%x\n", RT_DEBUG_LOG(RT_DEBUG_USB, ("hid 0x%x 0x%x\n",
*(rt_uint32_t*)hid->buffer, *(rt_uint32_t*)hid->buffer,
*(rt_uint32_t*)(&hid->buffer[4]))); *(rt_uint32_t*)(&hid->buffer[4])));
#ifdef RT_USING_RTGUI #ifdef RT_USING_RTGUI
if(hid->buffer[1]!=0) if(hid->buffer[1]!=0)
{ {
if(hid->buffer[1]>127) if(hid->buffer[1]>127)
{ {
xoffset=(256-hid->buffer[1])*MOUSE_SCALING; xoffset=(256-hid->buffer[1])*MOUSE_SCALING;
if(emouse.x>xoffset) if(emouse.x>xoffset)
{ {
emouse.x-=xoffset; emouse.x-=xoffset;
}else }
{ else
{
emouse.x=0; emouse.x=0;
} }
}else }
{ else
xoffset=(hid->buffer[1])*MOUSE_SCALING; {
if((emouse.x+xoffset)<480) xoffset=(hid->buffer[1])*MOUSE_SCALING;
{ if((emouse.x+xoffset)<480)
{
emouse.x+=xoffset; emouse.x+=xoffset;
}else }
{ else
{
emouse.x=480; emouse.x=480;
} }
} }
} }
if(hid->buffer[2]!=0) if(hid->buffer[2]!=0)
{ {
if(hid->buffer[2]>127) if(hid->buffer[2]>127)
{ {
yoffset=(256-hid->buffer[2])*MOUSE_SCALING; yoffset=(256-hid->buffer[2])*MOUSE_SCALING;
if(emouse.y>yoffset) if(emouse.y>yoffset)
{ {
emouse.y-=yoffset; emouse.y-=yoffset;
}else }
{ else
{
emouse.y=0; emouse.y=0;
} }
}else }
{ else
yoffset=hid->buffer[2]*MOUSE_SCALING; {
if(emouse.y+yoffset<272) yoffset=hid->buffer[2]*MOUSE_SCALING;
{ if(emouse.y+yoffset<272)
{
emouse.y+=yoffset; emouse.y+=yoffset;
}else }
{ else
{
emouse.y=272; emouse.y=272;
} }
} }
} }
if(xoffset!=0||yoffset!=0) if(xoffset!=0||yoffset!=0)
{ {
cursor_set_position(emouse.x,emouse.y); cursor_set_position(emouse.x,emouse.y);
} }
if(hid->buffer[0]&LKEY_PRESS) if(hid->buffer[0]&LKEY_PRESS)
{ {
if(lkey_down==RT_FALSE){ if(lkey_down==RT_FALSE)
// rt_kprintf("mouse left key press down\n"); {
emouse.button = (RTGUI_MOUSE_BUTTON_LEFT | RTGUI_MOUSE_BUTTON_DOWN); // rt_kprintf("mouse left key press down\n");
rtgui_server_post_event(&emouse.parent, sizeof(struct rtgui_event_mouse)); emouse.button = (RTGUI_MOUSE_BUTTON_LEFT | RTGUI_MOUSE_BUTTON_DOWN);
lkey_down=RT_TRUE; rtgui_server_post_event(&emouse.parent, sizeof(struct rtgui_event_mouse));
} lkey_down=RT_TRUE;
}else if(lkey_down==RT_TRUE) }
{ }
// rt_kprintf("mouse left key press up\n"); else if(lkey_down==RT_TRUE)
emouse.button = (RTGUI_MOUSE_BUTTON_LEFT | RTGUI_MOUSE_BUTTON_UP); {
rtgui_server_post_event(&emouse.parent, sizeof(struct rtgui_event_mouse)); // rt_kprintf("mouse left key press up\n");
lkey_down=RT_FALSE; emouse.button = (RTGUI_MOUSE_BUTTON_LEFT | RTGUI_MOUSE_BUTTON_UP);
} rtgui_server_post_event(&emouse.parent, sizeof(struct rtgui_event_mouse));
#endif lkey_down=RT_FALSE;
}
#endif
return RT_EOK; return RT_EOK;
} }
...@@ -123,24 +134,24 @@ static rt_err_t rt_usbh_hid_mouse_init(void* arg) ...@@ -123,24 +134,24 @@ static rt_err_t rt_usbh_hid_mouse_init(void* arg)
{ {
struct uintf* intf = (struct uintf*)arg; struct uintf* intf = (struct uintf*)arg;
RT_ASSERT(intf != RT_NULL); RT_ASSERT(intf != RT_NULL);
rt_usbh_hid_set_protocal(intf, 0); rt_usbh_hid_set_protocal(intf, 0);
rt_usbh_hid_set_idle(intf, 10, 0); rt_usbh_hid_set_idle(intf, 10, 0);
RT_DEBUG_LOG(RT_DEBUG_USB, ("start usb mouse\n")); RT_DEBUG_LOG(RT_DEBUG_USB, ("start usb mouse\n"));
#ifdef RT_USING_RTGUI #ifdef RT_USING_RTGUI
RTGUI_EVENT_MOUSE_BUTTON_INIT(&emouse); RTGUI_EVENT_MOUSE_BUTTON_INIT(&emouse);
emouse.wid = RT_NULL; emouse.wid = RT_NULL;
cursor_display(RT_TRUE); cursor_display(RT_TRUE);
#endif #endif
return RT_EOK; return RT_EOK;
} }
/** /**
* This function will define the hid mouse protocal, it will be register to the protocal list. * This function will define the hid mouse protocal, it will be register to the protocal list.
* *
* @return the keyboard protocal structure. * @return the keyboard protocal structure.
*/ */
uprotocal_t rt_usbh_hid_protocal_mouse(void) uprotocal_t rt_usbh_hid_protocal_mouse(void)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册