XIAO ESP32S3 channel values not updating #54
Answered
by
ZZ-Cat
matt-nolan11
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
ZZ-Cat
Jan 18, 2024
Replies: 1 comment 8 replies
-
Yea, ESP32 chipsets isn't something I have available on hand, so I am relying on feedback from others to let me know whether-or-not something is working, and to help me with testing stuff out on their hardware. UART Pin assignments are in the cards for version 1.0.0, as it's currently not implemented... yet. For now, CRSF for Arduino defaults to Serial1 on every target. So, not entirely sure why Serial0 would interfere with that. But... stranger things have happened. How does the Channels example fair on your Xiao SAMD21? |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Okay, according to my information, the Seeed XIAO series all use pins D6 and D7 for their default UART.
This is different to the more commonplace D0 and D1 pins.
D6 is Tx and D7 is Rx.
The current version of CRSF for Arduino only uses pins D0 and D1.
In the upcoming version (Currently being tracked in #61), not only will I give you the ability to use arbitrary UART ports, I may take the liberty of re-factoring the default UART pin assignments for all Seeed XIAO targets.
It also appears to me that all of Adafruit's QtPy variants get even more wild with their UART pin assignments.
'Cause I originally went off the assumption that everyone is keeping to the D0 and D1 assignments that Arduino …