summaryrefslogtreecommitdiff
path: root/shared-module/audiocore/__init__.c
AgeCommit message (Collapse)Author
2021-03-15run code formatting scriptmicroDev
2020-12-29esp32s2: add I2SOutJeff Epler
2019-12-13audiocore: The arguments to reset_buffer went missingJeff Epler
In conversion I missed these arguments were being passed, but noticed it when an implausible value for audio_channel was sent to mp3's reset_buffer method. It's not clear whether there was any negative impact to this, but it should be fixed!
2019-12-04audiosample: convert to use a protocolJeff Epler
This eases addition of new sample sources, since the manual virtual function dispatch functions are just calls via a protocol
2019-08-25disable audiomixer on boards it doesn't fit onsommersoft
2019-08-24move Mixer & MixerVoice from 'audiocore' to 'audiomixer'sommersoft
2019-07-25audiocore: Factor from audioioJeff Epler
When nrf pwm audio is introduced, it will be called `audiopwmio`. To enable code sharing with the existing (dac-based) `audioio`, factor the sample and mixer types to `audiocore`. INCOMPATIBLE CHANGE: Now, `Mixer`, `RawSample` and `WaveFile` must be imported from `audiocore`, not `audioio`.