RISC-V/V203/midi/audio.h

17 lines
406 B
C
Raw Permalink Normal View History

2024-05-09 17:52:29 +02:00
#ifndef AUDIO_H
#define AUDIO_H
#include <stdint.h>
static constexpr int AudioSampleRate = 24000;
/// Počet generátorů.
static constexpr unsigned int maxGens = 12;
/// Kladné maximum vzorku.
static constexpr int maxValue = 30000;
/// Záporné maximum vzorku.
static constexpr int minValue = -maxValue;
///
static constexpr unsigned int maxAmplt = (1U<<27);
#endif // AUDIO_H