-
Notifications
You must be signed in to change notification settings - Fork 120
/
Tool.h
159 lines (127 loc) · 3.25 KB
/
Tool.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/****************************************************************************************************
RepRapFirmware - Tool
This class implements a tool in the RepRap machine, usually (though not necessarily) an extruder.
Tools may have zero or more drives associated with them and zero or more heaters. There are a fixed number
of tools in a given RepRap, with fixed heaters and drives. All this is specified on reboot, and cannot
be altered dynamically. This restriction may be lifted in the future. Tool descriptions are stored in
GCode macros that are loaded on reboot.
-----------------------------------------------------------------------------------------------------
Version 0.1
Created on: Apr 11, 2014
Adrian Bowyer
RepRap Professional Ltd
http://reprappro.com
Licence: GPL
****************************************************************************************************/
#ifndef TOOL_H_
#define TOOL_H_
class Tool
{
public:
Tool(int toolNumber, long d[], int dCount, long h[], int hCount);
const float *GetOffset() const;
void SetOffset(const float offs[AXES]);
int DriveCount() const;
int Drive(int driveNumber) const;
bool ToolCanDrive(bool extrude);
int HeaterCount() const;
int Heater(int heaterNumber) const;
int Number() const;
void SetVariables(float* standby, float* active);
void GetVariables(float* standby, float* active) const;
void DefineMix(float* m);
float* GetMix() const;
void TurnMixingOn();
void TurnMixingOff();
bool Mixing() const;
float MaxFeedrate() const;
float InstantDv() const;
void Print(StringRef& reply);
friend class RepRap;
protected:
Tool* Next() const;
void Activate(Tool* currentlyActive);
void Standby();
void AddTool(Tool* tool);
void FlagTemperatureFault(int8_t dudHeater);
void ClearTemperatureFault(int8_t wasDudHeater);
void UpdateExtruderAndHeaterCount(uint16_t &extruders, uint16_t &heaters) const;
bool DisplayColdExtrudeWarning();
private:
void SetTemperatureFault(int8_t dudHeater);
void ResetTemperatureFault(int8_t wasDudHeater);
bool AllHeatersAtHighTemperature(bool forExtrusion) const;
int myNumber;
int* drives;
float* mix;
bool mixing;
int driveCount;
int* heaters;
float* activeTemperatures;
float* standbyTemperatures;
int heaterCount;
Tool* next;
bool active;
bool heaterFault;
float offset[AXES];
volatile bool displayColdExtrudeWarning;
};
inline int Tool::Drive(int driveNumber) const
{
return drives[driveNumber];
}
inline int Tool::HeaterCount() const
{
return heaterCount;
}
inline int Tool::Heater(int heaterNumber) const
{
return heaters[heaterNumber];
}
inline Tool* Tool::Next() const
{
return next;
}
inline int Tool::Number() const
{
return myNumber;
}
inline void Tool::DefineMix(float* m)
{
for(int8_t drive = 0; drive < driveCount; drive++)
{
mix[drive] = m[drive];
}
}
inline float* Tool::GetMix() const
{
return mix;
}
inline void Tool::TurnMixingOn()
{
mixing = true;
}
inline void Tool::TurnMixingOff()
{
mixing = false;
}
inline bool Tool::Mixing() const
{
return mixing;
}
inline int Tool::DriveCount() const
{
return driveCount;
}
inline const float *Tool::GetOffset() const
{
return offset;
}
inline void Tool::SetOffset(const float offs[AXES])
{
for(size_t i = 0; i < AXES; ++i)
{
offset[i] = offs[i];
}
}
#endif /* TOOL_H_ */