556 Commits (746b752b8efd089c8dd37e615949315973a8d370)

Author SHA1 Message Date
Paul Sokolovsky 6e68a68d18 unix/gccollect: Fallback to setjmp-based register fetching automatically. 9 years ago
Paul Sokolovsky 06f70973f7 unix/unix_mphal: Typo fix in comment. 9 years ago
Damien George 731f359292 all: Add py/mphal.h and use it in all ports. 9 years ago
Paul Sokolovsky 404dae80a9 unix, stmhal: Introduce mp_hal_delay_ms(), mp_hal_ticks_ms(). 9 years ago
Paul Sokolovsky 91f2168dd5 unix/modjni: Actually check argument type when doing method resolution. 9 years ago
Paul Sokolovsky 9ebd4dabf2 unix/modjni: Don't pass Java object to a method which doesn't expect it. 9 years ago
Paul Sokolovsky 8e6e9eaea5 unix: Use "Ctrl" as a name of the key, not "CTRL". 9 years ago
Paul Sokolovsky 2c040edef8 libffi: Skip building docs. 9 years ago
Paul Sokolovsky 39a380b621 unix/modos: Android Bionic lacks statvfs(), has BSD statfs(). 9 years ago
Paul Sokolovsky e0f5df579b all: Make netutils.h available to all ports by default. 9 years ago
Paul Sokolovsky 8ee153f234 unix/modtime: Implement ticks_ms(), ticks_us() and ticks_diff(). 9 years ago
Paul Sokolovsky fd379db286 unix/modtime: Implement sleep_ms(), sleep_us(). 9 years ago
Paul Sokolovsky 949c5c9180 unix/unix_mphal: Implement HAL_Delay() and HAL_GetTick(). 9 years ago
Paul Sokolovsky 2ca7b05552 unix/modos: Checking config macros requires mpconfig.h. 9 years ago
Paul Sokolovsky f8e9ef5cd0 unix/modos: Guard sys/statvfs.h include with MICROPY_PY_OS_STATVFS check. 9 years ago
Paul Sokolovsky c3000b6f69 unix/modos: Add statvfs() function. 9 years ago
Paul Sokolovsky 6ec6f51326 unix: Build libffi in a directory which is gitgnored. 9 years ago
Damien George 556c8a9a4f unix: Fix coverage build now that mp_plat_print uses write. 9 years ago
Damien George 4300c7dba2 py: Remove dependency on printf/fwrite in mp_plat_print. 9 years ago
Paul Sokolovsky 74d0df7324 unix: Allow to build against Android down to 1.5. 9 years ago
Paul Sokolovsky fe29cc192d unix/modjni: Add iteration support for Java List objects. 9 years ago
Paul Sokolovsky 41eb705477 unix/modjni: call_method: Check for Java exception after method return. 9 years ago
Paul Sokolovsky 21f43ba9b0 unix/modtermios: tcsetattr: If 0 passed for "when" param, treat as TCSANOW. 9 years ago
Damien George 3aa7dd23c9 unix: Add exit and paste-mode hints to shell startup banner. 9 years ago
Damien George 0334058fa4 Rename "Micro Python" to "MicroPython" in REPL, help, readme's and misc. 9 years ago
Damien George 46a1102852 repl: Add paste mode to friendly REPL, entered via CTRL-E. 9 years ago
Paul Sokolovsky 1b586f3a73 py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 9 years ago
Anmol Sarma 95b352064e unix/modsocket: Fix usage of pointers to locals outside scope 9 years ago
Paul Sokolovsky 7381b7ac71 unix/modjni: py2jvalue: Support bool and None values. 9 years ago
Paul Sokolovsky 02041bf2e0 unix/modjni: jvalue2py() is currently not used. 9 years ago
Paul Sokolovsky 216b6a494e unix/modjni: Allow to access fields of objects. 9 years ago
Paul Sokolovsky fd38799049 unix/modjni: After Call*Method(), Java exception should always be checked. 9 years ago
Paul Sokolovsky aaa8867d4a modussl: SSL socket wrapper module based on axTLS. 9 years ago
Paul Sokolovsky 326ff54649 unix: Add support for building axtls dependency lib. 9 years ago
Paul Sokolovsky 1ea4b77a9a unix/modjni: jclass.__str__/__repr__: Return Java .toString() value. 9 years ago
Paul Sokolovsky f22be4ebd9 unix/modjni: jobject.__str__/__repr__: Return Java .toString() value. 9 years ago
Paul Sokolovsky 9e0a3d46b6 unix/modjni: Convert Java's IndexOutOfBoundsException to Python's IndexError. 9 years ago
Damien George 58e0f4ac50 py: Allocate parse nodes in chunks to reduce fragmentation and RAM use. 9 years ago
Damien George a81539db25 tests: Add further tests for mpz code. 9 years ago
Paul Sokolovsky c4489a0543 unix/modjni: Propagate Java exceptions on list access. 9 years ago
Paul Sokolovsky 0eba162ab5 unix/modjni: Fix method argument matching. 9 years ago
Paul Sokolovsky f3ca8623f7 unix/modjni: Implement len() for objects with java.util.List interface. 9 years ago
Paul Sokolovsky 77020281ae unix/modjni: call_method: Delete done local references in loop. 9 years ago
Paul Sokolovsky 0d28a3edb9 unix/modjni: call_method: Better resource release. 9 years ago
Paul Sokolovsky 81d64ab939 unix/modjni: call_method(): If name doesn't match, cleanup via goto next_method. 9 years ago
Paul Sokolovsky c0a79cc919 unix/modjni: Need to really use per-rettype Call*Method functions. 9 years ago
Paul Sokolovsky 7e18d3b6ff unix/modjni: new_jobject(): Handle null reference. 9 years ago
Paul Sokolovsky e632b1fda7 unix/modjni: Factor out is_object_type(). 9 years ago
Vicente Olivert Riera 587914169c unix/modffi.c: cast first to intptr_t when casting from/to pointer 9 years ago
Paul Sokolovsky ed22e9ba3e unix/modjni: Move type analysis logic to new_jobject(), for reuse. 9 years ago