We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This function is supposed to return the actual number of bytes written. On the USB (native) port it always returns 0.
The text was updated successfully, but these errors were encountered:
Hi @NickWaterton,
I can confirm this behaviour with the following sketch:
void setup() { SerialUSB.begin(9600); while(!SerialUSB); } void loop() { int written = SerialUSB.println("hello"); SerialUSB.println(written); delay(1000); }
It prints:
hello 0
instead of:
hello 7
I've submitted #143 to resolve this. You can try it out by following these instructions: #143 (comment)
Sorry, something went wrong.
Merge pull request arduino#138 from hathach/master
68e65f2
fix incorrect midi descriptor template
No branches or pull requests
This function is supposed to return the actual number of bytes written. On the USB (native) port it always returns 0.
The text was updated successfully, but these errors were encountered: