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

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

#ifndef SRC_TASKS_H_
#define SRC_TASKS_H_

#include "RepRapFirmware.h"
#include "MessageType.h"
#include "RTOSIface.h"

namespace Tasks
{
	void Diagnostics(MessageType mtype);
	uint32_t GetNeverUsedRam();
	const Mutex *GetSpiMutex();
}

#endif /* SRC_TASKS_H_ */