forked from Qyon/STM32_RTTY
-
Notifications
You must be signed in to change notification settings - Fork 15
/
radio.h
42 lines (28 loc) · 817 Bytes
/
radio.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// Created by SQ5RWU on 2016-12-24.
//
#ifndef RS41HUP_RADIO_H
#define RS41HUP_RADIO_H
#include "config.h"
#include <stdint.h>
#include <stm32f10x_spi.h>
#include <stm32f10x_gpio.h>
static const uint16_t radioNSELpin = GPIO_Pin_13; // @ GPIOC
static const uint16_t radioSDIpin = GPIO_Pin_15; // @ GPIOB!
static const uint8_t WR = 0x80;
static const float SI4032_CLOCK = 26.0;
#ifdef __cplusplus
extern "C" {
#endif
uint8_t _spi_sendrecv(const uint16_t data_word);
uint8_t radio_rw_register(const uint8_t register_addr, uint8_t value, uint8_t write);
void radio_set_tx_frequency(const float radio_set_tx_frequency);
void radio_disable_tx();
void radio_soft_reset();
void radio_enable_tx();
void radio_inhibit_tx();
int8_t radio_read_temperature();
#ifdef __cplusplus
}
#endif
#endif //RS41HUP_RADIO_H