1234567891011121314151617 |
- /*
- * afsk_modulator.h
- *
- * Created on: Oct 13, 2019
- * Author: curiousmuch
- */
- #ifndef AFSK_MODULATOR_H_
- #define AFSK_MODULATOR_H_
- #include <stdint.h>
- /* Public Functions */
- void afsk_mod_init(uint32_t sample_rate, uint32_t freq0, uint32_t freq1);
- int8_t afsk_get_amplitude(uint8_t tone);
- #endif /* COMPONENTS_APRS_INCLUDE_AFSK_MODULATOR_H_ */
|