forked from JoaoDiogoFalcao/Arduino_Due_SD_HSCMI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfiguration.h
More file actions
41 lines (29 loc) · 1.12 KB
/
Configuration.h
File metadata and controls
41 lines (29 loc) · 1.12 KB
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
/****************************************************************************************************
PowerDueFirware - SD Configuration
This firmware is a port from:
"Version 0.1
18 November 2012
Adrian Bowyer
RepRap Professional Ltd
http://reprappro.com
Licence: GPL"
To work with the PowerDue
-----------------------------------------------------------------------------------------------------
****************************************************************************************************/
#ifndef CONFIGURATION_H
#define CONFIGURATION_H
#define NAME "PowerDue firmware"
#define VERSION "0.0.1"
#define DATE "2016-01-25"
#define AUTHORS "JoaoDiogoFalcao @ CMU"
// String lengths
#define STRING_LENGTH 1024
#define SHORT_STRING_LENGTH 40
#define FILENAME_LENGTH 100
#define GCODE_REPLY_LENGTH 2048
#define LIST_SEPARATOR ':' // Lists in G Codes
#define FILE_LIST_SEPARATOR ',' // Put this between file names when listing them
#define FILE_LIST_BRACKET '"' // Put these round file names when listing them
#define LONG_TIME 300.0 // Seconds
#define EOF_STRING "<!-- **EoF** -->" // For HTML uploads
#endif