diff options
author | Damien George <damien.p.george@gmail.com> | 2014-10-12 23:35:38 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-10-12 23:35:38 +0100 |
commit | 4b71c056efef42d8bb81b980e0fd53ec0597249d (patch) | |
tree | 68e075237bbf752f3d1289349d87ff9b897629fe | |
parent | 29f56826218b3df81eeeaa6e1cdc36890a836e87 (diff) |
moduzlib: Fix fn prototype and some code style; use it in stmhal port.
-rw-r--r-- | extmod/moduzlib.c | 7 | ||||
-rw-r--r-- | stmhal/mpconfigport.h | 4 | ||||
-rw-r--r-- | stmhal/qstrdefsport.h | 1 |
3 files changed, 7 insertions, 5 deletions
diff --git a/extmod/moduzlib.c b/extmod/moduzlib.c index e0352b454..3659d518c 100644 --- a/extmod/moduzlib.c +++ b/extmod/moduzlib.c @@ -48,8 +48,7 @@ #define DEBUG_printf(...) (void)0 #endif -STATIC int mod_uzlib_grow_buf(TINF_DATA *d, unsigned alloc_req) -{ +STATIC int mod_uzlib_grow_buf(TINF_DATA *d, unsigned alloc_req) { if (alloc_req < 256) { alloc_req = 256; } @@ -59,7 +58,7 @@ STATIC int mod_uzlib_grow_buf(TINF_DATA *d, unsigned alloc_req) return 0; } -STATIC mp_obj_t mod_uzlib_decompress(uint n_args, mp_obj_t *args) { +STATIC mp_obj_t mod_uzlib_decompress(mp_uint_t n_args, const mp_obj_t *args) { mp_obj_t data = args[0]; mp_buffer_info_t bufinfo; mp_get_buffer_raise(data, &bufinfo, MP_BUFFER_READ); @@ -112,4 +111,4 @@ const mp_obj_module_t mp_module_uzlib = { #include "uzlib/tinfzlib.c" #include "uzlib/adler32.c" -#endif //MICROPY_PY_UZLIB +#endif // MICROPY_PY_UZLIB diff --git a/stmhal/mpconfigport.h b/stmhal/mpconfigport.h index 591681605..a63263132 100644 --- a/stmhal/mpconfigport.h +++ b/stmhal/mpconfigport.h @@ -57,7 +57,7 @@ #define MICROPY_PY_IO (1) #define MICROPY_PY_IO_FILEIO (1) #define MICROPY_PY_UCTYPES (1) -#define MICROPY_PY_ZLIBD (1) +#define MICROPY_PY_UZLIB (1) #define MICROPY_PY_UJSON (1) #define MICROPY_PY_URE (1) @@ -77,6 +77,7 @@ extern const struct _mp_obj_fun_builtin_t mp_builtin_open_obj; extern const struct _mp_obj_module_t pyb_module; extern const struct _mp_obj_module_t stm_module; extern const struct _mp_obj_module_t mp_module_ure; +extern const struct _mp_obj_module_t mp_module_uzlib; extern const struct _mp_obj_module_t mp_module_ujson; extern const struct _mp_obj_module_t mp_module_uos; extern const struct _mp_obj_module_t mp_module_utime; @@ -95,6 +96,7 @@ extern const struct _mp_obj_module_t mp_module_network; #define MICROPY_PORT_BUILTIN_MODULE_WEAK_LINKS \ { MP_OBJ_NEW_QSTR(MP_QSTR_re), (mp_obj_t)&mp_module_ure }, \ + { MP_OBJ_NEW_QSTR(MP_QSTR_zlib), (mp_obj_t)&mp_module_uzlib }, \ { MP_OBJ_NEW_QSTR(MP_QSTR_json), (mp_obj_t)&mp_module_ujson }, \ { MP_OBJ_NEW_QSTR(MP_QSTR_os), (mp_obj_t)&mp_module_uos }, \ { MP_OBJ_NEW_QSTR(MP_QSTR_time), (mp_obj_t)&mp_module_utime }, \ diff --git a/stmhal/qstrdefsport.h b/stmhal/qstrdefsport.h index 2cb586b0b..075cfe2f7 100644 --- a/stmhal/qstrdefsport.h +++ b/stmhal/qstrdefsport.h @@ -73,6 +73,7 @@ Q(elapsed_micros) // for module weak links Q(re) +Q(zlib) Q(json) // for file class |