You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wondered why my gate inputs seemed delayed when triggered and
I had to modify the source of daisy_versio.cpp to get it to work properly:
from gate.Init(&gate_gpio); to gate.Init(&gate_gpio, false);
because in gatein.h void Init(dsy_gpio_pin *pin_cfg, bool invert = true); is by default and this leads to this confusion.
cheers!
The text was updated successfully, but these errors were encountered:
Hey,
I wondered why my gate inputs seemed delayed when triggered and
I had to modify the source of daisy_versio.cpp to get it to work properly:
from
gate.Init(&gate_gpio);
togate.Init(&gate_gpio, false);
because in gatein.h
void Init(dsy_gpio_pin *pin_cfg, bool invert = true);
is by default and this leads to this confusion.cheers!
The text was updated successfully, but these errors were encountered: