aboutsummaryrefslogtreecommitdiff
path: root/extmod/moductypes.c
AgeCommit message (Expand)Author
2017-04-21extmod/moductypes: Fix bigint handling for 32-bit ports.Paul Sokolovsky
2016-09-21extmod/uctypes: Allow full 32-bit address range.Stefan Agner
2016-09-22all: Remove 'name' member from mp_obj_module_t struct.Damien George
2016-03-19extmod/uctypes: Change param type from void* to byte*.Damien George
2016-03-19extmod/uctypes: Finish support for FLOAT32 and FLOAT64 types.Damien George
2016-03-19extmod/uctypes: Use mp_binary_get_val helper when extracting value.Damien George
2016-01-11py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*.Damien George
2016-01-11py: Change type of .make_new and .call args: mp_uint_t becomes size_t.Damien George
2016-01-10extmod: Fix uctypes size calculation for bitfieldsDave Hylands
2016-01-03uctypes: Implement assignment for scalar arrayAntonin ENFRUN
2015-12-09extmod/moductypes: sizeof operation depends on layout type of structure.Paul Sokolovsky
2015-12-04extmod/moductypes: set_aligned(): Handle INT64/UINT64.Paul Sokolovsky
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-11-29py: Add MP_ROM_* macros and mp_rom_* types and use them.Damien George
2015-10-28extmod/moductypes: When dealing with UINT64, use mp_obj_new_int_from_ull().Paul Sokolovsky
2015-10-26extmod/moductypes: Implement buffer protocol.Paul Sokolovsky
2015-06-06moductypes: Swap address and descriptor args in constructor.Paul Sokolovsky
2015-04-16py: Overhaul and simplify printf/pfenv mechanism.Damien George
2015-04-11py: Combine load_attr and store_attr type methods into one (attr).Damien George
2015-01-20py, unix: Allow to compile with -Wunused-parameter.Damien George
2015-01-12py, unix, lib: Allow to compile with -Wold-style-definition.Damien George
2015-01-01extmod: Prefix py/ for includes from py core directory.Damien George
2014-12-10py: Make functions static where appropriate.Damien George
2014-12-05py: Rename mp_obj_int_get to mp_obj_int_get_truncated; fix struct.pack.Damien George
2014-11-29Use MP_DEFINE_CONST_DICT macro to define module dicts.Damien George
2014-10-30moductypes: Make .sizeof() work with bytearrays.Paul Sokolovsky
2014-10-30moductypes: When dereferencing a field which is array of uint8, use bytearray.Paul Sokolovsky
2014-10-30moductypes: Make sure we can apply .sizeof() to all aggregate types.Paul Sokolovsky
2014-10-06py: Make mp_binary_set_val work on big endian machine.Damien George
2014-09-27Fix timer overflow code.Dave Hylands
2014-09-02extmod: Fix type-punned-ptr error.Damien George
2014-08-30Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George
2014-08-12stmhal: Enable moductypes by default.Damien George
2014-08-10moductypes: Remove debug inclusion of stdio.h .Paul Sokolovsky
2014-07-31py: Make MP_OBJ_NEW_SMALL_INT cast arg to mp_int_t itself.Damien George
2014-07-11moductypes: Add symbolic constants to specify bitfield position/length.Paul Sokolovsky
2014-07-09moductypes: Foreign data interface module, roughly based on ctype ideas.Paul Sokolovsky