Penguin
Annotated edit history of BottomUp version 1, including all changes. View license author blame.
Rev Author # Line
1 PerryLorier 1 A style of attacking a problem where you start with the detail (such as writing a string to a serial port) and then work towards the more abstract (using the function you wrote earlier to output data to a serial port to implement a command line interface).
2
3 Other styles are TopDown (where you start with the abstract and work towards the detail)