diff options
| author | hathach <[email protected]> | 2024-10-10 16:22:12 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2024-10-10 16:28:36 +0700 |
| commit | 57aac432b52df6d284c98daf591e661d1c55aa05 (patch) | |
| tree | 1e980f0c18f558e3041dbef3021afa346297a85d /examples/host/hid_controller/src | |
| parent | ffdf81f53a84111a2536defa86e4a637c3c46854 (diff) | |
add new tusb_int_handler(rhport, in_isr) as common irq handler
update tusb_init() to take rhport and role, defined as macro with optional argument for backward compatible
Diffstat (limited to 'examples/host/hid_controller/src')
| -rw-r--r-- | examples/host/hid_controller/src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/host/hid_controller/src/main.c b/examples/host/hid_controller/src/main.c index 05a5ae176..76b686683 100644 --- a/examples/host/hid_controller/src/main.c +++ b/examples/host/hid_controller/src/main.c @@ -52,7 +52,7 @@ int main(void) printf("Note: Events only displayed for explicit supported controllers\r\n"); // init host stack on configured roothub port - tuh_init(BOARD_TUH_RHPORT); + tusb_init(BOARD_TUH_RHPORT, TUSB_ROLE_HOST); if (board_init_after_tusb) { board_init_after_tusb(); |
