This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Terminal Control

Hello,

I'm interested in building a little serial configuration UI for my current design which controls the terminal in a user-friendly way. Does anyone know of a (perhaps miniaturized) curses port or other reasonably rich terminal control library for C51?

Thank you.

Sasha Jevtic

  • When I've done this I've always used a command-line interface on the 8051 (it's a lot easier to implement and it requires only a little code space).

    Then, I've created a GUI in whatever connecting application I was using (VB, VC++, DOS, ...). That way, I could add lots of fancy features to the GUI without impacting my embedded application.

    Jon