PaulStoffregen
39fb562527
Fix AudioAnalyzeFFT256 magnitude & averaging
10 years ago
PaulStoffregen
7059c1383c
Add misc math functions
10 years ago
Paul Stoffregen
7b3fbe6dd5
Merge pull request #13 from robsoles/master
Actual fix for multiple filter sets in AudioFilterBiquad
10 years ago
robsoles
c34a7ab254
cosmetic change
I am tired of seeing Serial.begin(9600); where 9600 is not going to be
used at all. Can Serial.begin(Serial.baud()); be acceptable?
10 years ago
robsoles
b949d79da7
Mono peak meter using Analog in/out & AudioPeak
Untested, will test it personally in next couple of days but sincerely
expect it will work so committing.
Todo: Test properly. Improve comments and possibly link to wiring
example(s).
10 years ago
robsoles
f95bdca19b
re-trim the comments in the example.
modified an older 'detached' copy of the example source to try multiple
filters out and didn't notice the old comments till reviewing later.
10 years ago
robsoles
5e8e352ec3
Stereo peak meter using AudioPeak
Simplistic visual peak meter just outputs to terminal.
10 years ago
robsoles
44e34bb099
Actual fix for multiple filter sets in AudioFilterBiquad
My manipulation of the contents of *data instead of the value of data
itself was foolish at best - forgot to leave the * off for my intent.
10 years ago
PaulStoffregen
ef55379cbf
Change PassThroughAnalog to follow analog pin name convention
10 years ago
PaulStoffregen
e9d52cd601
reword connect in AudioInputAnalog
10 years ago
Paul Stoffregen
b8e4ce85ca
Merge pull request #12 from robsoles/master
fixed updateCoefs(..) for other than set 0 coefficients
10 years ago
robsoles
80155c9020
fix updateCoefs(..) wasn't updating other coefficient sets
While trying to find why assigning more than one set of coefficients for
AudioFilterBiquad results in no output I discovered my check for flag
before updating other than 1st set of coefficients was flawed so I fixed
it.
I also modified the way 'data' is assigned so the assignment only occurs
once per set of coefficients, possibly not the most efficient but I like
it better than my previous method.
These changes don't appear to effect the use of AudioFilterBiquad for a
single set of coefficients and, unfortunately, it doesn't make it start
working either - implementation of a second (or more than one) set of
coefficients still results in output being silenced but the update to
updateCoefs(..) is necessary so I am committing it.
10 years ago
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.
10 years ago
Paul Stoffregen
3fdd2654b5
Merge pull request #11 from robsoles/master
fix for compounding/cascading filters
10 years ago
robsoles
d90ea2c06f
put pointer assignment after test
I put the line I had moved into the loop the wrong side of the test
conditional.
10 years ago
robsoles
49234c34ab
fix for bug I introduced with my last fix.
I left 'end' in an undefined state before.
10 years ago
robsoles
ad746ca291
fix for compounding/cascading filters
'data' needs to be reset inside the 'flag' controlled loop or
*undefined* behavior is likely when user sets 'flag' and loop repeats
without resetting 'data' to beginning of block.
10 years ago
Paul Stoffregen
67099c39de
Merge pull request #10 from robsoles/master
adding surround and bass enhance controls
10 years ago
robsoles
795c785f7b
adding surround and bass enhance controls
added last of dap 'bits' to control_sgtl5000.* and include an example
for bass enhance, need to make one for surround stuff.
10 years ago
PaulStoffregen
8ab67fe42b
Add comments about I2S FIFO reset bits (was an issue on I2S test fixture)
10 years ago
PaulStoffregen
cb5ea4bf7f
Add status and position functions to AudioPlayMemory
10 years ago
PaulStoffregen
5164e6177a
Add status and position functions to AudioPlaySdRaw
10 years ago
PaulStoffregen
636bba0723
Add status and position functions to AudioPlaySdWav
10 years ago
PaulStoffregen
a2574cb0fc
Fix AudioPlaySdWav end-of-data handling
10 years ago
PaulStoffregen
ec3c9074ff
Improve AudioAnalyzePrint
10 years ago
PaulStoffregen
795e43ddb6
Fix compile error
10 years ago
Paul Stoffregen
d086aeed23
Merge pull request #9 from el-supremo/master
Cosmetic fixes to chorus and flange examples and synth_tonesweep (ignore AudioSynthToneSweep changes)
10 years ago
Pete (El Supremo)
b09b9d3c89
cosmetic changes to synth_tonesweep.cpp and .h
10 years ago
Pete (El Supremo)
f4237e51ec
Cosmetic fixes to AudioSynthToneSweep.cpp and .h
10 years ago
Pete (El Supremo)
e3acf32f5d
Cosmetic changes to chorus and flange examples
10 years ago
Paul Stoffregen
7e0ccb30d8
Merge pull request #8 from robsoles/master
Add AVC control to control_sgtl5000.* and example
10 years ago
robsoles
dd968dda0a
Add AVC control to control_sgtl5000.* and example
Added
AudioControlSGTL5000::dap_avc(..);
AudioControlSGTL5000::dap_avc_enable(..);
SGTL5000_Specific/dap_avc_agc example sketch
Also added 'public domain...' line to all my examples.
10 years ago
PaulStoffregen
3d66692947
Rename AudioPrint to AudioAnalyzePrint
10 years ago
PaulStoffregen
8e66b244fc
Rename AudioPlaySDcardRAW to AudioPlaySdRaw
10 years ago
PaulStoffregen
5ff60b9a70
Rename AudioPlaySDcardWAV to AudioPlaySdWav
10 years ago
PaulStoffregen
4d67342153
Rename AudioToneSweep to AudioSynthToneSweep
10 years ago
PaulStoffregen
46e437354d
Add MIT license to last few files
10 years ago
PaulStoffregen
8169a8a766
Manually merged Pete's pull request: Correct a calculation in flange;remove static class from chorus and flange
https://github.com/PaulStoffregen/Audio/pull/7
10 years ago
PaulStoffregen
e3cb8ba481
Add MIT license for Pete's files
10 years ago
PaulStoffregen
183fcd95a9
Add MIT license
10 years ago
PaulStoffregen
c274463185
Each object includes only required headers
10 years ago
PaulStoffregen
e4cb836eea
Reorganize all header files
10 years ago
PaulStoffregen
bdc11e316d
Move the last couple ojects to their own files
10 years ago
PaulStoffregen
0fb630e4bf
Split I2S input & output to their own files
10 years ago
PaulStoffregen
f16fb938bf
Move other objects to their own files
10 years ago
PaulStoffregen
a8fd397ba1
Move DSP instruction stuff to its own header file
10 years ago
PaulStoffregen
6490ee9155
Move control objects to their own files
10 years ago
PaulStoffregen
2bb856fa95
Move input & output objects to their own files
10 years ago
PaulStoffregen
7b16c9dc0c
Fix compiler warnings
10 years ago
Paul Stoffregen
f771e3cfe2
Merge pull request #6 from el-supremo/master
My own version of AudioSynthWaveform. Sine is generated with arm_sin_q15...
10 years ago