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