why i got this error?
In [34]: dump_errors
Out[34]: <function odrive.utils.dump_errors(odrv, clear=False, printfunc=)>
It’s a function call, you need to pass in the odrive object i.e. put (odrv0)
on the end.
And to reset errors after displaying them, pass True as a second argument i.e.
dump_errors(odrv0, True)
1 Like