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

GCodeChannel.h « GCodes « src - github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ed320467ad6886164e37f144837bce6c3bf4aca (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
/*
 * GCodeChannel.h
 *
 *  Created on: 04 Jul 2019
 *      Author: Christian
 */

#include <cstdint>

#ifndef SRC_GCODES_GCODEBUFFER_CODECHANNEL_H_
#define SRC_GCODES_GCODEBUFFER_CODECHANNEL_H_

enum class GCodeChannel : uint8_t
{
	http = 0,
	telnet = 1,
	file = 2,
	usb = 3,
	aux = 4,
	daemon = 5,
	queue = 6,
	lcd = 7,
	spi = 8,
	autopause = 9
};

constexpr size_t NumGCodeChannels = 10;

extern const char * const gcodeChannelName[];

#endif