Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

socket_zep: properly implement the radio HAL #19213

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Update cpu/native/socket_zep/socket_zep.c
Co-authored-by: Teufelchen <9516484+Teufelchen1@users.noreply.github.com>
  • Loading branch information
benpicco and Teufelchen1 authored Feb 2, 2025
commit 38ae722196e79f28993c14bf62ed402edd88c41e
2 changes: 1 addition & 1 deletion cpu/native/socket_zep/socket_zep.c
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@
DEBUG("socket_zep::_socket_isr: %d bytes on %d\n", res, fd);

if (res < (int)sizeof(zep_v2_data_hdr_t)) {
DEBUG("socket_zep::_socket_isr: frame too short %d < %zu\n", res, sizeof(zep_v2_data_hdr_t));
DEBUG("socket_zep::_socket_isr: frame is shorter than the header, %d < %zu\n", res, sizeof(zep_v2_data_hdr_t));

Check warning on line 325 in cpu/native/socket_zep/socket_zep.c

View workflow job for this annotation

GitHub Actions / static-tests

line is longer than 100 characters
goto out;
}

Expand Down
Loading