use pio native to build standalone

This commit is contained in:
Proddy
2023-01-06 14:14:03 +01:00
parent ad2dbd6fc5
commit fbf799e4c4
13 changed files with 484 additions and 134 deletions

View File

@@ -1,4 +1,6 @@
#ifdef EMSESP_STANDALONE
#include <Arduino.h>
#include "WString.h"
@@ -66,3 +68,5 @@ size_t strlcat(char * dst, const char * src, size_t siz) {
return (dlen + (s - src)); /* count does not include NUL */
}
#endif