summaryrefslogtreecommitdiffstatshomepage
path: root/stm/pyexec.c
Commit message (Collapse)AuthorAge
* stm: Remove long-obsolete stm/ port.Damien George2014-05-21
|
* stm: Reorder mpconfig.h header inclusion to get stm building.Damien George2014-05-10
|
* Improve REPL detecting when input needs to continue.Damien George2014-04-08
| | | | | | | | Full CPython compatibility with this requires actually parsing the input so far collected, and if it fails parsing due to lack of tokens, then continue collecting input. It's not worth doing it this way. Not having compatibility at this level does not hurt the goals of Micro Python.
* py: Add option to compiler to specify default code emitter.Damien George2014-04-06
| | | | Also add command line option to unix port to select emitter.
* Rename rt_* to mp_*.Damien George2014-03-30
| | | | | | | 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.
* Add vstr_ins and vstr_cut_out; improve stmhal readline.Damien George2014-03-15
|
* stm: Put pyb module in ROM.Damien George2014-03-08
|
* stm: Make pendsv_nlr_jump work when debugging is enabled.Damien George2014-02-23
| | | | | Stack layout is different when -g used, so need to handle the pendsv jump differently. Addresses Issue #315.
* stm: Put REPL functions in own file; add raw REPL mode.Damien George2014-02-16
Raw REPL mode is activated by CTRL-A, and allows you to more easily communicate with the pyboard over the serial channel. In particular, automated communication using, eg, pyserial on the PC side.