Not to hijack my own thread but you mention ANSI control sequences, you mean being able to see these properly?
Code: Select all
.[0;32mI (303) cpu_start: Starting scheduler on PRO CPU..[0m
.[0;32mI (0) cpu_start: Starting scheduler on APP CPU..[0m
Code: Select all
.[0;32mI (303) cpu_start: Starting scheduler on PRO CPU..[0m
.[0;32mI (0) cpu_start: Starting scheduler on APP CPU..[0m
Yes. The current version (2.1.0) already supports some formatting sequences (e.g. font colors, bold/italic/underline fonts), but due to the limitations of the TextArea Control, those are the only ones I can support. Others that require the cursor position to move to arbitrary places, etc, are currently not possible. Check out the built-in help for more information. There are also some caveats to enabling formatting. The contents of the TextArea get refreshed with the entire contents of the receive buffer to ensure that what is being displayed is always in sync with what has been received. Getting this to work with the limited options provided by the native TextArea control (which is basically a very, very simple text editor), this can get slow with large amounts of data, or when received data updates rapidly. More details on that in the built-in help. There are some workarounds to make it work better. Play around with it and see how you like it. It should work well enough to display debug information.GeorgeIoak wrote: ↑Fri Feb 09, 2024 11:43 am Not to hijack my own thread but you mention ANSI control sequences, you mean being able to see these properly?
Code: Select all
.[0;32mI (303) cpu_start: Starting scheduler on PRO CPU..[0m .[0;32mI (0) cpu_start: Starting scheduler on APP CPU..[0m