aboutsummaryrefslogtreecommitdiff
path: root/extmod
AgeCommit message (Expand)Author
2020-04-02extmod/uasyncio: Implement Loop.stop() to stop the event loop.Damien George
2020-04-01extmod/uasyncio: Don't create a Loop instance in get_event_loop().Damien George
2020-03-30all: Fix implicit casts of float/double, and signed comparison.David Lechner
2020-03-28all: Remove spaces inside and around parenthesis.Damien George
2020-03-27unix: Implement PEP 475 to retry syscalls failing with EINTR.David Lechner
2020-03-26extmod/uasyncio: Add manifest.py for freezing uasyncio Py files.Damien George
2020-03-26extmod/uasyncio: Add optional implementation of core uasyncio in C.Damien George
2020-03-26extmod/uasyncio: Add new implementation of uasyncio module.Damien George
2020-03-25extmod/vfs_posix_file: Include unistd.h to get STD{IN,OUT,ERR}_FILENO.David Lechner
2020-03-18unix: Remove custom file implementation to use extmod's VFS POSIX one.Damien George
2020-03-18extmod/vfs_posix_file: Lock GIL when writing and allow stdio flush.Damien George
2020-03-18all: Convert exceptions to use mp_raise_XXX helpers in remaining places.Damien George
2020-03-18extmod/modlwip: Properly handle non-blocking and timeout on UDP recv.Damien George
2020-03-18extmod/modlwip: Fix polling of UDP socket so it doesn't return HUP.Damien George
2020-03-11extmod/vfs: Factor out vfs mount-and-chdir helper from stm32.Damien George
2020-03-11extmod/nimble: When getting BLE MAC try public address if random fails.Damien George
2020-03-11extmod/modbluetooth: Change scan result's "connectable" to "adv_type".Damien George
2020-03-11extmod/modbluetooth: Unify error handling in remaining places.Thomas Friebel
2020-03-11extmod/nimble: Clarify active state and check for active in all methods.Jim Mussared
2020-03-10stm32: Refactor Bluetooth HCI RX to be independent of transport layer.Damien George
2020-03-10extmod/btstack: Implement notifications/indications for GATT clients.Damien George
2020-03-10extmod/btstack: Implement scan and gatt client, connect and disconnect.Damien George
2020-03-10extmod/btstack: Implement gatts_db for btstack.Damien George
2020-03-10extmod/btstack: Implement service registration.Damien George
2020-03-10extmod/btstack: Implement advertising.Damien George
2020-03-10extmod/btstack: Add empty modbluetooth implementation.Damien George
2020-03-10extmod/modbluetooth: Extract out gatts_db functionality from nimble.Damien George
2020-03-10stm32: Refactor bluetooth stack/hci/driver bindings.Damien George
2020-03-06extmod/modbluetooth_nimble: Move nimble specific code, factor nimble.mk.Damien George
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2020-02-21extmod/modframebuf: Allow blit source to be a subclass of FrameBuffer.Jim Mussared
2020-02-18extmod/modbluetooth_nimble: Fix wrong offset used for descriptor flags.Jim Mussared
2020-02-18extmod/modbluetooth.h: Fix typo in comment about registering services.Jim Mussared
2020-02-18extmod/modbluetooth: Implement config getter for BLE rxbuf size.Thomas Friebel
2020-02-18py: Factor out definition of mp_float_union_t to one location.Damien George
2020-02-13py: Add mp_raise_msg_varg helper and use it where appropriate.Damien George
2020-02-13py: Add mp_raise_type helper macro and use it where appropriate.Damien George
2020-01-26extmod/vfs_posix: Release GIL during system calls.David Lechner
2020-01-09py: Make mp_obj_get_type() return a const ptr to mp_obj_type_t.Damien George
2019-12-27extmod/modbluetooth: Fix func prototype, empty args should be (void).Yonatan Goldschmidt
2019-12-27extmod: Fix modbluetooth and modwebrepl to build in nanbox mode.Damien George
2019-12-27py: Introduce MP_ROM_FALSE/MP_ROM_TRUE for ROM to refer to bool objects.Damien George
2019-12-27py: Introduce MP_ROM_NONE macro for ROM to refer to None object.Damien George
2019-12-23extmod/uzlib: Explicitly cast ptr-diff-expr to unsigned.Damien George
2019-12-20extmod/webrepl: Move webrepl scripts to common place and use manifest.Jim Mussared
2019-12-13examples/natmod: Add urandom native module example.Damien George
2019-12-12extmod: Add dynamic-runtime guards to btree/framebuf/uheapq/ure/uzlib.Damien George
2019-12-12extmod/modbtree: Use mp_printf instead of printf.Damien George
2019-12-05extmod/modbluetooth: Allow setting ringbuf size via BLE.config(rxbuf=).Damien George
2019-12-04extmod/modbluetooth: Add optional 4th arg to gattc_write for write mode.Damien George