Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

more compatible with IAR #1963

Merged
merged 1 commit into from
Mar 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/portable/raspberrypi/rp2040/rp2040_usb.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
#define __tusb_irq_path_func(x) x
#endif

#define usb_hw_set ((usb_hw_t *) hw_set_alias(usb_hw))
#define usb_hw_clear ((usb_hw_t *) hw_clear_alias(usb_hw))
#define usb_hw_set ((usb_hw_t *) hw_set_alias_untyped(usb_hw))
#define usb_hw_clear ((usb_hw_t *) hw_clear_alias_untyped(usb_hw))

#define pico_info(...) TU_LOG(2, __VA_ARGS__)
#define pico_trace(...) TU_LOG(3, __VA_ARGS__)
Expand Down