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
I found that if Strobe Frequency is Int<0> it causes the board to hard lock up, no errors or warnings from arduino,
STROBE_FREQUENCY cannot be 0. Causes a Divide by 0 error in ProffieOS\functions\strobe.h line 21:
(uint32_t timeout = strobe_ ? strobe_millis : (1000 / strobe_frequency);)
and line 24:
if (m - strobe_start_ > strobe_millis + (1000 / strobe_frequency))
The text was updated successfully, but these errors were encountered:
Fix in 1211344
Sorry, something went wrong.
No branches or pull requests
I found that if Strobe Frequency is Int<0> it causes the board to hard lock up, no errors or warnings from arduino,
STROBE_FREQUENCY cannot be 0. Causes a Divide by 0 error in ProffieOS\functions\strobe.h line 21:
(uint32_t timeout = strobe_ ? strobe_millis : (1000 / strobe_frequency);)
and line 24:
if (m - strobe_start_ > strobe_millis + (1000 / strobe_frequency))
The text was updated successfully, but these errors were encountered: