Links
These are links to other projects and things you might find interesting.

Github

The github project page is available at https://github.com/TheBeef/WhippyTerm.

Here you will find the source, bug tracking, and discussions about Whippy Term.

Other interesting projects

Project Description Notes
Scrutiny Debugger An open source debugging, visualization and testing tool for C/C++ embedded applications that works through instrumentation. This is interesting because it lets you plot / view / modify data on your target device in real time. You setup a com channel to / from your device (something like a serial port), then the program reads in the symbols from your compile and it can read and modify then on the target.
BittyHTTP A simple C web server A small embedded web server that's run directly on the metal without the need for threads, a standard TCP/IP stack, or memory managment.
WebC Make web pages in C This is another project for making web pages in C. It uses php like escape tags to let you write C code and HTML in the same source. It uses Bitty HTTP as an example web server.
Make My Makefile Makefile generator A web site for generate a makefile for you. You answer a few questions hit the generate button and a good functional makefile. You then can just add new files directly to the makefile without needing regenerate it.