Skip to content

Commit ba91ee6

Browse files
committed
[genpinmap] Update indentation after Astyle ident-preproc-block addition
See: stm32duino/Arduino_Core_STM32#1007 Signed-off-by: Frederic Pillon <[email protected]>
1 parent e00d1d7 commit ba91ee6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/genpinmap/genpinmap_arduino.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -692,10 +692,10 @@ def print_syswkup_h():
692692
num = p[2].replace("SYS_WKUP", "")
693693
if len(num) == 0:
694694
s1 = "#ifdef PWR_WAKEUP_PIN1\n"
695-
s1 += "SYS_WKUP1" # single SYS_WKUP for this product
695+
s1 += " SYS_WKUP1" # single SYS_WKUP for this product
696696
else:
697697
s1 = "#ifdef PWR_WAKEUP_PIN%i\n" % (int(num) + inc)
698-
s1 += "SYS_WKUP" + str(int(num) + inc)
698+
s1 += " SYS_WKUP" + str(int(num) + inc)
699699
s1 += " = " + p[0] + ","
700700
if (inc == 1) and (p[0] != "NC"):
701701
s1 += " /* " + p[2] + " */"

0 commit comments

Comments
 (0)