fix: make router socket non-blocking to prevent poll loop stalls
Validate and Test / validate-patches (push) Failing after 13s

This commit is contained in:
2026-06-24 04:45:15 -07:00
parent 31bd1d497c
commit f70a8701c9
46 changed files with 47584 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
/*
This file is part of the ArduinoGraphics library.
Copyright (c) 2025 Arduino SA. All rights reserved.
*/
#ifndef _FONT_H
#define _FONT_H
#include <stddef.h>
#include <stdint.h>
struct Font {
const int width;
const int height;
const uint8_t** data;
};
#endif