arduino_midi_player/Midi/music-box-avr-master/WavetableSynthesizer/WaveTable.h
2025-03-24 14:30:56 +08:00

19 lines
413 B
C

#ifndef __WAVETABLE__
#define __WAVETABLE__
// Sample's base frequency: 523.629906 Hz
// Sample's sample rate: 32000 Hz
#define WAVETABLE_LEN 2608
#define WAVETABLE_ATTACK_LEN 1998
#define WAVETABLE_LOOP_LEN 610
#ifndef __ASSEMBLER__
#include <stdint.h>
extern const int8_t WaveTable[WAVETABLE_LEN];
extern const uint16_t WaveTable_Increment[];
#else
.extern WaveTable
.extern WaveTable_Increment
#endif
#endif