mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
sys/can: DEBUG fixes
This commit is contained in:
parent
af991deeb2
commit
d8051a2d73
@ -72,10 +72,10 @@ int conn_can_raw_set_filter(conn_can_raw_t *conn, struct can_filter *filter, siz
|
||||
assert(conn != NULL);
|
||||
assert(filter != NULL || count == 0);
|
||||
|
||||
DEBUG("conn_can_raw_set_filter: conn=%p, filter=%p, count=%d\n",
|
||||
(void *)conn, (void *)filter, count);
|
||||
DEBUG("conn_can_raw_set_filter: conn->filter=%p, conn->count=%d\n",
|
||||
(void *)conn->filter, conn->count);
|
||||
DEBUG("conn_can_raw_set_filter: conn=%p, filter=%p, count=%u\n",
|
||||
(void *)conn, (void *)filter, (unsigned)count);
|
||||
DEBUG("conn_can_raw_set_filter: conn->filter=%p, conn->count=%u\n",
|
||||
(void *)conn->filter, (unsigned)conn->count);
|
||||
|
||||
/* unset previous filters */
|
||||
if (conn->count) {
|
||||
|
@ -509,7 +509,7 @@ static void _isotp_fill_dataframe(struct isotp *isotp, struct can_frame *frame,
|
||||
frame->can_id = isotp->opt.tx_id;
|
||||
frame->can_dlc = num_bytes + pci_len;
|
||||
|
||||
DEBUG("_isotp_fill_dataframe: num_bytes=%d, pci_len=%d\n", num_bytes, pci_len);
|
||||
DEBUG("_isotp_fill_dataframe: num_bytes=%d, pci_len=%d\n", (unsigned)num_bytes, (unsigned)pci_len);
|
||||
|
||||
if (num_bytes < space) {
|
||||
if (isotp->opt.flags & CAN_ISOTP_TX_PADDING) {
|
||||
|
Loading…
Reference in New Issue
Block a user