We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06a9bed commit 2cc6005Copy full SHA for 2cc6005
src/genpinmap/genpinmap_arduino.py
@@ -878,7 +878,7 @@ def parse_pins():
878
store_adc(pin, name, sig)
879
if all(["DAC" in sig, "_OUT" in sig]):
880
store_dac(pin, name, sig)
881
- if "I2C" in sig:
+ if re.match("^I2C", sig) is not None: # ignore FMPI2C
882
store_i2c(pin, name, sig)
883
if re.match("^TIM", sig) is not None: # ignore HRTIM
884
store_pwm(pin, name, sig)
0 commit comments