even more docs
All checks were successful
Rust / build-gnu-apt (pull_request) Successful in 4m16s
Rust / build-size-gnu-unstable (pull_request) Successful in 1m18s

This commit is contained in:
Vinzenz Schroeter 2025-05-07 22:50:53 +02:00
parent 36f3d84dc8
commit b8a55d0433
7 changed files with 133 additions and 21 deletions

View file

@ -7,7 +7,7 @@ void enable_all_pixels(void) {
sp_bitmap_fill(all_on, true);
BitmapCommand *bitmapCommand = sp_cmd_bitmap_from_bitmap(all_on);
Packet *packet = sp_cmd_bitmap_into_packet(bitmapCommand);
Packet *packet = sp_cmd_bitmap_try_into_packet(bitmapCommand);
if (packet != NULL)
sp_udp_send_packet(connection, packet);
}