PaulStoffregen
9c57e1cb19
Add simple drum header and keywords
hace 8 años
Benjamin
0db2e23ba1
Add PT8211 w/ experimental 4x oversampling
PT8211 with oversampling and linear interpolation by Frank Bösing.
3 Stage CIC interpolation by Ben Rheinland
hace 8 años
PaulStoffregen
a1637b94e9
Add very basic Karplus-Strong synthesis
hace 8 años
PaulStoffregen
35bbbf0df9
Add CS4272 control (thanks William Hollender)
https://hackaday.io/project/5912-teensy-super-audio-board
hace 8 años
PaulStoffregen
7eeb6e14eb
Begin work on quad channel audio input
hace 8 años
PaulStoffregen
5a8ddd46d4
Begin work on quad channel audio output
hace 8 años
PaulStoffregen
a6218788e4
Add AudioEffectMidSide documentation & example (thanks Hedde Bosman)
hace 8 años
PaulStoffregen
fe4831c78b
Add AudioAnalyzeRMS (thanks sgorpi)
hace 8 años
PaulStoffregen
7e017b129e
Rename AudioAnalyzeGuitarTuner to AudioAnalyzeNoteFrequency
hace 9 años
PaulStoffregen
c31af2cd0e
Import Duff's AudioTuner library
https://forum.pjrc.com/threads/32252-Different-Range-FFT-Algorithm?p=91895&viewfull=1#post91895
hace 9 años
Michele Perla
a602a17dca
Added AK4558 CODEC support
hace 9 años
PaulStoffregen
df633c3b1b
Begin work on AudioEffectDelayExternal...
hace 9 años
PaulStoffregen
71f029ba76
Add Bitcrusher effect (thanks Pensive)
https://github.com/PaulStoffregen/Audio/pull/119
hace 9 años
PaulStoffregen
f13e51ee97
Add AudioPlaySerialflashRaw
https://forum.pjrc.com/threads/27409-Play-RAW-from-Serial-Flash?p=77666#post77666
hace 9 años
PaulStoffregen
e5b0a8f819
Update WavFilePlayer for I2S or S/PDIF or DAC
hace 9 años
PaulStoffregen
2cef57dd35
Add AudioRecordQueue (work in progress)
hace 10 años
PaulStoffregen
e8cb4897b0
Avoid allocating unneeded DMA channels
hace 10 años
PaulStoffregen
cb5c9e9729
Use DMAChannel begin()
hace 10 años
PaulStoffregen
5bc41358b6
Change peak detect API to conform to library conventions
hace 10 años
PaulStoffregen
e1535addce
Fix multiple white noise instances
hace 10 años
PaulStoffregen
a88fc2ae34
Remove unused multiplier
hace 10 años
PaulStoffregen
98ee40d596
Rearrange Examples
hace 10 años
PaulStoffregen
ffa3f618b8
Add AudioFilterStateVariable (work in progress....)
hace 10 años
PaulStoffregen
95113cedde
Add AudioSynthNoisePink
hace 10 años
PaulStoffregen
7163cbba4a
Add AudioSynthNoiseWhite
hace 10 años
PaulStoffregen
68c410a501
Add AudioEffectDelay
hace 10 años
PaulStoffregen
6b6218bb90
Add AudioSynthWaveformDc
hace 10 años
PaulStoffregen
8798978f2a
Add AudioEffectMultiply
hace 10 años
PaulStoffregen
dcb7414941
Add AudioEffectEnvelope
hace 10 años
PaulStoffregen
2219e26549
Add AudioAnalyzeFFT1024
hace 10 años
PaulStoffregen
493cbaa9d5
Add AudioPlayQueue
hace 10 años
PaulStoffregen
8fd56ee20a
Add AudioSynthWaveformSine
hace 10 años
Pete (El Supremo)
9dde3c1926
Add a multiplier (by rheslip)
hace 10 años
robsoles
b78a26f628
add a peak input measuring object
deadly simplistic peak difference measuring object, after begin() just
goes through samples and find the maximum and minimum signed values,
natural behavior of begin() is to reset the max and min, member uint16_t
Dpp() returns maximum difference seen and .stop() does what it says.
hace 10 años
PaulStoffregen
183fcd95a9
Add MIT license
hace 10 años
PaulStoffregen
e4cb836eea
Reorganize all header files
hace 10 años
PaulStoffregen
2bb856fa95
Move input & output objects to their own files
hace 10 años
PaulStoffregen
7b16c9dc0c
Fix compiler warnings
hace 10 años
Pete (El Supremo)
28a58248d9
My own version of AudioSynthWaveform. Sine is generated with arm_sin_q15() (but is slower) and the other three waveforms are generated without using tables.
hace 10 años
PaulStoffregen
3c31127761
Fix compiler warnings
hace 10 años
Pete (El Supremo)
62698957fb
Add an audio sweep. User defined start and end frequencies and length of time of sweep.
hace 10 años
Pete (El Supremo)
1d58a8e996
Correct storage class of some variables in FIR
hace 10 años
robsoles
f6e459c3a1
Syncing changes to level & volume setting routines
I forgot to sync the changes relating to things like 'dac_vol_right(..)'
& 'dac_vol_left(..)' removed in favor of 'dac_vol(left,right)' instead;
applies to 'volume(..)', 'lo_lvl(..)' & 'dac_vol(..)'.
hace 10 años
robsoles
fcf9987c16
Various corrections and addition of calcBiquad(..);
removed 'route(..)' due not easily supportable atm. Updated
'dap_enable(..)' in lieu of route. Fixed dap_audio_eq_band(..) bad use
of unsigned. Changed 'updateCoefs(..)' so default behavior is not reset
other three elements of state.
hace 10 años
robsoles
f62bd8ef11
Some filter additions, some SGTL5000 additions
added AudioBiquadFilter::
public:
void updateCoefs(int *source, bool noReset);
void updateCoefs(int *source);
added AudioControlSGTL5000::
private:
unsigned int modify(unsigned int reg, unsigned int val, unsigned int
iMask);
public:
unsigned int micGain(unsigned int n) { return modify(0x002A, n&3, 3); }
unsigned short lo_lvl_right(uint8_t n);
unsigned short lo_lvl_left(uint8_t n);
unsigned short lo_lvl(uint8_t n);
unsigned short dac_vol_right(float n);
unsigned short dac_vol_left(float n);
unsigned short dac_vol(float n);
unsigned short dap_mix_enable(uint8_t n);
unsigned short dap_enable(uint8_t n);
unsigned short dap_peqs(uint8_t n);
unsigned short dap_audio_eq(uint8_t n);
unsigned short dap_audio_eq_band(uint8_t bandNum, float n);
void dap_audio_eq_geq(float bass, float mid_bass, float midrange, float
mid_treble, float treble);
void dap_audio_eq_tone(float bass, float treble);
void load_peq(uint8_t filterNum, int *filterParameters);
void route(uint8_t via_i2s, uint8_t via_dap);
hace 10 años
Pete (El Supremo)
a27b78fc24
AudioSynthWaveform updated to add tone ramping when a tone starts and ends
PlayMidiTones example modified to work with ramping.
hace 10 años
Pete (El Supremo)
0b64ca0e24
Add chorus and flange effects and an example sketch for each
hace 10 años
Pete (El Supremo)
3e4d82e9c5
Removed extraneous comment lines
hace 10 años
Pete (El Supremo)
3b1570c6ec
Added AudioFilterFIR which performs FIR filter
using user-supplied coefficients
hace 10 años
PaulStoffregen
ba7c3d8080
Add AudioEffectFade object
hace 10 años