Cleanup, hex formatting

This commit is contained in:
Scott Lahteine
2021-05-05 06:32:54 -05:00
parent f67cd07328
commit a468701511
9 changed files with 2329 additions and 2328 deletions

View File

@ -1,6 +1,6 @@
# Serial port architecture in Marlin
Marlin is targeting a plethora of different CPU architecture and platforms. Each of these platforms has its own serial interface.
Marlin is targeting a plethora of different CPU architectures and platforms. Each of these platforms has its own serial interface.
While many provide a Arduino-like Serial class, it's not all of them, and the differences in the existing API create a very complex brain teaser for writing code that works more or less on each platform.
Moreover, many platform have intrinsic needs about serial port (like forwarding the output on multiple serial port, providing a *serial-like* telnet server, mixing USB-based serial port with SD card emulation) that are difficult to handle cleanly in the other platform serial logic.