Skip to content

Commit 45dd302

Browse files
committed
[qemu-a9] add .ignore_format.yml
1 parent 5aecdeb commit 45dd302

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

bsp/qemu-vexpress-a9/drivers/drv_mouse.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ void push_event_touch_end(int x, int y)
180180
emouse.y = y;
181181
emouse.ts = rt_tick_get();
182182
emouse.id = emouse_id;
183-
183+
184184
LOG_D("[line]:%d up event id:%d x:%d y:%d", __LINE__, emouse.id, x, y);
185185
rtgui_server_post_event(&emouse.parent, sizeof(emouse));
186186
#elif defined(PKG_USING_LITTLEVGL2RTT)
@@ -271,7 +271,7 @@ int rt_hw_mouse_init(void)
271271
((read32(virt + 0xfe8) & 0xff) << 16) |
272272
((read32(virt + 0xfe4) & 0xff) << 8) |
273273
((read32(virt + 0xfe0) & 0xff) << 0));
274-
274+
275275
if(((id >> 12) & 0xff) != 0x41 || (id & 0xfff) != 0x050)
276276
{
277277
LOG_E("read id fail id:0x%08x", id);
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# files format check exclude path, please follow the instructions below to modify;
2+
# If you need to exclude an entire folder, add the folder path in dir_path;
3+
# If you need to exclude a file, add the path to the file in file_path.
4+
5+
dir_path:
6+
- demo

0 commit comments

Comments
 (0)