mirror of
https://github.com/xoseperez/espurna.git
synced 2026-03-06 00:14:19 +01:00
Resolve the issue with the UnixHostDuino not really being compatible with the esp8266 Core String (...and the rest of the Core, as well) Port the CMakeLists.txt from the rpnlib and update it use FetchContent instead of either manually fetching dependencies or using PIO artifacts Caching is *expected* to work, but might need slight adjustments
15 lines
208 B
C
15 lines
208 B
C
// minimal set of functions that are supposed to be linked with the unity.c
|
|
|
|
void setUp(void) {
|
|
}
|
|
|
|
void tearDown(void) {
|
|
}
|
|
|
|
void suiteSetUp(void) {
|
|
}
|
|
|
|
int suiteTearDown(int failures) {
|
|
return failures;
|
|
}
|