summaryrefslogtreecommitdiff
path: root/stmhal/usb.c
AgeCommit message (Expand)Author
2017-05-06stmhal: Convert all module and method tables to use MP_ROM macros.Damien George
2017-02-16py: Add iter_buf to getiter type method.Damien George
2017-02-15stmhal: Use generic interrupt char code.Damien George
2017-01-19stmhal: Implement ioctl for USB HID read.Pavol Rusnak
2017-01-19stmhal: Fix USB HID receive not receiving the first packet.Pavol Rusnak
2017-01-04all: Consistently update signatures of .make_new and .call methods.Paul Sokolovsky
2016-12-15stmhal: Use core-provided keyboard exception object.Damien George
2016-12-15stmhal/usb: Always use the mp_kbd_exception object for VCP interrupt.Damien George
2016-12-15stmhal: Rename mp_const_vcp_interrupt to mp_kbd_exception.Damien George
2016-12-02py/stream: Move ad-hoc ioctl constants to stream.h and rename them.Damien George
2016-11-14all: Remove readall() method, which is equivalent to read() w/o args.Paul Sokolovsky
2016-10-04stmhal/usb: Add support to receive USB HID messages from host.Philip Potter
2016-06-18all: Rename mp_obj_type_t::stream_p to protocol.Paul Sokolovsky
2016-05-10stmhal: Convert to use internal errno symbols; enable uerrno module.Damien George
2016-01-11py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*.Damien George
2015-12-30stmhal: Fix USB on the STM32F429DISC boardDave Hylands
2015-12-09stmhal: Enable two USB phys to be supported together.neilh10
2015-10-25stmhal: Fix USB_VCP.recv so that it returns actual amount of bytes read.Damien George
2015-10-11py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming.Paul Sokolovsky
2015-10-09stmhal: Fix USB CDC-only mode under Windows.Dave Hylands
2015-09-03stmhal: add option to query for the current usb modeTony Abboud
2015-05-13stmhal: Add readinto and readlines methods to sys.stdin, pyb.USB_VCP().Damien George
2015-04-16py: Overhaul and simplify printf/pfenv mechanism.Damien George
2015-04-13stmhal: In USB HID driver, make polling interval configurable.Damien George
2015-02-13stmhal: Properly define pyb.usb_mode() semantics.Damien George
2015-02-13stmhal: Add "CDC" option to pyb.usb_mode, for CDC device only.Damien George
2015-02-13stmhal: Add Python-configurable USB HID mode.Damien George
2015-01-21py: Remove mp_obj_str_builder and use vstr instead.Damien George
2015-01-07stmhal: Collect all root pointers together in 1 place.Damien George
2015-01-01stmhal: Prefix includes with py/; remove need for -I../py.Damien George
2014-11-29stmhal: Add USB_VCP.setinterrupt method, to disable CTRL-C.Damien George
2014-11-27stmhal: Reduce coupling between USB driver and readline.Damien George
2014-11-17stream: Convert .ioctl() to take fixed number of args.Paul Sokolovsky
2014-10-31stmhal: Add ioctl to USB_VCP object, so it works with select.Damien George
2014-10-25py: Add mp_pending_exception global variable, for VM soft interrupt.Damien George
2014-10-25stmhal: Change USB PID when in CDC+HID mode.Damien George
2014-08-30Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George
2014-08-26stmhal: Hookup USB_VCP.any().Damien George
2014-08-04stmhal: Clean up reset/soft-reset code; fix bug init'ing VCP exc.Damien George
2014-08-02stmhal: Add more documentation for USB_VCP.Damien George
2014-08-02stmhal: Add documentation for LCD; update docs for USB_VCP.Damien George
2014-07-31stmhal: Add USB_VCP class/object, for direct USB VCP control.Damien George
2014-07-20stmhal: Fix REPL printing by cooking output sent to stdout_obj.Damien George
2014-06-15stmhal: Update and improve LCD driver.Damien George
2014-05-21stmhal: Stop USB before entering DFU by software.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-04-12stmhal: Put a USB structure in ROM; GC doesn't scan the data segment.Damien George
2014-03-30stmhal: Unify naming of HW config; make SD detect configurable.Damien George
2014-03-30stmhal: Implement selector for USB device mode; improve boot up.Damien George
2014-03-29stmhal: Add CDC+HID USB device.Damien George