Replies: 2 comments
-
Yes, I think copying and modifying is your best choice here and gives you the most flexibility. Then you can also judge how much work it is to integrate into modm. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Okay, thanks! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm developing a project for AVR where I need to use UART with 9 data bits. The current interface doesn't seem to support this. Do you think it would be reasonable (and not very complicated) to add support in modm for this, or should I just hack together something? :D
(I'm interfacing with SeaTalk, where the 9th data bit is used as the "command bit". Also, as this is a bus protocol, the RX receives what's sent on TX, and actually has to check whether the sent frame is correct before moving on, for collision detection. I think this makes me unable to use the buffered UART functions, so it might make more sense to actually just copy the modm UART code and modify it for myself. Any thoughts?)
Beta Was this translation helpful? Give feedback.
All reactions