Paparazzi UAS
v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
Toggle main menu visibility
Main Page
Related Pages
Topics
Data Structures
Data Structures
Data Structure Index
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
m
n
p
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
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
32
void
max1168_arch_init
(
void
)
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
}
32
void
max1168_arch_init
(
void
) {
…
}
50
51
void
exti2_isr
(
void
)
52
{
53
54
/* clear EXTI */
55
exti_reset_request
(
EXTI2
);
56
57
max1168_status
=
MAX1168_GOT_EOC
;
58
59
}
51
void
exti2_isr
(
void
) {
…
}
60
GPIO2
#define GPIO2
Definition
gpio_def.h:33
foo
uint16_t foo
Definition
main_demo5.c:58
max1168_status
volatile uint8_t max1168_status
Definition
max1168.c:27
max1168.h
MAX1168_GOT_EOC
#define MAX1168_GOT_EOC
Definition
max1168.h:61
GPIOB
#define GPIOB
Definition
gpio_arch.h:35
max1168_arch_init
void max1168_arch_init(void)
Definition
max1168_arch.c:24
exti2_isr
void exti2_isr(void)
Definition
max1168_arch.c:51
sw
airborne
arch
stm32
peripherals
max1168_arch.c
Generated on Fri Apr 4 2025 14:56:49 for Paparazzi UAS by
1.9.8