freqs.h 225 B

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