mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-26 03:39:58 -07:00
11 lines
225 B
C
11 lines
225 B
C
#pragma once
|
|
|
|
#include <furi.h>
|
|
#include <stdio.h>
|
|
|
|
#define FREQ_TAB_SIZE 12 /* one octave */
|
|
#define NUM_OCTAVES 8 /* 0-7th octaves */
|
|
|
|
extern const uint32_t frequency_table[FREQ_TAB_SIZE];
|
|
|
|
uint32_t get_freq(uint16_t note); |