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

Event.cpp « Platform « src - github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ddc17eb6fde68ff0c0591593a06ede2b798bb8c1 (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
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
/*
 * Event.cpp
 *
 *  Created on: 18 Oct 2021
 *      Author: David
 */

#include <Platform/Event.h>
#include <RepRapFirmware.h>

Event::Event(Event *p_next, EventType et, EventParameter p_param, CanAddress p_ba, uint8_t devNum) noexcept
	: next(p_next), param(p_param), type(et), boardAddress(p_ba), deviceNumber(devNum)
{
}

void Event::AppendText(const StringRef &str) const noexcept
{
	// First append the event type with underscores changed to spaces
	const char *p = type.ToString();
	while (*p != 0)
	{
		str.cat((*p == '_') ? ' ' : *p);
		++p;
	}

	// Now append further details of the event
	switch (type.ToBaseType())
	{
	case EventType::Heater_fault:
		str.catf("on heater %u: %s", deviceNumber, HeaterFaultType(param.heaterFaultStatus).ToString());
		break;

	case EventType::Driver_error:
	case EventType::Driver_warning:
#if SUPPORT_CAN_EXPANSION
		str.catf(" on %u.%u", boardAddress, deviceNumber);
#else
		str.catf(" on %u", deviceNumber);
#endif
		param.driverStatus.AppendText(str, (type == EventType::Driver_error) ? 2 : 1);
		break;

	case EventType::Filament_error:
		str.catf(" on extruder %u: %s", deviceNumber, FilamentSensorStatus(param.filamentStatus).ToString());
		break;

	case EventType::Main_board_power_failure:
		break;

	case EventType::Trigger:
		str.catf(" %u activated", deviceNumber);
		break;

	case EventType::Mcu_temperature_warning:
#if SUPPORT_CAN_EXPANSION
		str.catf("on board %u: temperature %.1fC", boardAddress, (double)param.fVal);
#else
		str.catf(": temperature %.1fC", (double)param.fVal);
#endif
		break;
	}
}

// Append the name of the macro that we run when this event occurs
void Event::GetMacroFileName(const StringRef& fname) const noexcept
{
	const char *p = type.ToString();
	fname.cat((char)tolower(*p++));
	while (*p != 0)
	{
		if (*p == '_' && p[1] != 0)
		{
			fname.cat(toupper(p[1]));
			p += 2;
		}
		else
		{
			fname.cat(*p++);
		}
	}
	fname.cat(".g");
}

// End