Timo Sandmann
Timo Sandmann
I have updated PR #294 to cover `AudioPlaySdRaw` as well.
There's no difference in using `volatile` here, because no output operands are used: > asm statements that have no output operands and asm goto statements, are implicitly volatile. See [gcc...
> Thanks, @tsandmann. That makes it a little more clear. Is there even a way to disable reordering for these statements? Did you see any issue because of reordering there?...
> ...and was it for GCC 5.4 the same? According to [gcc-5.4.0/gcc/Extended-Asm.html](https://gcc.gnu.org/onlinedocs/gcc-5.4.0/gcc/Extended-Asm.html#Volatile), yes.
Hi Guglielmo, yes, I will have a look at it. Regards, Timo
There is a first test version available which can be used with Teensyduino. If you want to try it out: 1. Download the library [here](https://github.com/tsandmann/freertos-teensy/releases/tag/v10.4.1_v0.4) as a zip archive. 1....
You're right, that's a bug with Teensyduino. The suggested #defines should fix this, yes.
With the latest version available (v10.5.1_v5), there is now basic support for Teensyduino 1.58. Please note, until this [Pull request](https://github.com/PaulStoffregen/cores/pull/683) is merged, the `EventResponder::attachInterrupt()` variant must not be used, otherwise...
You can add FreeRTOS as a library to TeensyDuino (see [README.md](https://github.com/tsandmann/freertos-teensy/blob/master/README.md)) if you want to use it with TeensyDuino. Or you can add Platform IO libraries as usual when using...
I did test the SDFat library as shown in the sdfat example, but not beyond that. So yes, there may be issues with other libraries, especially if they are not...