1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-28 23:29:45 +01:00

drivers: Added PRIuSIZE print format specifier

This commit is contained in:
Frederik Haxel 2024-01-12 11:57:52 +01:00
parent 31da90ea7f
commit 381cae6eb1
5 changed files with 8 additions and 7 deletions

View File

@ -645,7 +645,7 @@ static int _atwinc15x0_get(netdev_t *netdev, netopt_t opt, void *val,
assert(dev);
assert(dev == atwinc15x0);
DEBUG("%s dev=%p opt=%u val=%p max_len=%u\n", __func__,
DEBUG("%s dev=%p opt=%u val=%p max_len=%" PRIuSIZE "\n", __func__,
(void *)netdev, opt, val, max_len);
switch (opt) {
@ -755,7 +755,7 @@ static int _atwinc15x0_set(netdev_t *netdev, netopt_t opt, const void *val,
{
atwinc15x0_t *dev = (atwinc15x0_t *)netdev;
DEBUG("%s dev=%p opt=%u val=%p max_len=%u\n", __func__,
DEBUG("%s dev=%p opt=%u val=%p max_len=%" PRIuSIZE "\n", __func__,
(void *)netdev, opt, val, max_len);
int ret;

View File

@ -292,7 +292,7 @@ void lcd_ll_release(lcd_t *dev)
void lcd_ll_write_cmd(lcd_t *dev, uint8_t cmd, const uint8_t *data,
size_t len)
{
DEBUG("[%s] command 0x%02x (%u) ", __func__, cmd, len);
DEBUG("[%s] command 0x%02x (%" PRIuSIZE ") ", __func__, cmd, len);
if (IS_USED(ENABLE_DEBUG) && len) {
for (uint8_t i = 0; i < len; i++) {
DEBUG("0x%02x ", data[i]);
@ -310,7 +310,7 @@ void lcd_ll_read_cmd(lcd_t *dev, uint8_t cmd, uint8_t *data, size_t len)
{
assert(len);
DEBUG("[%s] command 0x%02x (%u) ", __func__, cmd, len);
DEBUG("[%s] command 0x%02x (%" PRIuSIZE ") ", __func__, cmd, len);
lcd_ll_cmd_start(dev, cmd, true);
lcd_ll_read_bytes(dev, false, data, len);

View File

@ -323,7 +323,7 @@ static int _recv(netdev_t *netdev, void *buf, size_t len, void *info)
}
/* drop frame, content in buf becomes invalid and return -ENOBUFS */
if (len < frame_len) {
DEBUG("[nrf24l01p_ng] Buffer too small: %u < %u, dropping frame\n",
DEBUG("[nrf24l01p_ng] Buffer too small: %" PRIuSIZE " < %u, dropping frame\n",
len, frame_len);
uint8_t garbage[pl_width];
nrf24l01p_ng_read_rx_payload(dev, garbage, pl_width);

View File

@ -21,6 +21,7 @@
#include <string.h>
#include <errno.h>
#include "architecture.h"
#include "iolist.h"
#include "net/netopt.h"
#include "net/netdev.h"
@ -78,7 +79,7 @@ static int _send(netdev_t *netdev, const iolist_t *iolist)
return 0;
}
DEBUG("[sx126x] netdev: sending packet now (size: %d).\n", pos);
DEBUG("[sx126x] netdev: sending packet now (size: %" PRIuSIZE ").\n", pos);
sx126x_set_lora_payload_length(dev, pos);
state = NETOPT_STATE_TX;

View File

@ -73,7 +73,7 @@ static int _send(netdev_t *netdev, const iolist_t *iolist)
return 0;
}
DEBUG("[sx1280] netdev: sending packet now (size: %d).\n", pos);
DEBUG("[sx1280] netdev: sending packet now (size: %" PRIuSIZE ").\n", pos);
sx1280_set_lora_payload_length(dev, pos);
state = NETOPT_STATE_TX;