We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0eb284d commit ecf03ebCopy full SHA for ecf03eb
1 file changed
CI/utils/templates/stm32yyxx_zz_ppp.c
@@ -1,3 +1,9 @@
1
+{% if type == "ll" %}
2
+/* LL raised several warnings, ignore them */
3
+#pragma GCC diagnostic push
4
+#pragma GCC diagnostic ignored "-Wunused-parameter"
5
+
6
+{% endif %}
7
{% for serie in serieslist %}
8
{% if loop.first %}
9
#ifdef STM32{{serie.upper()}}xx
@@ -13,4 +19,7 @@
13
19
#endif
14
20
{% endif %}
15
21
{% endfor %}
22
23
+#pragma GCC diagnostic pop
24
16
25
0 commit comments