Subversion Repositories NaviCtrl

Rev

Rev 136 | Rev 141 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 136 Rev 139
1
#ifndef _CONFIG_H
1
#ifndef _CONFIG_H
2
#define _CONFIG_H
2
#define _CONFIG_H
3
 
3
 
4
// Configure the interrupt priority  at a level from 0 to 15 (0 is highest priority)
4
// Configure the interrupt priority  at a level from 0 to 15 (0 is highest priority)
5
#define PRIORITY_SPI0 1                 // timing forced by FC
5
#define PRIORITY_SPI0 1                 // timing forced by FC
6
#define PRIORITY_USB 2                  // 
6
#define PRIORITY_USB 2                  //
7
#define PRIORITY_UART0 5        // uart to GPS/MK3MAG
7
#define PRIORITY_UART0 3        // uart to GPS/MK3MAG
8
#define PRIORITY_UART1 4                // debug uart
8
#define PRIORITY_UART1 5                // debug uart
9
#define PRIORITY_UART2 6                // uart to FC
9
#define PRIORITY_UART2 4                // uart to FC
10
#define PRIORITY_I2C1 7         // i2c to MK3MAG
10
#define PRIORITY_I2C1 7         // i2c to MK3MAG
11
#define PRIORITY_TIMER1 8       // system time
11
#define PRIORITY_TIMER1 8       // system time
12
#define PRIORITY_TIMER2 3       // servo pwm
12
#define PRIORITY_TIMER2 6       // servo pwm
13
#define PRIORITY_ADC 14         // adc conversion
13
#define PRIORITY_ADC 14         // adc conversion
14
#define PRIORITY_SDSWITCH 15    // switch at sd port
14
#define PRIORITY_SDSWITCH 15    // switch at sd port
15
 
15
 
16
#define UART0_BAUD_RATE 57600           //Baud Rate for the serial interfaces
16
#define UART0_BAUD_RATE 57600           //Baud Rate for the serial interfaces
17
#define UART1_BAUD_RATE 57600           //Baud Rate for the serial interfaces
17
#define UART1_BAUD_RATE 57600           //Baud Rate for the serial interfaces
18
#define UART2_BAUD_RATE 57600           //Baud Rate for the serial interfaces
18
#define UART2_BAUD_RATE 57600           //Baud Rate for the serial interfaces
19
#define I2C1_CLOCK 20000                        // 20 kHz
19
#define I2C1_CLOCK 20000                        // 20 kHz
20
 
20
 
21
#endif // _CONFIG_H
21
#endif // _CONFIG_H
22
 
22