more fixing of the sanguino math round problem
This commit is contained in:
parent
9c57453168
commit
b0c3871750
|
@ -4,6 +4,7 @@
|
|||
// Tonokip RepRap firmware rewrite based off of Hydra-mmm firmware.
|
||||
// Licence: GPL
|
||||
#define HardwareSerial_h // trick to disable the standard HWserial
|
||||
#include <math.h>
|
||||
#include <WProgram.h>
|
||||
#include "fastio.h"
|
||||
#include <avr/pgmspace.h>
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
http://reprap.org/pipermail/reprap-dev/2011-May/003323.html
|
||||
*/
|
||||
|
||||
#include <math.h>
|
||||
#include <EEPROM.h>
|
||||
|
||||
#include "EEPROMwrite.h"
|
||||
#include "fastio.h"
|
||||
#include "Configuration.h"
|
||||
|
@ -39,6 +39,7 @@
|
|||
#include "motion_control.h"
|
||||
#include "cardreader.h"
|
||||
#include "watchdog.h"
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
#define VERSION_STRING "1.0.0 Beta 1"
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
#ifndef MarlinSerial_h
|
||||
#define MarlinSerial_h
|
||||
|
||||
#include <math.h>
|
||||
#include <inttypes.h>
|
||||
//#include <Stream.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
#ifndef Wiring_h
|
||||
#define Wiring_h
|
||||
|
||||
#include <math.h>
|
||||
#include <avr/io.h>
|
||||
#include <stdlib.h>
|
||||
#include "binary.h"
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#ifndef WiringPrivate_h
|
||||
#define WiringPrivate_h
|
||||
|
||||
#include <math.h>
|
||||
#include <avr/io.h>
|
||||
#include <avr/interrupt.h>
|
||||
#include <avr/delay.h>
|
||||
|
|
|
@ -427,6 +427,7 @@
|
|||
#define TX_ENABLE_PIN 12
|
||||
#define RX_ENABLE_PIN 13
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
/****************************************************************************************
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
#ifndef planner_h
|
||||
#define planner_h
|
||||
|
||||
#include <math.h>
|
||||
#include "Configuration.h"
|
||||
#include "Marlin.h"
|
||||
|
||||
|
|
Loading…
Reference in a new issue