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

RepRapFirmware.h - github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 498ac5f8ef37de91324c6c9dde97ce9c576d1b84 (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
/****************************************************************************************************

RepRapFirmware - Main Include

This includes all the other include files in the right order and defines some globals.  
No other definitions or information should be in here.

-----------------------------------------------------------------------------------------------------

Version 0.1

18 November 2012

Adrian Bowyer
RepRap Professional Ltd
http://reprappro.com

Licence: GPL

****************************************************************************************************/

#ifndef REPRAPFIRMWARE_H
#define REPRAPFIRMWARE_H

// Warn of what's to come, so we can use pointers to classes...

class Platform;
class Webserver;
class GCodes;
class Move;
class Heat;
class RepRap;

extern RepRap reprap;

// Functions and globals not part of any class

char* ftoa(char *a, const float& f, int prec);
boolean StringEndsWith(char* string, char* ending);
boolean StringStartsWith(char* string, char* starting);
boolean StringEquals(char* s1, char* s2);
int StringContains(char* string, char* match);

//#include <stdio.h>
//#include <stdlib.h>

#include <float.h>

#include "Configuration.h"
#include "Platform.h"
#include "Webserver.h" 
#include "GCodes.h"
#include "Move.h"
#include "Heat.h"
#include "Reprap.h"



#endif