Subversion Repositories NaviCtrl

Rev

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

Rev Author Line No. Line
1 ingob 1
 
2
#include "91x_conf.h"
3
#include "91x_lib.h"
24 StephanB 4
#include "91x_wiu.h"
1 ingob 5
#include "uart.h"
6
#include "ramfunc.h"
7
#include "menu.h"
8
#include <stdio.h>
9
#include <stdlib.h>
10
#include <math.h>
11
#include "printf_P.h"
12
#include "timer.h"
13
#include "spi_slave.h"
14
#include "i2c.h"
15
#include "GPS.h"
16
#include "GPSUart.h"
17
#include "sdc.h"
18
#include "ssc.h"
19
#include "fat16.h"
20
#include "usb.h"
21
#include "string.h"
22
#include "settings.h"
23
 
24
 
25
 
26
 
27
//#include "hw_config.h"
28
 
29
#define VERSION_HAUPTVERSION 0
30
#define VERSION_NEBENVERSION 1
31
#define VERSION_KOMPATIBEL 7
32
 
33
#define GPIO_ToggleBit(GPIO, Pin) if (GPIO_ReadBit(GPIO, Pin)) GPIO_WriteBit(GPIO, Pin, Bit_RESET);  else GPIO_WriteBit(GPIO, Pin, Bit_SET);
34
 
35
 
36
extern u32 TimerCompassUpdate;
37
extern u32 TimerI2CReadDelay;
38
extern u8 BeepTime;
39
void InitInterrupt(void);
40
 
41
extern u8 Parameter_UserParam1;
42
extern u8 Parameter_UserParam2;
43
extern u8 Parameter_UserParam3;
44
extern u8 Parameter_UserParam4;
45
extern u8 Parameter_UserParam5;
46
extern u8 Parameter_UserParam6;
47
extern u8 Parameter_UserParam7;
48
extern u8 Parameter_UserParam8;
49
extern s32 FC_StickNick;
50
extern s32 FC_StickRoll;
51
extern s32 FC_StickGier;
52
extern s32 FC_StickGas;
53
extern s32 FC_Poti1;
54
extern s32 FC_Poti2;
55
extern s32 FC_Poti3;
56
extern s32 FC_Poti4;
57
extern s32 SenderOkay;
58
extern u8 text[20];