basic i2s output element

This commit is contained in:
jacqueline
2022-12-06 13:17:56 +11:00
parent e0b2562cc4
commit f35bb64c2b
17 changed files with 356 additions and 232 deletions
+3 -2
View File
@@ -24,8 +24,9 @@ class TestConsole : public Console {
protected:
virtual auto RegisterExtraComponents() -> void { RegisterCatch2(); }
virtual auto GetStackSizeKiB() -> uint16_t {
// Catch2 requires a particularly large stack.
return 24;
// Catch2 requires a particularly large stack to begin with, and some of the
// tests (*cough*libmad*cough*) also use a lot of stack.
return 64;
}
};