Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed PID ADXL345 Camera_LS_Y201 ITG3200 RangeFinder mbos xbee_lib Motor Servo
Module_Communication/Module_Communication.h
- Committer:
- IngesupMbed01
- Date:
- 2013-03-20
- Revision:
- 18:0bfd3ad421e5
- Parent:
- 14:ca1bcc05e423
- Child:
- 19:a05cd42f8e91
File content as of revision 18:0bfd3ad421e5:
/* Copyright (c) 2012 - 2013 Yang Shi
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
* SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Description : Cette classe contient les fonctionnalités du module communication.
Le module communication gère la communication entre les modules présents sur le drône et le PC.
* Input :
* Output
*/
#ifndef MODULE_COMMUNICATION_H
#define MODULE_COMMUNICATION_H
#include "mbos.h"
#include "xbee.h"
class C_ModuleCommunication
{
private :
/* ATTRIBUTS */
xbee * m_xbee;
public :
/* CONSTRUCTEUR(S) */
C_ModuleCommunication();
/* DESTRUCTEUR */
~C_ModuleCommunication();
/* METHODES */
/* Point d'entrée de la tache du Module Video */
void C_ModuleCommunication_Task(void);
/* FONCTIONS */
};
#endif
