Skip to content

Commit

Permalink
Renamed hackflight.h => hackflight.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
simondlevy committed Jul 24, 2024
1 parent 4ce09a5 commit b5f57cb
Show file tree
Hide file tree
Showing 12 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion examples/dsmx/dsmx.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include <oneshot125.hpp>
#include <vector>

#include <hackflight.h>
#include <hackflight.hpp>

#include <mixers.hpp>
#include <utils.hpp>
Expand Down
2 changes: 1 addition & 1 deletion examples/sbus/sbus.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include <oneshot125.hpp>
#include <vector>

#include <hackflight.h>
#include <hackflight.hpp>

#include <mixers.hpp>
#include <utils.hpp>
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ paragraph=Minimalist flight-control software
category=Other
url=https://github.com/simondlevy/Hackflight
architectures=*
includes=hackflight.h
includes=hackflight.hpp
File renamed without changes.
2 changes: 1 addition & 1 deletion src/madgwick.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#pragma once

#include <hackflight.h>
#include <hackflight.hpp>
#include <utils.hpp>

class MadgwickFilter {
Expand Down
2 changes: 1 addition & 1 deletion src/mixers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#pragma once

#include <hackflight.h>
#include <hackflight.hpp>

class Mixer {

Expand Down
2 changes: 1 addition & 1 deletion src/pid.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#pragma once

#include <hackflight.h>
#include <hackflight.hpp>
#include <utils.hpp>

class PID {
Expand Down
2 changes: 1 addition & 1 deletion src/tasks/core.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <hackflight.h>
#include <hackflight.hpp>
#include <mixers.hpp>
#include <utils.hpp>

Expand Down
2 changes: 1 addition & 1 deletion src/tasks/debug.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <hackflight.h>
#include <hackflight.hpp>
#include <timer.hpp>

class DebugTask {
Expand Down
2 changes: 1 addition & 1 deletion src/tasks/ekf_predict.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <hackflight.h>
#include <hackflight.hpp>
#include <timer.hpp>
#include <ekf.hpp>

Expand Down
2 changes: 1 addition & 1 deletion src/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#pragma once

#include <math.h>
#include <hackflight.h>
#include <hackflight.hpp>

#ifndef M_PI
#define M_PI 3.1415928f
Expand Down
2 changes: 1 addition & 1 deletion webots/controllers/haskell/haskell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
along with this program. If not, see <http:--www.gnu.org/licenses/>.
*/

#include <hackflight.h>
#include <hackflight.hpp>
#include <webots.hpp>

// ----------------------------------------------------------------------------
Expand Down

0 comments on commit b5f57cb

Please sign in to comment.