-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for BMX160/RAK12034 compass module (#4021)
- Loading branch information
1 parent
7f2647a
commit 0852a17
Showing
22 changed files
with
1,760 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/** | ||
* @file Fusion.h | ||
* @author Seb Madgwick | ||
* @brief Main header file for the Fusion library. This is the only file that | ||
* needs to be included when using the library. | ||
*/ | ||
|
||
#ifndef FUSION_H | ||
#define FUSION_H | ||
|
||
//------------------------------------------------------------------------------ | ||
// Includes | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#include "FusionAhrs.h" | ||
#include "FusionAxes.h" | ||
#include "FusionCalibration.h" | ||
#include "FusionCompass.h" | ||
#include "FusionConvention.h" | ||
#include "FusionMath.h" | ||
#include "FusionOffset.h" | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif | ||
//------------------------------------------------------------------------------ | ||
// End of file |
Oops, something went wrong.