File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -72,12 +72,14 @@ fn main() -> Result<()> {
72
72
. allowlist_function ( "gpio_.*" )
73
73
. allowlist_function ( "flash_.*" )
74
74
. allowlist_function ( "usb_.*" )
75
+ . allowlist_function ( "hid_.*" )
75
76
. allowlist_item ( "GPIO_.*" )
76
77
. allowlist_item ( "USB_.*" )
77
78
. allowlist_item ( "FLASH_.*" )
78
79
. allowlist_item ( "Z_.*" )
79
80
. allowlist_item ( "ZR_.*" )
80
81
. allowlist_item ( "K_.*" )
82
+ . allowlist_item ( "hid_ops*" )
81
83
. allowlist_item ( "uart_line_ctrl" )
82
84
// Each DT node has a device entry that is a static.
83
85
. allowlist_item ( "__device_dts_ord.*" )
Original file line number Diff line number Diff line change @@ -43,6 +43,10 @@ extern int errno;
43
43
#include <zephyr/drivers/uart.h>
44
44
#include <zephyr/drivers/led_strip.h>
45
45
#include <zephyr/drivers/led.h>
46
+ #include <zephyr/drivers/usb/usb_dc.h>
47
+ #include <zephyr/usb/class/hid.h>
48
+ #include <zephyr/usb/usb_device.h>
49
+ #include <zephyr/usb/class/usb_hid.h>
46
50
47
51
#ifdef CONFIG_THREAD_ANALYZER
48
52
#include <zephyr/debug/thread_analyzer.h>
You can’t perform that action at this time.
0 commit comments