summaryrefslogtreecommitdiff
path: root/firmware/export/sound.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/sound.h')
-rw-r--r--firmware/export/sound.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/firmware/export/sound.h b/firmware/export/sound.h
index 674b2f6ae2..3d12a47db3 100644
--- a/firmware/export/sound.h
+++ b/firmware/export/sound.h
@@ -64,4 +64,11 @@ void sound_set_pitch(int32_t pitch);
64int32_t sound_get_pitch(void); 64int32_t sound_get_pitch(void);
65#endif 65#endif
66 66
67#ifdef HAVE_PITCHSCREEN
68/* precision of the pitch and speed variables */
69/* One zero per decimal (100 means two decimal places */
70#define PITCH_SPEED_PRECISION 100L
71#define PITCH_SPEED_100 (100L * PITCH_SPEED_PRECISION) /* 100% speed */
72#endif /* HAVE_PITCHSCREEN */
73
67#endif 74#endif