aboutsummaryrefslogtreecommitdiff
path: root/stm/pybwlan.c
AgeCommit message (Collapse)Author
2014-05-21stm: Remove long-obsolete stm/ port.Damien George
2014-04-05py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George
This does not affect code size or performance when debugging turned off. To address issue #420.
2014-03-30Merge map.h into obj.h.Damien George
Pretty much everyone needs to include map.h, since it's such an integral part of the Micro Python object implementation. Thus, the definitions are now in obj.h instead. map.h is removed.
2014-02-12Remove mp_obj_new_exception_msg_1_arg and _2_arg.Damien George
2014-01-21Revamp qstrs: they now include length and hash.Damien George
Can now have null bytes in strings. Can define ROM qstrs per port using qstrdefsport.h
2014-01-19stm: Upgrade to latest CMSIS libraries.Damien George
CMSIS V3.01 -> V3.20. Now in stm/cmsis to keep separate from ST libraries.
2014-01-13Consolidate rt_make_function_[0123] to rt_make_function_n.Damien George
2014-01-09py: Implement base class lookup, issubclass, isinstance.Damien George
2014-01-09Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr.Damien George
Creating of classes (types) and instances is much more like CPython now. You can use "type('name', (), {...})" to create classes.
2014-01-08py: Stuff qstr in object pointer; keys for mp_map_t are now always mp_obj_t.Damien George
2014-01-03Change mp_compile so that it returns a function object for the module.Damien George
2014-01-03Change old use of module creation to new proper use.Damien George
2013-12-29Change memory allocation API to require size for free and realloc.Damien
2013-12-21stm: Tidy up some wlan code.Damien
2013-12-21Change object representation from 1 big union to individual structs.Damien
A big change. Micro Python objects are allocated as individual structs with the first element being a pointer to the type information (which is itself an object). This scheme follows CPython. Much more flexible, not necessarily slower, uses same heap memory, and can allocate objects statically. Also change name prefix, from py_ to mp_ (mp for Micro Python).
2013-12-05stm: initial commit of working CC3000 driver, based on Adafruit.Damien