Easy Transfer and Due

Have been moving a project from the Mega to the Due. It uses Easy Transfer. It didn't compile. Happily i solved the problem.

(It might be the case that it's not working fully i don't know, it works for what i use it for)

Find these in EasyTransfer.h

//#include <math.h>
#include <stdio.h>
#include <stdint.h>
#include <avr/io.h>

comment them out and it seems to work i don't think it needs them.

So the begining looks like this

#ifndef EasyTransfer_h
#define EasyTransfer_h


//make it a little prettier on the front end. 
#define details(name) (byte*)&name,sizeof(name)

//Not neccessary, but just in case. 
#if ARDUINO > 22
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
#include "HardwareSerial.h"
//#include <NewSoftSerial.h>
//#include <math.h>
//#include <stdio.h>
//#include <stdint.h>
//#include <avr/io.h>