ardupilot/libraries/AP_HAL_Empty/AP_HAL_Empty.h
Caio Marcelo de Oliveira Filho 19b4ca60c4 AP_HAL: provide AP_HAL_MAIN()
Move the macros to a single place and reduce the variations not based on
board, but based on

- The name of the entry-point function, specified by AP_MAIN;
- Whether it contains argc/argv arguments or not.

The goal here is that programs (vehicles and examples) don't need to
include all possible boards to define a main function. Further patches
will change the programs.
2015-10-21 09:16:09 +11:00

27 lines
982 B
C

#ifndef __AP_HAL_EMPTY_H__
#define __AP_HAL_EMPTY_H__
/* Your layer exports should depend on AP_HAL.h ONLY. */
#include <AP_HAL/AP_HAL.h>
/**
* Umbrella header for AP_HAL_Empty module.
* The module header exports singleton instances which must conform the
* AP_HAL::HAL interface. It may only expose implementation details (class
* names, headers) via the Empty namespace.
* The class implementing AP_HAL::HAL should be called HAL_Empty and exist
* in the global namespace. There should be a single const instance of the
* HAL_Empty class called AP_HAL_Empty, instantiated in the HAL_Empty_Class.cpp
* and exported as `extern const HAL_Empty AP_HAL_Empty;` in HAL_Empty_Class.h
*
* All declaration and compilation should be guarded by CONFIG_HAL_BOARD macros.
* In this case, we're using CONFIG_HAL_BOARD == HAL_BOARD_EMPTY.
* When creating a new HAL, declare a new HAL_BOARD_ in AP_HAL/AP_HAL_Boards.h
*/
#include "HAL_Empty_Class.h"
#endif //__AP_HAL_EMPTY_H__