examples: fix format errors, remove -Wno-format

Logging in series of examples has misuse of "%d" instead of type-appropriate format specifiers.
Fix by changing "%d" to PRIxx macros corresponding to type.
Remove -Wno-format compile flag in those examples that are affected.
This commit is contained in:
Bogdan Kolendovskyy
2022-12-15 16:15:39 +01:00
parent 6f0bea38cd
commit d7b8b36082
24 changed files with 48 additions and 49 deletions
@@ -1,3 +1,2 @@
idf_component_register(SRCS "app_main.c"
INCLUDE_DIRS ".")
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")