Subversion Repositories NaviCtrl

Rev

Rev 62 | Rev 119 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
41 ingob 1
#ifndef _SPI_SLAVE_H
2
#define _SPI_SLAVE_H
1 ingob 3
 
41 ingob 4
#include "fifo.h"
1 ingob 5
 
41 ingob 6
 
1 ingob 7
#define SS_PIN GPIO_ReadBit(GPIO2, GPIO_Pin_7)
8
 
41 ingob 9
#define SPI_CMD_USER             10
10
#define SPI_CMD_STICK            11
11
#define SPI_CMD_MISC         12
12
#define SPI_CMD_PARAMETER1       13
13
#define SPI_CMD_VERSION      14
14
 
15
extern s32 FC_Kalman_K;
16
extern s32 Kalman_MaxDrift;
17
extern s32 Kalman_MaxFusion;
118 killagreg 18
 
41 ingob 19
typedef struct
118 killagreg 20
{
21
        u8   Command;
22
        s16  AngleNick;  // NickAngle in 0.1 deg
23
        s16  AngleRoll;  // RollAngle in 0.1 deg
24
        s16  AccNick;
25
        s16  AccRoll;
26
        s16  GyroHeading;        // Heading in 0.1 deg
27
        s16  GyroNick;
28
        s16  GyroRoll;
29
        s16  GyroYaw;
30
        union
31
        {
32
                s8        sByte[12];
33
                u8    Byte[12];
34
                s16   Int[6];
35
                s32   Long[3];
36
                float Float[3];
37
        } Param;
38
        u8 Chksum;
41 ingob 39
 } __attribute__((packed)) FromFlightCtrl_t;
40
 
1 ingob 41
 
118 killagreg 42
#define SPI_KALMAN          103
43
#define SPI_EXTCTRL                     104
44
 
41 ingob 45
typedef struct
46
{
47
        u8 Command;
48
        s16 GPS_Nick;
49
        s16 GPS_Roll;
50
        s16 GPS_Yaw;
51
        s16 CompassHeading;
52
        s16 Status;
53
        u16 BeepTime;
54
        union
55
        {
56
                s8    sByte[12];
57
                u8    Byte[12];
58
                s16   Int[6];
59
                s32   Long[3];
60
                float Float[3];
61
        }Param;
62
        u8 Chksum;
63
 } __attribute__((packed)) ToFlightCtrl_t;
1 ingob 64
 
65
 
41 ingob 66
typedef struct
1 ingob 67
{
41 ingob 68
   u8 Major;
69
   u8 Minor;
70
   u8 Patch;
71
   u8 Compatible;
61 holgerb 72
   u8 Hardware;
41 ingob 73
} __attribute__((packed)) SPI_Version_t;
1 ingob 74
 
41 ingob 75
extern volatile FromFlightCtrl_t   FromFlightCtrl;
76
extern volatile ToFlightCtrl_t     ToFlightCtrl;
77
extern SPI_Version_t FC_Version;
78
extern fifo_t CompassCalcStateFiFo;
79
extern u32 CheckSPIOkay;
1 ingob 80
 
41 ingob 81
void SPI0_Init(void);
82
void SPI0_GetFlightCtrlVersion(void);
83
void SPI0_UpdateBuffer(void);
1 ingob 84
 
85
 
86
 
41 ingob 87
#endif //_SPI_SLAVE_H