Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
superbitrf.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2013 Freek van Tienen <freek.v.tienen@gmail.com>
3 *
4 * This file is part of paparazzi.
5 *
6 * paparazzi is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
10 *
11 * paparazzi is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with paparazzi; see the file COPYING. If not, write to
18 * the Free Software Foundation, 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 */
21
27#ifndef DATALINK_SUPERBITRF_H
28#define DATALINK_SUPERBITRF_H
29
30#include "mcu_periph/gpio.h"
32#include "pprzlink/pprzlink_device.h"
33#include "pprzlink/pprz_transport.h"
35
36/* The timings in microseconds */
37#define SUPERBITRF_BIND_RECV_TIME 10000
38#define SUPERBITRF_SYNC_RECV_TIME 7000
39#define SUPERBITRF_RECV_TIME 20000
40#define SUPERBITRF_RECV_SHORT_TIME 6000
41#define SUPERBITRF_DATARECV_TIME 10000
42#define SUPERBITRF_DATARECVB_TIME 6000
44/* The different statuses the superbitRF can be in */
54
55/* The different resolutions a transmitter can be in */
60
61/* The different protocols a transmitter can send */
63 DSM_DSM2_1 = 0x01,
64 DSM_DSM2_2 = 0x02,
65 DSM_DSM2P = 0x10,
66 DSM_DSMXP = 0x11,
67 DSM_DSMX_1 = 0xA2,
68 DSM_DSMX_2 = 0xB2,
69};
70#define IS_DSM2(x) (x == DSM_DSM2P || x == DSM_DSM2_1 || x == DSM_DSM2_2)
71#define IS_DSMX(x) (!IS_DSM2(x))
72
73#define SUPERBITRF_TX_BUFFER_SIZE 128
74
75/* The superbitrf structure */
76struct SuperbitRF {
78 volatile enum SuperbitRFStatus status;
100 volatile enum dsm_protocol protocol;
119};
120
121/* The superbitrf functions and structures */
122extern struct SuperbitRF superbitrf;
123extern void superbitrf_init(void);
124extern void superbitrf_event(void);
125extern void superbitrf_dl_init(void);
126extern void superbitrf_dl_event(void);
127extern void superbitrf_set_mfg_id(uint32_t id);
129
130/* The pprz transport structure */
131extern struct pprz_transport pprz_srf_tp;
132
133#endif /* DATALINK_SUPERBITRF_H */
Driver for the cyrf6936 2.4GHz radio chip.
Some architecture independent helper functions for GPIOs.
uint16_t foo
Definition main_demo5.c:58
unsigned short uint16_t
Typedef defining 16 bit unsigned short type.
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
short int16_t
Typedef defining 16 bit short type.
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.