Modified STM32_gen_PeripheralPins.py replaced GPIO_PULLUP with GPIO_NOPULL in print_pwm function

pull/14521/head
Anish Kumar 2021-04-08 17:09:13 +05:30
parent d8d19b186d
commit 44be594792
1 changed files with 1 additions and 1 deletions

View File

@ -809,7 +809,7 @@ def print_pwm():
chan = chan.strip('N')
else:
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(' ')
prev_s1 = ""
for af in r: