Skip to content

Commit

Permalink
Merge branch 'contrib/github_pr_10304' into 'master'
Browse files Browse the repository at this point in the history
Fixed mismatch in printf types (GitHub PR)

Closes IDFGH-8883

See merge request espressif/esp-idf!21450
  • Loading branch information
igrr committed Dec 7, 2022
2 parents 9ac90ac + e20b28e commit 9a1f2b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 0 additions & 2 deletions examples/get-started/hello_world/main/CMakeLists.txt
@@ -1,4 +1,2 @@
idf_component_register(SRCS "hello_world_main.c"
INCLUDE_DIRS "")

target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
5 changes: 3 additions & 2 deletions examples/get-started/hello_world/main/hello_world_main.c
Expand Up @@ -5,6 +5,7 @@
*/

#include <stdio.h>
#include <inttypes.h>
#include "sdkconfig.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
Expand Down Expand Up @@ -34,10 +35,10 @@ void app_main(void)
return;
}

printf("%uMB %s flash\n", flash_size / (1024 * 1024),
printf("%" PRIu32 "MB %s flash\n", flash_size / (uint32_t)(1024 * 1024),
(chip_info.features & CHIP_FEATURE_EMB_FLASH) ? "embedded" : "external");

printf("Minimum free heap size: %d bytes\n", esp_get_minimum_free_heap_size());
printf("Minimum free heap size: %" PRIu32 " bytes\n", esp_get_minimum_free_heap_size());

for (int i = 10; i >= 0; i--) {
printf("Restarting in %d seconds...\n", i);
Expand Down

0 comments on commit 9a1f2b9

Please sign in to comment.