afsk_modulator.h 356 B

1234567891011121314151617
  1. /*
  2. * afsk_modulator.h
  3. *
  4. * Created on: Oct 13, 2019
  5. * Author: curiousmuch
  6. */
  7. #ifndef AFSK_MODULATOR_H_
  8. #define AFSK_MODULATOR_H_
  9. #include <stdint.h>
  10. /* Public Functions */
  11. void afsk_mod_init(uint32_t sample_rate, uint32_t freq0, uint32_t freq1);
  12. int8_t afsk_get_amplitude(uint8_t tone);
  13. #endif /* COMPONENTS_APRS_INCLUDE_AFSK_MODULATOR_H_ */