We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
__init__
often init is well documented , where init is not This is seen on multiple classess
init
for example _rp2.StateMachine ¶
_rp2.StateMachine
The constructor has minimal documentation rp2.StateMachine(id[, program, ...])
def __init__(self, id, program, *args, **kwargs) -> None: ...
While the init function has ample documentation.
StateMachine.init(program, freq=-1, *, in_base=None, out_base=None, set_base=None, jmp_pin=None, sideset_base=None, in_shiftdir=None, out_shiftdir=None, push_thresh=None, pull_thresh=None)
def init( self, program, freq=-1, *, in_base=None, out_base=None, set_base=None, jmp_pin=None, sideset_base=None, in_shiftdir=None, out_shiftdir=None, push_thresh=None, pull_thresh=None, ) -> None:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
often
init
is well documented , where init is notThis is seen on multiple classess
for example
_rp2.StateMachine
¶The constructor has minimal documentation
rp2.StateMachine(id[, program, ...])
While the
init
function has ample documentation.StateMachine.init(program, freq=-1, *, in_base=None, out_base=None, set_base=None, jmp_pin=None, sideset_base=None, in_shiftdir=None, out_shiftdir=None, push_thresh=None, pull_thresh=None)
The text was updated successfully, but these errors were encountered: