Giter VIP home page Giter VIP logo

Comments (3)

zsquareplusc avatar zsquareplusc commented on May 26, 2024

I think the code should be further divided, splitting of the "repr" modes into a separate class(es) an calling it a "filter" or something alike. The operation is to turn a byte string into a unicode string, which could be useful for reuse.

What I want to have is, that miniterm is a "dumb" terminal, at least with its default options (it currently isn't that on non-windows platforms). The idea behind that is, that I want to use miniterm to debug connections where anything could be received from binary data, to text, to garbage. "Real" terminal programs often implement VT100 or higher and then stop displaying incoming data correctly. So ideally, the default mode of miniterm would even strip/change escape sequences.

  • "dumb terminal": show every character, allow basic control codes (LF, CR, TAB, BS, ...) (default)
  • "show controls": show most control characters, except newline
  • "show ASCII only": controls and >127 are converted
  • "hexdump": well, hex dump everything
  • "raw": take the byte as-is, send to stdout without any translation

Color and Unicode are a problem on Windows, maybe colorama solves the first problem, but on the Windows machines I had to deal with, the console is set to latin1/cp1252 and python setting the default encoding only to ASCII.

from pyserial.

zsquareplusc avatar zsquareplusc commented on May 26, 2024

I've changed the structure a bit, allowing to set the codec for the serial port and then applying transformations in the string domain. There are still some edges, (hex must be done as encoding not text transformation to work correctly, Unicode in the Windows is erhm.... "suboptimal")

from pyserial.

zsquareplusc avatar zsquareplusc commented on May 26, 2024

I guess the sources for miniterm are "stable" again and your concerns are (mostly) addressed.

from pyserial.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.