-
-
Notifications
You must be signed in to change notification settings - Fork 87
USB Serial - differences between WIFI and MINIMA #82
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
Comments
Hi @KurtE ☕ 👋 For general questions please take it to the forum. If you're experiencing a real issue (= have discovered a bug) then please open a single issue for a single bug. If you have a solution - even better - please open a PR. Please stop creating one issue after the other, dealing with each and single one of your mostly unclear formulated issues takes time and bandwith from our team trying to patch the actual issues. I've already warned you over here. |
Hello @aentinger, Maybe if you had an issue template, like the IDE, one might know in what format you would like things in. This Issue: the WIFI version does not implement Serial.baud() and Serial.dtr() and maybe others.
Sorry I don't have enough information on how to implement this on your board. As for #76 (comment) As for opening new issues. I will resist. |
That's a good feedback 👍 and this would be a good example of what could be put into a single issue, i.e. "[Feature Request] Provide issue template in order to facilitate effective communication between community and maintainers".
You can open new issues, but apply the following checks:
Similar for PRs. We do not have the bandwidth to verify large PR's that attempt to improve multiple dimensions in one changeset. Keep them small and localized. Allright, mate? 😉 |
QSPI flash default partitioning proposal
QSPI flash default partitioning proposal Former-commit-id: cdfdfd5
There API differences between the Serial objects on the WIFI and MINIMA.
Sorry, it is unclear to me if this should be an issue here, as code compiles on one and not the other. Or should be a discussion on the forum.
The following sketch, which is a slightly modified version of the USBToSerial Teensy example sketch, builds and runs fine on MINIMA, but compiler errors with WIFI. Note: code will not properly on current released code as availableForWrite() was not implemented and uses the default implementation which returns 0.
The difference to the actual example is I added a bunch of pinMode statements to enable some debugging of my updated code base and I setup to allow optional Serial object using the SCL/SDA pins.
Compiler errors on the WIFI board:
Notes/Questions - things to try.
MINIMA:
WIFI:
baud(). Could either make Serial object, as a sub-class of the UART code, or could add baud() to the UART code, or could punt.
How are the communications between ESP32 and hardware UART impacted by what BAUD rate chosen? Does it change the speed between the two processors, I pretty sure YES. but could instead choose to use some fixed speed.
And if I do Serial.begin(new_baud_rate) is that communicated back to ESP32? And then back to the host?
The text was updated successfully, but these errors were encountered: