How is this going? Is there a repo for the PCB design and audio library code?
I've made extensive use of a design based on the original CS42448 8x8 audio board from the hackable post but looking to update for more channels and future...
As far as I recall this was an issue during initial development as well. The Audio library called Wire and left no good method for resolving the conflicts this created with the i2c_t3 library. Doesn't matter whether or not any audio objects I was...
To solve this I had to find the default Wire library and modify it as I believe that gets included by the Teensy Audio library.
Commenting out these lines in WireKinetis.cpp
// #ifdef WIRE_IMPLEMENT_WIRE
// constexpr uintptr_t i2c0_addr =...
Hi, I am recompiling an old sketch using i2c_t3 on the new Arduino IDE and it no longer builds. I get a library error saying that Wire and Wire1 have multiple definitions like the original Wire library is getting defined somewhere.
How do I fix...