Skip to content

Commit

Permalink
Use portable paths (that work on Win & Linux) (speeduino#1131)
Browse files Browse the repository at this point in the history
  • Loading branch information
adbancroft authored Nov 6, 2023
1 parent 9bbd16c commit 53d18ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/test_math/test_division.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include "test_fp_support.h"
#include "maths.h"
#include "crankMaths.h"
#include "..\timer.hpp"
#include "../timer.hpp"


template <typename T>
Expand Down
2 changes: 1 addition & 1 deletion test/test_math/tests_percent.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <unity.h>
#include "test_fp_support.h"
#include "maths.h"
#include "..\timer.hpp"
#include "../timer.hpp"

static void test_percent(uint8_t percent, uint16_t value) {
assert_rounded_div((uint32_t)percent*value, 100, percentage(percent, value));
Expand Down
2 changes: 1 addition & 1 deletion test/test_schedule_calcs/test_ign_calcs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include "test_calcs_common.h"
#include "schedule_calcs.h"
#include "crankMaths.h"
#include "Decoders.h"
#include "decoders.h"

#define _countof(x) (sizeof(x) / sizeof (x[0]))

Expand Down

0 comments on commit 53d18ac

Please sign in to comment.