[qemu-a9] add .ignore_format.yml
This commit is contained in:
parent
5aecdeb8ab
commit
45dd302abf
|
@ -180,7 +180,7 @@ void push_event_touch_end(int x, int y)
|
||||||
emouse.y = y;
|
emouse.y = y;
|
||||||
emouse.ts = rt_tick_get();
|
emouse.ts = rt_tick_get();
|
||||||
emouse.id = emouse_id;
|
emouse.id = emouse_id;
|
||||||
|
|
||||||
LOG_D("[line]:%d up event id:%d x:%d y:%d", __LINE__, emouse.id, x, y);
|
LOG_D("[line]:%d up event id:%d x:%d y:%d", __LINE__, emouse.id, x, y);
|
||||||
rtgui_server_post_event(&emouse.parent, sizeof(emouse));
|
rtgui_server_post_event(&emouse.parent, sizeof(emouse));
|
||||||
#elif defined(PKG_USING_LITTLEVGL2RTT)
|
#elif defined(PKG_USING_LITTLEVGL2RTT)
|
||||||
|
@ -271,7 +271,7 @@ int rt_hw_mouse_init(void)
|
||||||
((read32(virt + 0xfe8) & 0xff) << 16) |
|
((read32(virt + 0xfe8) & 0xff) << 16) |
|
||||||
((read32(virt + 0xfe4) & 0xff) << 8) |
|
((read32(virt + 0xfe4) & 0xff) << 8) |
|
||||||
((read32(virt + 0xfe0) & 0xff) << 0));
|
((read32(virt + 0xfe0) & 0xff) << 0));
|
||||||
|
|
||||||
if(((id >> 12) & 0xff) != 0x41 || (id & 0xfff) != 0x050)
|
if(((id >> 12) & 0xff) != 0x41 || (id & 0xfff) != 0x050)
|
||||||
{
|
{
|
||||||
LOG_E("read id fail id:0x%08x", id);
|
LOG_E("read id fail id:0x%08x", id);
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
# files format check exclude path, please follow the instructions below to modify;
|
||||||
|
# If you need to exclude an entire folder, add the folder path in dir_path;
|
||||||
|
# If you need to exclude a file, add the path to the file in file_path.
|
||||||
|
|
||||||
|
dir_path:
|
||||||
|
- demo
|
Loading…
Reference in New Issue