Subversion Repositories NaviCtrl

Rev

Rev 136 | Rev 141 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 136 Rev 139
Line 1... Line 1...
1
#ifndef _CONFIG_H
1
#ifndef _CONFIG_H
2
#define _CONFIG_H
2
#define _CONFIG_H
Line 3... Line 3...
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
Line 14... Line 14...
14
#define PRIORITY_SDSWITCH 15    // switch at sd port
14
#define PRIORITY_SDSWITCH 15    // switch at sd port
15
 
15