upload
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

luts.h 301B

123456789101112131415
  1. #include <avr/io.h>
  2. #include <avr/interrupt.h>
  3. #include <avr/pgmspace.h>
  4. #ifndef LUTS_H
  5. #define LUTS_H
  6. #define VIBRATO_LUT_LENGTH 20
  7. #define FREQUENCY_LUT_LENGTH 349
  8. extern const float vibrato_lut[VIBRATO_LUT_LENGTH];
  9. extern const uint16_t frequency_lut[FREQUENCY_LUT_LENGTH];
  10. #endif /* LUTS_H */