summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/pitch_detector.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/plugins/pitch_detector.c b/apps/plugins/pitch_detector.c
index 92ba6e5..5def8a1 100644
--- a/apps/plugins/pitch_detector.c
+++ b/apps/plugins/pitch_detector.c
@@ -851,7 +851,7 @@ static fixed ICODE_ATTR vec_quadint_min(fixed *x, unsigned bufsize, unsigned pos
return exactpos;
}
-
+#ifndef SIMULATOR
/* Calculate the period of the note in the
buffer using the YIN algorithm */
/* The yin pointer is just a buffer that the algorithm uses as a work
@@ -918,7 +918,6 @@ static uint32_t ICODE_ATTR buffer_magnitude(int16_t *input)
}
/* Stop the recording when the buffer is full */
-#ifndef SIMULATOR
static void recording_callback(int status, void **start, size_t *size)
{
int tail = audio_tail ^ 1;
@@ -933,7 +932,7 @@ static void recording_callback(int status, void **start, size_t *size)
(void)status;
}
-#endif
+#endif /* SIMULATOR */
/* Start recording */
static void record_data(void)