Using circuitPython on Feather m0 basic, I'm unable to use Board pins 10 and 11 as PWM outs at the same time.
They both work with pwmio.PWMOut()
separately, but If I try to initialize both of them at the same time the program crashes.
I found that these are the UART pins. Is there a way to configure these pins to both be PWM outs at the same time?
I'm not sure exactly which pins you are referring to but this looks fine on CircuitPython
6.0.1
on an Adafruit Feather M0 Bluefruit, an example from REPL:How does yours differ from that? What's the error message?
Are you using
variable_frequency
or specifying different frequencies? That causes more hardware counters to be used under the covers.