Subsystem for different uart implementations (e.g. peripheral UART and one over USB)#4163
Subsystem for different uart implementations (e.g. peripheral UART and one over USB)#4163jfischer-no wants to merge 5 commits intoRIOT-OS:masterfrom jfischer-no:pr@software-uart
Conversation
|
Shouldn't we generalize this? chardevops_t? |
|
Ne rather not. uart (uartdev_ops_t) fits better. I would like to use something like (sys/Makefile): to make it less ugly :-) Any idea? |
I'm thinking, you're introducing a generic interface for read(), write(), poweron/off, and init. |
|
@kaspar030 Ok, now I have understood you. |
|
Still WIP, I guess it won't make it for this release. @jfischer-phytec-iot retag if you disagree. |
|
WIP -> postponed. |
|
Postponed due to feature freeze |
|
I remove the milestone because it seems quite unpredictable when @jfischer-phytec-iot will have time to finish this work. |
|
Why? |
|
Ups, sorry, excessive cleansing. But.. there was a discussion about this during summit, and it was rejected because it caused more latencies and code. |
|
Thanks for the explanation. |
This PR allows the use of different uart implementations (e.g. peripheral UART and one over USB).
Depends on #4114and serves as an example for #4155 . WIP