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 |
|
---|
18 | #include "XAir.h"
|
---|
19 | #include <FrameworkManager.h>
|
---|
20 | #include <RTDM_I2cPort.h>
|
---|
21 | #include <RTDM_SerialPort.h>
|
---|
22 | #include <Srf08.h>
|
---|
23 | #include <Gx3_25_ahrs.h>
|
---|
24 | #include <AfroBldc.h>
|
---|
25 | #include <X4X8Multiplex.h>
|
---|
26 | #include <Ps3Eye.h>
|
---|
27 | #include <BatteryMonitor.h>
|
---|
28 | #include <Tab.h>
|
---|
29 |
|
---|
30 | using std::string;
|
---|
31 | using namespace flair::core;
|
---|
32 | using namespace flair::gui;
|
---|
33 | using namespace flair::sensor;
|
---|
34 | using namespace flair::filter;
|
---|
35 | using namespace flair::actuator;
|
---|
36 |
|
---|
37 | namespace flair { namespace meta {
|
---|
38 |
|
---|
39 | XAir::XAir(FrameworkManager* parent,string uav_name,filter::UavMultiplex *multiplex) : Uav(parent,uav_name,multiplex) {
|
---|
40 | RTDM_I2cPort* i2cport=new RTDM_I2cPort(parent,"rtdm_i2c","rti2c3");
|
---|
41 | RTDM_SerialPort* imu_port=new RTDM_SerialPort(parent,"imu_port","rtser1");
|
---|
42 |
|
---|
43 | if(multiplex==NULL) SetMultiplex(new X4X8Multiplex(parent,"motors",X4X8Multiplex::X8));
|
---|
44 |
|
---|
45 | SetBldc(new AfroBldc(GetUavMultiplex(),GetUavMultiplex()->GetLayout(),"motors",GetUavMultiplex()->MotorsCount(),i2cport));
|
---|
46 | SetUsRangeFinder(new Srf08(parent,"SRF08",i2cport,0x70,60));
|
---|
47 | SetAhrs(new Gx3_25_ahrs(parent,"imu",imu_port,Gx3_25_imu::EulerAnglesAndAngularRates,70));
|
---|
48 | Tab* bat_tab=new Tab(parent->GetTabWidget(),"battery");
|
---|
49 | SetBatteryMonitor(new BatteryMonitor(bat_tab->NewRow(),"battery"));
|
---|
50 | GetBatteryMonitor()->SetBatteryValue(12);
|
---|
51 |
|
---|
52 | /*
|
---|
53 | if(VRPNType==Auto || VRPNType==AutoSerialPort)
|
---|
54 | {
|
---|
55 | RTDM_SerialPort* vrpn_port=new RTDM_SerialPort(parent,"vrpn_port","rtser3");
|
---|
56 |
|
---|
57 | vrpnclient=new VrpnClient(parent,"vrpn",vrpn_port,10000,80);
|
---|
58 | uav_vrpn=new MetaVrpnObject(vrpnclient,uav_name,VRPNSerialObjectId);
|
---|
59 | }
|
---|
60 | */
|
---|
61 | SetVerticalCamera(new Ps3Eye(parent,"camv",0,50));
|
---|
62 | }
|
---|
63 |
|
---|
64 | XAir::~XAir() {
|
---|
65 |
|
---|
66 | }
|
---|
67 |
|
---|
68 | void XAir::StartSensors(void) {
|
---|
69 | ((Gx3_25_ahrs*)GetAhrs())->Start();
|
---|
70 | ((Srf08*)GetUsRangeFinder())->Start();
|
---|
71 | ((Ps3Eye *)GetVerticalCamera())->Start();
|
---|
72 | Uav::StartSensors();
|
---|
73 | }
|
---|
74 |
|
---|
75 | } // end namespace meta
|
---|
76 | } // end namespace flair
|
---|