2 Commits

Author SHA1 Message Date
Kuba Szczodrzyński
9114bc4c49 [release] v1.9.1
Some checks failed
Release / Run Clang lint (push) Has been cancelled
Release / Publish PlatformIO platform (push) Has been cancelled
Release / Publish GitHub release (push) Has been cancelled
2025-06-01 19:38:36 +02:00
Kuba Szczodrzyński
9eae0cd253 [common] Add Arduino emptyString declaration 2025-06-01 19:38:11 +02:00
4 changed files with 6 additions and 2 deletions

View File

@@ -51,7 +51,7 @@ def env_add_core_sources(env: Environment, queue, name: str, path: str) -> bool:
"+<compat/*.c*>",
"+<port/*.c*>",
"+<posix/*.c>",
"+<wiring/*.c>",
"+<wiring/*.c*>",
"+<wraps/*.c>",
],
includes=[

View File

@@ -7,3 +7,6 @@ String ipToString(const IPAddress &ip) {
sprintf(szRet, "%hhu.%hhu.%hhu.%hhu", ip[0], ip[1], ip[2], ip[3]);
return String(szRet);
}
// global empty string to allow returning const String& with nothing
const String emptyString;

View File

@@ -35,6 +35,7 @@ extern "C" {
#ifdef __cplusplus
String ipToString(const IPAddress &ip);
extern const String emptyString;
#endif
#ifdef __cplusplus

View File

@@ -6,7 +6,7 @@
"type": "git",
"url": "https://github.com/libretiny-eu/libretiny.git"
},
"version": "1.9.0",
"version": "1.9.1",
"frameworks": {
"base": {
"title": "Base Framework (SDK only)",