aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2014-03-12Fix reallocmux
2014-03-10Rename formatfloat file; remove MICROPY_ENABLE_FLOAT from mpconfigport.h.Damien George
2014-03-10Merge branch 'format-float' of github.com:dhylands/micropython into dhylands-...Damien George
2014-03-10Merge pull request #335 from dhylands/fix-makeqstrdataDamien George
2014-03-10Add proper floating point printing support.Dave Hylands
2014-03-10Fix makeqstrdata.py to work in Python 2.7Dave Hylands
2014-03-09stm: Add DMA support to Audio object.Damien George
2014-03-09py: Make objstr support buffer protocol (read only).Damien George
2014-03-09py: Fix printing of type name.Damien George
2014-03-08unix: Make usage info reflect actual usage of -X option.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-08Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-08stm: Add udelay (delay in microseconds).Damien George
2014-03-08stm: Improve DAC (audio) bindings.Damien George
2014-03-08py: Wrap mpz float functions in MICROPY_ENABLE_FLOAT.Damien George
2014-03-08makeqstrdata: print error to stderr.Damien George
2014-03-07py: Revert to old gc_realloc for now.Damien George
2014-03-06py: Add comments to new gc_realloc, it has some bugs.Damien George
2014-03-06py: Small cosmetic changes to gc_realloc.Damien George
2014-03-05Merge pull request #334 from iabdalkader/reallocDamien George
2014-03-05Fix gc_realloc to expand in placemux
2014-03-04unix: Add to usage print-out telling about -X option.Damien George
2014-03-04Merge pull request #333 from pfalcon/heapsize-cmdlineDamien George
2014-03-04unix: Allow to set heap size using "-X heapsize=N" option.Paul Sokolovsky
2014-03-03py: Fix overriding of default arguments.Damien George
2014-03-03py: Unify syntax error handling in compiler; check defualt arg syntax.Damien George
2014-03-03py: Factor and improve issubclass.Damien George
2014-03-03Merge pull request #332 from pfalcon/namedtupleDamien George
2014-03-03namedtuple: Inherit unary/binary ops from tuple base class.Paul Sokolovsky
2014-03-03Add mp_obj_is_subclass_fast() - intended for fast argument checking.Paul Sokolovsky
2014-03-03Add basic collections.namedtuple implementation.Paul Sokolovsky
2014-03-03unix: Add GC support for ARM architecture.Paul Sokolovsky
2014-03-02Merge pull request #331 from iabdalkader/masterDamien George
2014-03-02Implement machine_sqrt using VSQRTmux
2014-03-01Merge pull request #330 from pfalcon/cortex-aDamien George
2014-03-01py: Implement bit-shift and not operations for mpz.Damien George
2014-03-01nlrthumb.S: Comment out ".cpu cortex-m4", it causes problems on Cortex-A.Paul Sokolovsky
2014-03-01nlr.h: Do proper arch selection, using the same tests as nlr*.S .Paul Sokolovsky
2014-02-28MICROPY_USE_READLINE: Selects link lib, so should be defined in mpconfigport.mkPaul Sokolovsky
2014-02-27Merge pull request #329 from dhylands/exti-cleanupDamien George
2014-02-26Remove param from python API of ext_registerDave Hylands
2014-02-26GC: Fix printf formats for debugging; add gc_dump_alloc_table.Damien George
2014-02-26py: Remove more var arg names fro macros with var args.Damien George
2014-02-26py: Reduce size of mp_obj_fun_native_t struct by packing ints.Damien George
2014-02-26py: Take out bitfield entries from their own structure.Damien George
2014-02-26stm: Reinstate code to handle CC3000 EXTI (commented out for now).Damien George
2014-02-26py: Remove name of var arg from macros with var args.Damien George
2014-02-26py: Start to implement shl/shr for mpz. Fix return void.Damien George