24 lines
372 B
C
24 lines
372 B
C
|
#ifndef B6X_FCC_H_
|
|||
|
#define B6X_FCC_H_
|
|||
|
|
|||
|
#include <stdint.h>
|
|||
|
|
|||
|
void fcc_init(void);
|
|||
|
|
|||
|
void fcc_stop(void);
|
|||
|
|
|||
|
/// freq_idx:0 ~ 39(2402 ~ 2480)
|
|||
|
/// Tx<54><78><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
void fcc_tx_mod(uint8_t freq_idx);
|
|||
|
|
|||
|
/// Rx<52><78><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
void fcc_rx_mod(uint8_t freq_idx);
|
|||
|
|
|||
|
/// Tx<54><78><EFBFBD>ز<EFBFBD>(<28><>Ƶ)
|
|||
|
void fcc_tx_carr(uint8_t freq_idx);
|
|||
|
|
|||
|
/// Rx<52><78><EFBFBD>ز<EFBFBD>(<28><>Ƶ)
|
|||
|
void fcc_rx_carr(uint8_t freq_idx);
|
|||
|
|
|||
|
#endif // B6X_FCC_H_
|