Paparazzi UAS  v5.15_devel-230-gc96ce27
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
max1168_arch.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2010 Antoine Drouin <poinix@gmail.com>
3  *
4  * This file is part of paparazzi.
5  *
6  * paparazzi is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * paparazzi is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with paparazzi; see the file COPYING. If not, write to
18  * the Free Software Foundation, 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21 #include "peripherals/max1168.h"
22 
23 #include "libopencm3/stm32/rcc.h"
24 #include "libopencm3/stm32/gpio.h"
25 #include "libopencm3/stm32/exti.h"
26 #include <libopencm3/cm3/nvic.h>
27 
28 #ifndef STM32F1
29 #error "HMC5843 arch currently only implemented for STM32F1"
30 #endif
31 
33 {
34 
35  /* configure external interrupt exti2 on PD2( data ready ) v1.0*/
36  /* PB2( data ready ) v1.1*/
37  rcc_periph_clock_enable(RCC_GPIOB);
38  rcc_periph_clock_enable(RCC_AFIO);
39  gpio_set_mode(GPIOB, GPIO_MODE_INPUT,
40  GPIO_CNF_INPUT_FLOAT, GPIO2);
41 
42  exti_select_source(EXTI2, GPIOB);
43  exti_set_trigger(EXTI2, EXTI_TRIGGER_FALLING);
44  exti_enable_request(EXTI2);
45 
46  nvic_set_priority(NVIC_EXTI2_IRQ, 0xF);
47  nvic_enable_irq(NVIC_EXTI2_IRQ);
48 
49 }
50 
51 void exti2_isr(void)
52 {
53 
54  /* clear EXTI */
55  exti_reset_request(EXTI2);
56 
58 
59 }
60 
#define GPIOB
Definition: gpio_arch.h:37
void exti2_isr(void)
Definition: max1168_arch.c:51
void max1168_arch_init(void)
Definition: max1168_arch.c:31
volatile uint8_t max1168_status
Definition: max1168.c:27
#define MAX1168_GOT_EOC
Definition: max1168.h:61
#define GPIO2
Definition: gpio_def.h:33