You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment the app display the raw data as it comes from the device. This is fine for devices that emit ASCII data line by line, but won't be very useful with devices that emit in a binary format.
It will be nice to have a button to toggle between plain output and hexadecimal format, something like the hexdump command does in Linux. Here's an example of the output of ls / | hexdump -C on my PC:
The first column indicating the position from the start can be omitted. It would be great to make it an option
The last column with plain text-ish version can be omitted. It would be great to make it an option
The format should be adjusted to the width and orientation of the device: it should have 8 columns on tablets when horizontal, and perhaps only 4 columns on phones when vertical. Something like that.
Should the toggle rewrite the lines that were already displayed, or should it apply to new lines only?
It would be great to rewrite lines already displayed too
It's ok if it doesn't rewrite and just apply to new input
The text was updated successfully, but these errors were encountered:
At the moment the app display the raw data as it comes from the device. This is fine for devices that emit ASCII data line by line, but won't be very useful with devices that emit in a binary format.
It will be nice to have a button to toggle between plain output and hexadecimal format, something like the
hexdump
command does in Linux. Here's an example of the output ofls / | hexdump -C
on my PC:Here's another variation, without the
-C
flag:The text was updated successfully, but these errors were encountered: