Attempt at building a platformio version before starting on changes to testing

This commit is contained in:
2026-06-07 17:57:42 +10:00
parent 95bc2ae9fe
commit 13881ae6c6
15 changed files with 2382 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
// memoryFree header
#ifndef MEMORY_FREE_H
#define MEMORY_FREE_H
#ifdef __cplusplus
extern "C" {
#endif
int freeMemory();
#ifdef __cplusplus
}
#endif
#endif