Paparazzi UAS  v5.12_stable-4-g9b43e9b
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
nps_radio_control_spektrum.c File Reference
#include "nps_radio_control.h"
#include <glib.h>
#include <stdio.h>
#include <termios.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#include <inttypes.h>
+ Include dependency graph for nps_radio_control_spektrum.c:

Go to the source code of this file.

Macros

#define IUCLC   0
 
#define CHANNEL_OF_FRAME(i)   ((((frame_buf[2*i]<<8) + frame_buf[2*i+1])&0x03FF)-512)
 
#define SYNC_1   0x03
 
#define SYNC_2   0x12
 
#define STA_UNINIT   0
 
#define STA_GOT_SYNC_1   1
 
#define STA_GOT_SYNC_2   2
 
#define FRAME_LEN   14
 

Functions

static gboolean on_serial_data_received (GIOChannel *source, GIOCondition condition, gpointer data)
 
static void parse_data (char *buf, int len)
 
static void handle_frame (void)
 
int nps_radio_control_spektrum_init (const char *device)
 

Variables

static int sp_fd
 
uint8_t status = STA_UNINIT
 
static uint8_t frame_buf [FRAME_LEN]
 
static uint32_t idx = 0
 

Macro Definition Documentation

#define CHANNEL_OF_FRAME (   i)    ((((frame_buf[2*i]<<8) + frame_buf[2*i+1])&0x03FF)-512)

Definition at line 19 of file nps_radio_control_spektrum.c.

Referenced by handle_frame().

#define FRAME_LEN   14

Definition at line 102 of file nps_radio_control_spektrum.c.

Referenced by parse_data().

#define IUCLC   0

Definition at line 16 of file nps_radio_control_spektrum.c.

Referenced by nps_radio_control_spektrum_init().

#define STA_GOT_SYNC_1   1

Definition at line 97 of file nps_radio_control_spektrum.c.

Referenced by parse_data().

#define STA_GOT_SYNC_2   2

Definition at line 98 of file nps_radio_control_spektrum.c.

Referenced by parse_data().

#define STA_UNINIT   0

Definition at line 96 of file nps_radio_control_spektrum.c.

Referenced by parse_data().

#define SYNC_1   0x03

Definition at line 93 of file nps_radio_control_spektrum.c.

Referenced by parse_data().

#define SYNC_2   0x12

Definition at line 94 of file nps_radio_control_spektrum.c.

Referenced by parse_data().

Function Documentation

static void handle_frame ( void  )
static
int nps_radio_control_spektrum_init ( const char *  device)

Definition at line 30 of file nps_radio_control_spektrum.c.

References B115200, channel, IUCLC, on_serial_data_received(), and sp_fd.

Referenced by nps_radio_control_init().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static gboolean on_serial_data_received ( GIOChannel *  source,
GIOCondition  condition,
gpointer  data 
)
static

Definition at line 73 of file nps_radio_control_spektrum.c.

References parse_data(), and TRUE.

Referenced by nps_radio_control_spektrum_init().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static void parse_data ( char *  buf,
int  len 
)
static

Definition at line 106 of file nps_radio_control_spektrum.c.

References FRAME_LEN, handle_frame(), idx, STA_GOT_SYNC_1, STA_GOT_SYNC_2, STA_UNINIT, SYNC_1, and SYNC_2.

Referenced by on_serial_data_received().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

Variable Documentation

uint8_t frame_buf[FRAME_LEN]
static

Definition at line 103 of file nps_radio_control_spektrum.c.

int sp_fd
static

Definition at line 21 of file nps_radio_control_spektrum.c.

Referenced by nps_radio_control_spektrum_init().

Definition at line 100 of file nps_radio_control_spektrum.c.