moductypes: Foreign data interface module, roughly based on ctype ideas.

But much smaller and memory-efficient. Uses Python builtin data structures
(dict, tuple, int) to describe structure layout.
This commit is contained in:
Paul Sokolovsky
2014-06-28 03:03:47 +03:00
parent 42b6419056
commit 8215847b4d
18 changed files with 974 additions and 0 deletions

View File

@@ -80,3 +80,6 @@ extern const mp_obj_module_t mp_module_micropython;
extern const mp_obj_module_t mp_module_struct;
extern const mp_obj_module_t mp_module_sys;
extern const mp_obj_module_t mp_module_gc;
// extmod modules
extern const mp_obj_module_t mp_module_uctypes;