Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EventManager.h « Platform « src - github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f3d23c94fb269990e04b9a4819a992f8003f5c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * EventManager.h
 *
 *  Created on: 19 Oct 2021
 *      Author: David
 */

#ifndef SRC_PLATFORM_EVENTMANAGER_H_
#define SRC_PLATFORM_EVENTMANAGER_H_

#include "Event.h"

class EventManager
{
public:
	EventManager();

private:
	Event *eventsPending;								// linked list of pending events
	uint32_t lastWarningMillis;							// when we last sent a warning message
};

#endif /* SRC_PLATFORM_EVENTMANAGER_H_ */