Paparazzi UAS
v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
actuators_skiron.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2011 Gautier Hattenberger
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
26
#ifndef ACTUATORS_SKIRON_H
27
#define ACTUATORS_SKIRON_H
28
29
#include "
std.h
"
30
#include "
mcu_periph/i2c.h
"
31
32
#include "generated/airframe.h"
33
34
// Use I2C broadcast adderss
35
#define ACTUATORS_SKIRON_I2C_ADDR 0x00
36
37
struct
ActuatorsSkiron
{
38
struct
i2c_transaction
trans
;
39
};
40
41
extern
struct
ActuatorsSkiron
actuators_skiron
;
42
43
extern
void
actuators_skiron_init
(
void
);
44
extern
void
actuators_skiron_set
(
void
);
45
46
#define ActuatorSkironSet(_i, _v) { actuators_skiron.trans.buf[_i] = _v; }
47
#define ActuatorsSkironInit() actuators_skiron_init()
48
#define ActuatorsSkironCommit() actuators_skiron_set()
49
50
#endif
/* ACTUATORS_SKIRON_H */
actuators_skiron_init
void actuators_skiron_init(void)
Definition:
actuators_skiron.c:37
actuators_skiron_set
void actuators_skiron_set(void)
Definition:
actuators_skiron.c:47
std.h
ActuatorsSkiron::trans
struct i2c_transaction trans
Definition:
actuators_skiron.h:38
ActuatorsSkiron
Definition:
actuators_skiron.h:37
i2c_transaction
I2C transaction structure.
Definition:
i2c.h:93
actuators_skiron
struct ActuatorsSkiron actuators_skiron
Definition:
actuators_skiron.c:34
i2c.h
sw
airborne
subsystems
actuators
actuators_skiron.h
Generated on Tue Feb 1 2022 13:51:17 for Paparazzi UAS by
1.8.17