We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63e4529 commit 95b3e72Copy full SHA for 95b3e72
1 file changed
tests/extmod_hardware/machine_pwm.py
@@ -20,7 +20,9 @@
20
timing_margin_us = 5
21
22
# Configure pins based on the target.
23
-if "esp32" in sys.platform:
+if "alif" in sys.platform:
24
+ pwm_pulse_pins = (("P0_4", "P0_5"),)
25
+elif "esp32" in sys.platform:
26
pwm_pulse_pins = ((4, 5),)
27
freq_margin_per_thousand = 2
28
duty_margin_per_thousand = 1
0 commit comments