summaryrefslogtreecommitdiffstatshomepage
path: root/extmod/machine_signal.c
Commit message (Expand)AuthorAge
* extmod/modmachine: Add MICROPY_PY_MACHINE_SIGNAL configuration option.Damien George2024-03-15
* all: Remove the "STATIC" macro and just use "static" instead.Angus Gratton2024-03-07
* extmod/modmachine: Consolidate simple machine headers into modmachine.h.Damien George2023-10-26
* py/obj: Convert make_new into a mp_obj_type_t slot.Jim Mussared2022-09-19
* py/obj: Add accessors for type slots and use everywhere.Jim Mussared2022-09-19
* all: Remove unnecessary locals_dict cast.Jim Mussared2022-09-19
* all: Make all mp_obj_type_t defs use MP_DEFINE_CONST_OBJ_TYPE.Jim Mussared2022-09-19
* all: Use mp_obj_malloc everywhere it's applicable.Jim Mussared2022-05-03
* all: Reformat C and Python source code with tools/codeformat.py.Damien George2020-02-28
* extmod/machine_signal: Fix fault when no args are passed to Signal().Damien George2019-04-26
* extmod: Convert legacy uppercase macro names to lowercase.Damien George2019-02-12
* extmod/machine_signal: Change VLA to use new scoped allocation API.Damien George2017-12-11
* extmod/machine_signal: Fix parsing of invert arg when Pin is first arg.Damien George2017-07-26
* extmod/machine_signal: Rename "inverted" arg to "invert", it's shorter.Damien George2017-04-15
* extmod/machine_signal: Support all Pin's arguments to the constructor.Paul Sokolovsky2017-04-11
* extmod/machine_signal: Implement Signal .on() and .off() methods.Paul Sokolovsky2017-02-08
* extmod/machine_signal: Implement "signal" abstraction for machine module.Paul Sokolovsky2017-01-29