Browse Source

update - see revision.md

main
duff2013 6 years ago
parent
commit
5badcaad63
5 changed files with 13 additions and 10 deletions
  1. +1
    -1
      AudioTuner.cpp
  2. +7
    -7
      AudioTuner.h
  3. +1
    -1
      README.md
  4. +1
    -1
      library.properties
  5. +3
    -0
      revision.md

+ 1
- 1
AudioTuner.cpp View File

* *
* @return none * @return none
*/ */
void disable( void ) {
void AudioTuner::disable( void ) {
__disable_irq( ); __disable_irq( );
enabled = false; enabled = false;
__enable_irq( ); __enable_irq( );

+ 7
- 7
AudioTuner.h View File

*/ */
void coeff( int16_t *p, int n ); void coeff( int16_t *p, int n );
/**
* disable yin
*
* @return none
*/
void disable( void );
/** /**
* Audio Library calls this update function ~2.9ms * Audio Library calls this update function ~2.9ms
* *
*/ */
void process( int16_t *p ); void process( int16_t *p );
/**
* disable yin
*
* @return none
*/
void disable( void );
/** /**
* Variables * Variables
*/ */

+ 1
- 1
README.md View File

<p align="center"> <p align="center">
<b>Guitar and Bass Tuner Library v3.2</b><br>
<b>Guitar and Bass Tuner Library v3.3</b><br>
<b>Teensy 3.1/2</b><br> <b>Teensy 3.1/2</b><br>
</p> </p>



+ 1
- 1
library.properties View File

name=AudioTuner name=AudioTuner
version=3.2
version=3.3
author=Colin Duffy author=Colin Duffy
maintainer=Colin Duffy maintainer=Colin Duffy
sentence=Yin algorithm sentence=Yin algorithm

+ 3
- 0
revision.md View File

><b>Updated (1/17/18 v3.2)</b><br>
* Fixed disable function.<br>

><b>Updated (1/12/18 v3.2)</b><br> ><b>Updated (1/12/18 v3.2)</b><br>
* Added disable function.<br> * Added disable function.<br>



Loading…
Cancel
Save