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