Terminal program for MailStation devices
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

README: move TODO a separate file

+12 -13
-13
README.md
··· 40 40 41 41 Load the compiled `obj/msterm.bin` to the `dataflash`... somehow. 42 42 43 - ### TODO 44 - 45 - - Make `putchar` faster (probably just `stamp_char`) because it is currently 46 - too slow to keep the modem at a high speed without dropping data. 47 - 48 - - Add an actual Settings menu to change modem speed through DLAB, speaker 49 - volume from automated calls, etc. This will require persisting settings to a 50 - dataflash page somewhere. 51 - 52 - - Add a Call menu to dial saved phone numbers 53 - 54 - - Maybe add battery level to status bar 55 - 56 43 ### License 57 44 58 45 Copyright (c) 2019 [joshua stein](https://jcs.org/)
+12
TODO
··· 1 + - Make `putchar` faster (probably just `stamp_char`) because it is currently 2 + too slow to keep the modem at a high speed without dropping data. We may 3 + be able to just get away with using flow control here if we can't make things 4 + fast enough. 5 + 6 + - Add an actual Settings menu to change modem speed through DLAB, speaker 7 + volume from automated calls, etc. This will require persisting settings to a 8 + dataflash page somewhere. 9 + 10 + - Add a Call menu to dial saved phone numbers. 11 + 12 + - Maybe add battery level to status bar?