Fix for tests

This commit is contained in:
Ken Van Hoeylandt 2026-02-01 22:19:16 +01:00
parent 53eff3f32a
commit abe07c9651
2 changed files with 9 additions and 0 deletions

View File

@ -49,3 +49,11 @@ int main(int argc, char** argv) {
return data.result; return data.result;
} }
// NOTE: This is normally provided by the platform module, but that's not loaded for TactilityCore
extern "C" {
// Required for FreeRTOS
void vAssertCalled(unsigned long line, const char* const file) {
__assert_fail("assert failed", file, line, "");
}
}

View File

@ -56,3 +56,4 @@ int main(int argc, char** argv) {
return data.result; return data.result;
} }