kopia lustrzana https://github.com/Qyon/STM32_RTTY
21 wiersze
359 B
C
21 wiersze
359 B
C
![]() |
//
|
||
|
// Created by Admin on 2017-01-09.
|
||
|
//
|
||
|
|
||
|
#ifndef STM32_RTTY_APRS_H
|
||
|
#define STM32_RTTY_APRS_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
#include <stdint.h>
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
void aprs_init();
|
||
|
void aprs_timer_handler();
|
||
|
uint8_t aprs_is_active();
|
||
|
void aprs_test(uint16_t x);
|
||
|
void aprs_change_tone_time(uint16_t x);
|
||
|
#ifdef __cplusplus
|
||
|
};
|
||
|
#endif
|
||
|
#endif //STM32_RTTY_APRS_H
|