freqs.h 207 B

12345678910
  1. #pragma once
  2. #include <stdio.h>
  3. #define FREQ_TAB_SIZE 12 /* one octave */
  4. #define NUM_OCTAVES 8 /* 0-7th octaves */
  5. extern const uint32_t frequency_table[FREQ_TAB_SIZE];
  6. uint32_t get_freq(uint16_t note);