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
There's an error in the SDK 2.0.0 version
pico-sdk/src/rp2_common/hardware_pwm/include/hardware/pwm.h
Line 658 in efe2103
There needs to be a , "" added
, ""
/tmp/pico-sdk/src/rp2_common/hardware_pwm/include/hardware/pwm.h: In function 'pwm_set_irq_mask_enabled': /tmp/pico-sdk/src/rp2_common/hardware_pwm/include/hardware/pwm.h:658:55: error: expected ',' before ')' token static_assert(PWM_IRQ_WRAP_1 == PWM_IRQ_WRAP_0 + 1); ^ ,
I solved this by changing the line to
static_assert(PWM_IRQ_WRAP_1 == PWM_IRQ_WRAP_0 + 1, "");
This only happen when using the RP2350
The text was updated successfully, but these errors were encountered:
This seems to be a duplicate of #1788 ? (which was fixed on the develop branch by 424e21e )
develop
Sorry, something went wrong.
No branches or pull requests
There's an error in the SDK 2.0.0 version
pico-sdk/src/rp2_common/hardware_pwm/include/hardware/pwm.h
Line 658 in efe2103
There needs to be a
, ""
addedI solved this by changing the line to
This only happen when using the RP2350
The text was updated successfully, but these errors were encountered: