summaryrefslogtreecommitdiff
path: root/unix
AgeCommit message (Expand)Author
2015-10-20unix: Use "Ctrl" as a name of the key, not "CTRL".Paul Sokolovsky
2015-10-19libffi: Skip building docs.Paul Sokolovsky
2015-10-19unix/modos: Android Bionic lacks statvfs(), has BSD statfs().Paul Sokolovsky
2015-10-19all: Make netutils.h available to all ports by default.Paul Sokolovsky
2015-10-19unix/modtime: Implement ticks_ms(), ticks_us() and ticks_diff().Paul Sokolovsky
2015-10-19unix/modtime: Implement sleep_ms(), sleep_us().Paul Sokolovsky
2015-10-19unix/unix_mphal: Implement HAL_Delay() and HAL_GetTick().Paul Sokolovsky
2015-10-18unix/modos: Checking config macros requires mpconfig.h.Paul Sokolovsky
2015-10-18unix/modos: Guard sys/statvfs.h include with MICROPY_PY_OS_STATVFS check.Paul Sokolovsky
2015-10-18unix/modos: Add statvfs() function.Paul Sokolovsky
2015-10-18unix: Build libffi in a directory which is gitgnored.Paul Sokolovsky
2015-10-15unix: Fix coverage build now that mp_plat_print uses write.Damien George
2015-10-15py: Remove dependency on printf/fwrite in mp_plat_print.Damien George
2015-10-15unix: Allow to build against Android down to 1.5.Paul Sokolovsky
2015-10-14unix/modjni: Add iteration support for Java List objects.Paul Sokolovsky
2015-10-14unix/modjni: call_method: Check for Java exception after method return.Paul Sokolovsky
2015-10-13unix/modtermios: tcsetattr: If 0 passed for "when" param, treat as TCSANOW.Paul Sokolovsky
2015-10-12unix: Add exit and paste-mode hints to shell startup banner.Damien George
2015-10-12Rename "Micro Python" to "MicroPython" in REPL, help, readme's and misc.Damien George
2015-10-11repl: Add paste mode to friendly REPL, entered via CTRL-E.Damien George
2015-10-11py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming.Paul Sokolovsky
2015-10-10unix/modsocket: Fix usage of pointers to locals outside scopeAnmol Sarma
2015-10-10unix/modjni: py2jvalue: Support bool and None values.Paul Sokolovsky
2015-10-09unix/modjni: jvalue2py() is currently not used.Paul Sokolovsky
2015-10-08unix/modjni: Allow to access fields of objects.Paul Sokolovsky
2015-10-07unix/modjni: After Call*Method(), Java exception should always be checked.Paul Sokolovsky
2015-10-06modussl: SSL socket wrapper module based on axTLS.Paul Sokolovsky
2015-10-04unix: Add support for building axtls dependency lib.Paul Sokolovsky
2015-10-04unix/modjni: jclass.__str__/__repr__: Return Java .toString() value.Paul Sokolovsky
2015-10-03unix/modjni: jobject.__str__/__repr__: Return Java .toString() value.Paul Sokolovsky
2015-10-02unix/modjni: Convert Java's IndexOutOfBoundsException to Python's IndexError.Paul Sokolovsky
2015-10-02py: Allocate parse nodes in chunks to reduce fragmentation and RAM use.Damien George
2015-10-01tests: Add further tests for mpz code.Damien George
2015-10-01unix/modjni: Propagate Java exceptions on list access.Paul Sokolovsky
2015-09-30unix/modjni: Fix method argument matching.Paul Sokolovsky
2015-09-29unix/modjni: Implement len() for objects with java.util.List interface.Paul Sokolovsky
2015-09-28unix/modjni: call_method: Delete done local references in loop.Paul Sokolovsky
2015-09-27unix/modjni: call_method: Better resource release.Paul Sokolovsky
2015-09-26unix/modjni: call_method(): If name doesn't match, cleanup via goto next_method.Paul Sokolovsky
2015-09-26unix/modjni: Need to really use per-rettype Call*Method functions.Paul Sokolovsky
2015-09-24unix/modjni: new_jobject(): Handle null reference.Paul Sokolovsky
2015-09-23unix/modjni: Factor out is_object_type().Paul Sokolovsky
2015-09-22unix/modffi.c: cast first to intptr_t when casting from/to pointerVicente Olivert Riera
2015-09-22unix/modjni: Move type analysis logic to new_jobject(), for reuse.Paul Sokolovsky
2015-09-21unix/modjni: Support for subscripting of Java lists (r/o so far).Paul Sokolovsky
2015-09-20unix/modjni: jvalue2py: Handle boolean.Paul Sokolovsky
2015-09-19unix: Use MICROPY_HAL_H macro for header inclusion.Alex March
2015-09-19unix/modjni: py2jvalue: Pass jobject's down to Java.Paul Sokolovsky
2015-09-18unix/modjni: py2jvalue: Handle both int and long java types (with TODO for lo...Paul Sokolovsky
2015-09-17unix/modjni: jvalue2py: Handle class-containing jvalues.Paul Sokolovsky