Skip to content

Commit 0b2558e

Browse files
committed
upd
1 parent abcfac2 commit 0b2558e

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Looper
2-
version=1.0.0
2+
version=1.0.1
33
author=AlexGyver <[email protected]>
44
maintainer=AlexGyver <[email protected]>
55
sentence=Simple task and event manager for Arduino

src/nodes/CallbackData.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include "utils/macro.h"
2+
#include "../utils/macro.h"
33

44
template <typename T>
55
class TaskCallbackData {

src/nodes/LoopTask.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
#include <inttypes.h>
33
#include <stddef.h>
44

5-
#include "utils/flags.h"
6-
#include "utils/hash.h"
7-
#include "utils/list.h"
8-
#include "utils/macro.h"
5+
#include "../utils/flags.h"
6+
#include "../utils/hash.h"
7+
#include "../utils/list.h"
8+
#include "../utils/macro.h"
99

1010
#define TASK_ENABLED (1 << 0)
1111
#define TASK_IS_LISTENER (1 << 1)

src/nodes/Timer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22
#include "CallbackData.h"
33
#include "LoopTask.h"
4-
#include "utils/SimpleTimer.h"
4+
#include "../utils/SimpleTimer.h"
55

66
// задача-интервальный таймер
77
class LoopTimer : public LoopTask, public SimpleTimer {

src/utils/SimpleTimer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include "SimpleTimer.h"
22

3-
#include "platform.h"
3+
#include "../platform.h"
44

55
void SimpleTimer::restart() {
66
_tmr = looper::millis();

0 commit comments

Comments
 (0)