1 | // %flair:license{
|
---|
2 | // This file is part of the Flair framework distributed under the
|
---|
3 | // CECILL-C License, Version 1.0.
|
---|
4 | // %flair:license}
|
---|
5 | // created: 2015/02/08
|
---|
6 | // filename: XAir.cpp
|
---|
7 | //
|
---|
8 | // author: Guillaume Sanahuja
|
---|
9 | // Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
10 | //
|
---|
11 | // version: $Id: $
|
---|
12 | //
|
---|
13 | // purpose: Class defining a Xair uav
|
---|
14 | //
|
---|
15 | //
|
---|
16 | /*********************************************************************/
|
---|
17 | #ifdef ARMV7A
|
---|
18 |
|
---|
19 | #include "XAir.h"
|
---|
20 | #include <FrameworkManager.h>
|
---|
21 | #include <RTDM_I2cPort.h>
|
---|
22 | #include <RTDM_SerialPort.h>
|
---|
23 | #include <Srf08.h>
|
---|
24 | #include <Gx3_25_ahrs.h>
|
---|
25 | #include <AfroBldc.h>
|
---|
26 | #include <X4X8Multiplex.h>
|
---|
27 | #include <Ps3Eye.h>
|
---|
28 | #include <BatteryMonitor.h>
|
---|
29 | #include <Tab.h>
|
---|
30 |
|
---|
31 | using std::string;
|
---|
32 | using namespace flair::core;
|
---|
33 | using namespace flair::gui;
|
---|
34 | using namespace flair::sensor;
|
---|
35 | using namespace flair::filter;
|
---|
36 | using namespace flair::actuator;
|
---|
37 |
|
---|
38 | namespace flair {
|
---|
39 | namespace meta {
|
---|
40 |
|
---|
41 | XAir::XAir(string name, string options,
|
---|
42 | filter::UavMultiplex *multiplex)
|
---|
43 | : Uav(name, multiplex) {
|
---|
44 | RTDM_I2cPort *i2cport = new RTDM_I2cPort(getFrameworkManager(), "rtdm_i2c", "rti2c3");
|
---|
45 | RTDM_SerialPort *imu_port = new RTDM_SerialPort(getFrameworkManager(), "imu_port", "rtser1");
|
---|
46 |
|
---|
47 | if (multiplex == NULL)
|
---|
48 | SetMultiplex(new X4X8Multiplex("motors", X4X8Multiplex::X8));
|
---|
49 |
|
---|
50 | SetBldc(new AfroBldc(GetUavMultiplex(), GetUavMultiplex()->GetLayout(),
|
---|
51 | "motors", GetUavMultiplex()->MotorsCount(), i2cport));
|
---|
52 | SetUsRangeFinder(new Srf08("SRF08", i2cport, 0x70, 60));
|
---|
53 | SetAhrs(new Gx3_25_ahrs("imu", imu_port,
|
---|
54 | Gx3_25_imu::AccelerationAngularRateAndOrientationMatrix, 70));
|
---|
55 | Tab *bat_tab = new Tab(getFrameworkManager()->GetTabWidget(), "battery");
|
---|
56 | SetBatteryMonitor(new BatteryMonitor(bat_tab->NewRow(), "battery"));
|
---|
57 | GetBatteryMonitor()->SetBatteryValue(12);
|
---|
58 |
|
---|
59 | if(Image::IsUsingDefaultAllocAndFree()) {
|
---|
60 | SetVerticalCamera(new Ps3Eye("camv", 0, false,50));//no cmem and no dsp
|
---|
61 | } else {
|
---|
62 | SetVerticalCamera(new Ps3Eye("camv", 0, true,50));//cmem and dsp
|
---|
63 | }
|
---|
64 | }
|
---|
65 |
|
---|
66 | XAir::~XAir() {}
|
---|
67 |
|
---|
68 | void XAir::StartSensors(void) {
|
---|
69 | ((Gx3_25_imu *)(GetAhrs()->GetImu()))->Start();
|
---|
70 | ((Srf08 *)GetUsRangeFinder())->Start();
|
---|
71 | ((Ps3Eye *)GetVerticalCamera())->Start();
|
---|
72 | }
|
---|
73 |
|
---|
74 | bool XAir::isReadyToFly(void) const {
|
---|
75 | return GetAhrs()->GetImu()->IsReady();
|
---|
76 | }
|
---|
77 |
|
---|
78 | } // end namespace meta
|
---|
79 | } // end namespace flair
|
---|
80 |
|
---|
81 | #endif
|
---|