summaryrefslogtreecommitdiff
path: root/extmod
AgeCommit message (Expand)Author
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
2019-12-04stm32/mpconfigport.h: Use IRQ_PRI_PENDSV to protect bluetooth ringbuf.Damien George
2019-12-02extmod/modbluetooth: Remove limit on data coming from gattc data input.Damien George
2019-12-02extmod/modbluetooth: Simplify how BLE IRQ callback is scheduled.Damien George
2019-11-26extmod/vfs_lfs: Fix bug when passing no args to constructor and mkfs.Damien George
2019-11-26extmod/vfs_lfs: Pass flag along to ioctl when init'ing bdev for lfs.Damien George
2019-11-25extmod/modbluetooth: Simplify management of pre-allocated event data.Jim Mussared
2019-11-25extmod/modbluetooh_nimble: Fix UUID conversion for 16 and 32 bit values.Jim Mussared
2019-11-25extmod/modbluetooth_nimble: Make gap_scan_stop no-op if no scan ongoing.Jim Mussared