summaryrefslogtreecommitdiff
path: root/stmhal/pyexec.c
AgeCommit message (Collapse)Author
2014-04-03stmhal: Fix raw REPL so that it passes through more ASCII chars.Damien George
2014-03-30Rename rt_* to mp_*.Damien George
Mostly just a global search and replace. Except rt_is_true which becomes mp_obj_is_true. Still would like to tidy up some of the names, but this will do for now.
2014-03-29stmhal: Factor out stdio and readline to separate files.Damien George
Adds readline_init() to clear readline history on soft reset. Addresses issue #387.
2014-03-24stmhal: Improve REPL CTRL commands.Damien George
2014-03-17stmhal: Add fatfs support, working with flash and SD card.Damien George
2014-03-15Add vstr_ins and vstr_cut_out; improve stmhal readline.Damien George
2014-03-15stmhal: Fix escape sequences in USB CDC input.Damien George
2014-03-15stmhal: Get USB CDC REPL working.Damien George
New USB HAL is quite a bit improved over previous one. Now has better callbacks and flow control. REPL over USB CDC now works as before, except for soft-reset (since USB driver uses malloc...).
2014-03-13stmhal - More systick cleanup. Fix HAL_DelayDave Hylands
2014-03-12REPl working on UART6 with STMHALDave Hylands