feat(all): Use PRIx macro in all logs

This commit is contained in:
Konstantin Kondrashov
2024-03-07 17:43:45 +02:00
parent 08d1460f15
commit 3f89072af1
57 changed files with 194 additions and 194 deletions

View File

@@ -558,7 +558,7 @@ static void sdio_intr_send(void *arg)
}
assert(returned_cnt == 0);
ESP_EARLY_LOGV(TAG, "end: %x", finished_arg);
ESP_EARLY_LOGV(TAG, "end: %p", finished_arg);
ret = xQueueSendFromISR(context.ret_queue, &finished_arg, &yield);
assert(ret == pdTRUE);
}