Then, if you look at the source
bool available() {
if (outputflag == true) {
outputflag = false;
return true;
}
return false;
}
This means that available() will only return true once as it is reset to...
For posterity, the configuration of the build with PIO is specified as described here:
https://docs.platformio.org/en/latest/platforms/teensy.html#platform-teensy
The specification of USB type is described here
By default the blink restore program DOES NOT include USB serial, so what you are seeing is normal. You should be able to upload another program that does include USB serial now though and the teensy will enumerate a...
The implementation of SDClass::open is expecting mode to be a uint8_t with one of the following values FILE_READ, FILE_WRITE or FILE_WRITE_BEGIN.
Look at SDClass::open in SD.h to see how those are mapped to the...
The version of the audio library included with TD 1.57 is indeed 1.3
The code being used should be found in ~/.platformio/packages/framework-arduinoteensy/libraries/Audio
library.properties contains
name=Audio...
Very satisfied PlatformIO user here. Have used it without any problems for many years. Perhaps one of the reasons is that I *don't* use the native graphical teensy uploader. In my platformio.io for all my projects I...