-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathSystem.h
62 lines (51 loc) · 1.42 KB
/
System.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
* The MIT License (MIT)
*
* Copyright (C) 2018 Copyright (c) 2018 Gabriel Nikol
*/
#ifndef ARDUINO_MQTTSN_CLIENT_SYSTEM_H
#define ARDUINO_MQTTSN_CLIENT_SYSTEM_H
#include <stdint.h>
#if ARDUINO >= 100
#include "Arduino.h"
#endif
/**
* Defines basic functionality provided by an underlying OS or must be implemented otherwise.
*/
class System {
private:
uint32_t heartbeat_period = 10000;
uint32_t heartbeat_current = 0;
uint32_t elapsed_current = 0;
public:
/**
* Sets the heartbeat value where the System perform regular checks.
* Default value is a period of 30 000 ms
* @param period
*/
virtual void set_heartbeat(uint32_t period);
/**
* Gets the heartbeat value where the System perform regular checks.
* Default value is a period of 30 000 ms
*/
virtual uint32_t get_heartbeat();
/**
* Checks if the heartbeat is timed out.
* @return true if the heartbeat value was reached, false otherwise.
*/
virtual bool has_beaten();
/**
* Get the elapsed time between two calls of this function.
* @return the elapsed time between two calls
*/
virtual uint32_t get_elapsed_time();
/**
* Lets the execution sleep for some seconds.
*/
virtual void sleep(uint32_t duration);
/**
* Stop/exit the whole program or restart it if you want to.
*/
virtual void exit();
};
#endif //ARDUINO_MQTTSN_CLIENT_SYSTEM_H