RISC-V/midi/audio.h
2024-03-09 11:10:52 +01:00

16 lines
405 B
C

#ifndef AUDIO_H
#define AUDIO_H
#include <stdint.h>
static constexpr int AudioSampleRate = 24000;
/// Počet generátorů.
static constexpr unsigned int maxGens = 4;
/// 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