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

firmware_types.h « ArcWelderInverseProcessor - github.com/FormerLurker/ArcWelderLib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 775a7316066141aac29dd663422a65af5c82ec46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
#include <string>

enum firmware_types { MARLIN_1=0, MARLIN_2=1, REPETIER=2, PRUSA=3, SMOOTHIEWARE=4};
#define NUM_FIRMWARE_TYPES 5
static const std::string firmware_type_names[NUM_FIRMWARE_TYPES] = {
		 "MARLIN_1", "MARLIN_2", "REPETIER", "PRUSA", "SMOOTHIEWARE"
};