-
Notifications
You must be signed in to change notification settings - Fork 935
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
stdio_usb improvements #871
Conversation
kilograham
commented
Jun 17, 2022
- Use shared IRQ if available to avoid 1ms timer.
- Allow use of stdio_usb with user's tinyusb setup if it has CDC
…b with user's tinyusb setup if it has CDC
cca4e41
to
e655ef8
Compare
fixes #838 |
… alarm_pool_core_num() API (raspberrypi#918) This issue addresses possible starvation issues when using `getchar()` with `stdio_usb` and also fixes possible missing of IRQs as a result of raspberrypi#871
Hi. This PR has added a check that callback is executed on the right core... But what is the way to setup default alarm pool to fire on core1? Thanks in advance. |
Hi
but got the warning
Trying to make the PI as HID + Serial at the same time |
All of the Raspberry Pi engineers are currently on holiday, so if none of the examples at https://github.com/raspberrypi/pico-examples/blob/master/README.md#usb-device help, you'll probably get a quicker response from https://forums.raspberrypi.com/ |
Don't configure stdio to use usb. Use a UART instead |
@peterharperuk |
I found a way to do that and it works. the PICO act as HID + CDC device and I can read serial output in my PC in the same time. But I'm still looking for relevant documentation about that and maybe official example |