mirror of https://github.com/ARMmbed/mbed-os.git
Modified STM32_gen_PeripheralPins.py replaced GPIO_PULLUP with GPIO_NOPULL in print_pwm function
parent
d8d19b186d
commit
44be594792
|
@ -809,7 +809,7 @@ def print_pwm():
|
||||||
chan = chan.strip('N')
|
chan = chan.strip('N')
|
||||||
else:
|
else:
|
||||||
neg = ', 0'
|
neg = ', 0'
|
||||||
s1 += 'STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, '
|
s1 += 'STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, '
|
||||||
r = result.split(' ')
|
r = result.split(' ')
|
||||||
prev_s1 = ""
|
prev_s1 = ""
|
||||||
for af in r:
|
for af in r:
|
||||||
|
|
Loading…
Reference in New Issue