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

InputShaperPlan.h « Movement « src - github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e013103a739ac859a16cb454379b8aaabf285c0e (plain)
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
/*
 * InputShaperPlan.h
 *
 *  Created on: 7 Jun 2021
 *      Author: David
 */

#ifndef SRC_MOVEMENT_INPUTSHAPERPLAN_H_
#define SRC_MOVEMENT_INPUTSHAPERPLAN_H_

#include <cstdint>

union InputShaperPlan
{
	struct
	{
		uint32_t shapeAccelStart : 1,
				 shapeAccelEnd : 1,
				 shapeAccelOverlapped : 1,
				 shapeDecelStart : 1,
				 shapeDecelEnd : 1,
				 shapeDecelOverlapped : 1,
				 debugPrint : 1;
	};
	uint32_t all;

	InputShaperPlan() noexcept : all(0) { }

	void Clear() noexcept { all = 0; }

	bool IsShaped() const noexcept { return shapeAccelStart || shapeAccelEnd || shapeAccelOverlapped || shapeDecelStart || shapeDecelEnd || shapeDecelOverlapped; }
};


#endif /* SRC_MOVEMENT_INPUTSHAPERPLAN_H_ */