summaryrefslogtreecommitdiff
path: root/stm
AgeCommit message (Expand)Author
2014-05-21stm: Remove long-obsolete stm/ port.Damien George
2014-05-10stm: Reorder mpconfig.h header inclusion to get stm building.Damien George
2014-04-20stm: Update to compile with latest changes to core py.Damien George
2014-04-17build: Simplify build directory layout by putting all headers in genhdr.Damien George
2014-04-16build directory can now be renamedAndrew Scheller
2014-04-13stm[hal]: Init mp_sys_path and mp_sys_argv correctly.Damien George
2014-04-08Add a check for NULL nlr_top in nlr_jump.Damien George
2014-04-08Improve REPL detecting when input needs to continue.Damien George
2014-04-07Replace some Makefile commands with variables in py/mkenv.mkAndrew Scheller
2014-04-06py: Add option to compiler to specify default code emitter.Damien George
2014-04-05py: Replace stream_p with *stream_p in mp_obj_type_t.Damien George
2014-04-05py: Change module globals from mp_map_t* to mp_obj_dict_t*.Damien George
2014-04-05Improve GC finalisation code; add option to disable it.Damien George
2014-04-05Merge pull request #425 from iabdalkader/delDamien George
2014-04-05py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George
2014-04-05Move del to localsmux
2014-04-03Implement delmux
2014-04-03py: Add "io" module.Paul Sokolovsky
2014-03-31py: Remove old "run time" functions that were 1 liners.Damien George
2014-03-30Merge map.h into obj.h.Damien George
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-26Remove mp_obj_type_t.methods entry and use .locals_dict instead.Damien George
2014-03-26Change mp_method_t.name from const char * to qstr.Damien George
2014-03-25Proper support for registering builtin modules in ROM.Damien George
2014-03-25Add mp_obj_module_registermux
2014-03-23stm/stmhal: Change gammaf to tgammaf.Damien George
2014-03-23Merge pull request #356 from iabdalkader/d2fDamien George
2014-03-22stm/stmhal: Add more math stubs.Damien George
2014-03-22Implement __aeabi_f2d and __aeabi_d2fmux
2014-03-21Disable some math functions until they work correctly.Damien George
2014-03-15Add vstr_ins and vstr_cut_out; improve stmhal readline.Damien George
2014-03-12stm: Add some floating-point math functions.Damien George
2014-03-10Rename formatfloat file; remove MICROPY_ENABLE_FLOAT from mpconfigport.h.Damien George
2014-03-10Add proper floating point printing support.Dave Hylands
2014-03-09stm: Add DMA support to Audio object.Damien George
2014-03-08stm: Put pyb module in ROM.Damien George
2014-03-08stm: Wrap some functions in MICROPY_ENABLE_FLOAT.Damien George
2014-03-08Implement ROMable modules. Add math module.Damien George
2014-03-08stm: Add udelay (delay in microseconds).Damien George
2014-03-08stm: Improve DAC (audio) bindings.Damien George
2014-03-02Implement machine_sqrt using VSQRTmux
2014-02-26Remove param from python API of ext_registerDave Hylands
2014-02-26stm: Reinstate code to handle CC3000 EXTI (commented out for now).Damien George
2014-02-26stm: Open header file in text mode (in make-pins).Damien George
2014-02-26Merge pull request #325 from dhylands/ledDamien George
2014-02-26Merge pull request #324 from dhylands/board-checkDamien George
2014-02-26Merge pull request #318 from dhylands/extiDamien George
2014-02-26Update LED configurationDave Hylands
2014-02-26Print an error if a non-valid BOARD is specified.Dave Hylands
2014-02-25Fix floating point printing of negative numbers in the range (0, -1.0)Dave Hylands