Files
arduino-esp32/cores/esp32
Kostis Anagnostopoulos 709029996f fix: compiler warnings about printf-format for pointers in esp32-hal-cpu.c (#6705)
* fix(hal.cpu) compiler warn about printf-format for pointers >

warning was:
```
framework-arduinoespressif32/cores/esp32/esp32-hal-cpu.c:132:9: note: in expansion of macro 'log_e'
         log_e("not found func=%08X arg=%08X",cb,arg);
         ^~~~~
framework-arduinoespressif32/tools/sdk/esp32/include/log/include/esp_log.h:276:27: warning: format '%X' expects argument of type 'unsigned int', but argument 7 has type 'void *' [-Wformat=]

```

* fix(tone.cpp) compiler warn about printf-format for pointers >

format-str expected plain uint while `duration` is long-uint.

Warning was:
```
.../cores/esp32/esp32-hal-log.h:115:32: note: in expansion of macro 'ESP_LOG_LEVEL_LOCAL'
 #define log_d(format, ...) do {ESP_LOG_LEVEL_LOCAL(ESP_LOG_DEBUG, TAG, format, ##__VA_ARGS__);}while(0)
                                ^~~~~~~~~~~~~~~~~~~
.../cores/esp32/Tone.cpp:31:9: note: in expansion of macro 'log_d'
         log_d("Task received from queue TONE_START: _pin=%d, frequency=%u Hz, duration=%u ms", tone_msg.pin, tone_msg.frequency, tone_msg.duration);
         ^~~~~
.../tools/sdk/esp32/include/log/include/esp_log.h:276:27: warning: format '%u' expects argument of type 'unsigned int', but argument 8 has type 'long unsigned int' [-Wformat=]
```
2022-05-09 23:40:44 +03:00
..
2021-03-11 12:11:53 +02:00
2016-10-06 07:09:44 -06:00
2021-11-18 14:25:04 +02:00
2022-03-28 12:09:41 +03:00
2021-03-11 12:11:53 +02:00
2021-03-11 12:11:53 +02:00
2021-03-11 12:11:53 +02:00
2022-03-28 12:09:41 +03:00
2021-03-11 12:11:53 +02:00
2022-03-28 12:09:41 +03:00
2022-03-28 12:09:41 +03:00
2022-03-28 12:09:41 +03:00
2022-03-28 12:09:41 +03:00
2022-03-28 12:09:41 +03:00
2022-05-04 18:55:21 +03:00
2022-03-28 12:09:41 +03:00
2021-03-11 12:11:53 +02:00
2022-03-28 12:09:41 +03:00
2022-03-28 12:09:41 +03:00
2022-04-29 11:13:07 +03:00
2022-04-29 11:13:07 +03:00
2021-03-11 12:11:53 +02:00
2021-03-11 12:11:53 +02:00
2022-03-28 12:09:41 +03:00
2020-11-08 04:55:59 +02:00
2016-10-06 07:09:44 -06:00
2018-06-27 09:01:06 +02:00
2019-05-11 11:16:05 +03:00
2022-03-28 12:09:41 +03:00
2022-03-28 12:09:41 +03:00
2022-03-28 12:09:41 +03:00
2016-10-06 07:09:45 -06:00
2020-11-02 22:11:26 +02:00
2022-02-03 20:07:34 +02:00