123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- #ifndef __EEPROMH
- #define __EEPROMH
-
- #include "Marlin.h"
- #include "planner.h"
- #include "temperature.h"
- #include <EEPROM.h>
-
- template <class T> int EEPROM_writeAnything(int &ee, const T& value)
- {
- const byte* p = (const byte*)(const void*)&value;
- int i;
- for (i = 0; i < (int)sizeof(value); i++)
- EEPROM.write(ee++, *p++);
- return i;
- }
-
- template <class T> int EEPROM_readAnything(int &ee, T& value)
- {
- byte* p = (byte*)(void*)&value;
- int i;
- for (i = 0; i < (int)sizeof(value); i++)
- *p++ = EEPROM.read(ee++);
- return i;
- }
- //======================================================================================
-
- #include <avr/pgmspace.h>
-
- void serialprintPGM(const char *str)
- {
- char ch=pgm_read_byte(str);
- while(ch)
- {
- Serial.print(ch);
- ch=pgm_read_byte(++str);
- }
- }
- #define SerialprintPGM(x) serialprintPGM(PSTR(x))
-
- #define EEPROM_OFFSET 100
-
-
- // IMPORTANT: Whenever there are changes made to the variables stored in EEPROM
- // in the functions below, also increment the version number. This makes sure that
- // the default values are used whenever there is a change to the data, to prevent
- // wrong data being written to the variables.
- // ALSO: always make sure the variables in the Store and retrieve sections are in the same order.
- #define EEPROM_VERSION "V04"
-
- void StoreSettings()
- {
- char ver[4]= "000";
- int i=EEPROM_OFFSET;
- EEPROM_writeAnything(i,ver); // invalidate data first
- EEPROM_writeAnything(i,axis_steps_per_unit);
- EEPROM_writeAnything(i,max_feedrate);
- EEPROM_writeAnything(i,max_acceleration_units_per_sq_second);
- EEPROM_writeAnything(i,acceleration);
- EEPROM_writeAnything(i,retract_acceleration);
- EEPROM_writeAnything(i,minimumfeedrate);
- EEPROM_writeAnything(i,mintravelfeedrate);
- EEPROM_writeAnything(i,minsegmenttime);
- EEPROM_writeAnything(i,max_xy_jerk);
- EEPROM_writeAnything(i,max_z_jerk);
- #ifdef PIDTEMP
- EEPROM_writeAnything(i,Kp);
- EEPROM_writeAnything(i,Ki);
- EEPROM_writeAnything(i,Kd);
- #else
- EEPROM_writeAnything(i,3000);
- EEPROM_writeAnything(i,0);
- EEPROM_writeAnything(i,0);
- #endif
- char ver2[4]=EEPROM_VERSION;
- i=EEPROM_OFFSET;
- EEPROM_writeAnything(i,ver2); // validate data
- SerialprintPGM("echo: Settings Stored\n");
- }
-
- void RetrieveSettings(bool def=false)
- { // if def=true, the default values will be used
- int i=EEPROM_OFFSET;
- char stored_ver[4];
- char ver[4]=EEPROM_VERSION;
- EEPROM_readAnything(i,stored_ver); //read stored version
- // SERIAL_ECHOLN("Version: [" << ver << "] Stored version: [" << stored_ver << "]");
- if ((!def)&&(strncmp(ver,stored_ver,3)==0))
- { // version number match
- EEPROM_readAnything(i,axis_steps_per_unit);
- EEPROM_readAnything(i,max_feedrate);
- EEPROM_readAnything(i,max_acceleration_units_per_sq_second);
- EEPROM_readAnything(i,acceleration);
- EEPROM_readAnything(i,retract_acceleration);
- EEPROM_readAnything(i,minimumfeedrate);
- EEPROM_readAnything(i,mintravelfeedrate);
- EEPROM_readAnything(i,minsegmenttime);
- EEPROM_readAnything(i,max_xy_jerk);
- EEPROM_readAnything(i,max_z_jerk);
- #ifndef PIDTEMP
- float Kp,Ki,Kd;
- #endif
- EEPROM_readAnything(i,Kp);
- EEPROM_readAnything(i,Ki);
- EEPROM_readAnything(i,Kd);
-
- SerialprintPGM("echo: Stored settings retreived:\n");
- }
- else
- {
- float tmp1[]=DEFAULT_AXIS_STEPS_PER_UNIT;
- float tmp2[]=DEFAULT_MAX_FEEDRATE;
- long tmp3[]=DEFAULT_MAX_ACCELERATION;
- for (short i=0;i<4;i++)
- {
- axis_steps_per_unit[i]=tmp1[i];
- max_feedrate[i]=tmp2[i];
- max_acceleration_units_per_sq_second[i]=tmp3[i];
- }
- acceleration=DEFAULT_ACCELERATION;
- retract_acceleration=DEFAULT_RETRACT_ACCELERATION;
- minimumfeedrate=DEFAULT_MINIMUMFEEDRATE;
- minsegmenttime=DEFAULT_MINSEGMENTTIME;
- mintravelfeedrate=DEFAULT_MINTRAVELFEEDRATE;
- max_xy_jerk=DEFAULT_XYJERK;
- max_z_jerk=DEFAULT_ZJERK;
- SerialprintPGM("echo: Using Default settings:\n");
- }
- SerialprintPGM("echo: Steps per unit:\n M92 X");
- Serial.print(axis_steps_per_unit[0]);
- SerialprintPGM(" Y");
- Serial.print(axis_steps_per_unit[1]);
- SerialprintPGM(" Z");
- Serial.print(axis_steps_per_unit[2]);
- SerialprintPGM(" E");
- Serial.print(axis_steps_per_unit[3]);
-
- SerialprintPGM("\nMaximum feedrates (mm/s):\n M203 X" );
- Serial.print(max_feedrate[0]/60);
- SerialprintPGM(" Y" );
- Serial.print(max_feedrate[1]/60 );
- SerialprintPGM(" Z" );
- Serial.print(max_feedrate[2]/60 );
- SerialprintPGM(" E" );
- Serial.print(max_feedrate[3]/60);
- SerialprintPGM("\nMaximum Acceleration (mm/s2):\n M201 X" );
- Serial.print(max_acceleration_units_per_sq_second[0] );
- SerialprintPGM(" Y" );
- Serial.print(max_acceleration_units_per_sq_second[1] );
- SerialprintPGM(" Z" );
- Serial.print(max_acceleration_units_per_sq_second[2] );
- SerialprintPGM(" E" );
- Serial.print(max_acceleration_units_per_sq_second[3]);
- SerialprintPGM("\necho: Acceleration: S=acceleration, T=retract acceleration\n M204 S" );
- Serial.print(acceleration );
- SerialprintPGM(" T" );
- Serial.print(retract_acceleration);
- SerialprintPGM("\necho: Advanced variables: S=Min feedrate (mm/s), T=Min travel feedrate (mm/s), B=minimum segment time (ms), X=maximum xY jerk (mm/s), Z=maximum Z jerk (mm/s)");
- SerialprintPGM(" M205 S" );
- Serial.print(minimumfeedrate/60 );
- SerialprintPGM(" T" );
- Serial.print(mintravelfeedrate/60 );
- SerialprintPGM(" B" );
- Serial.print(minsegmenttime );
- SerialprintPGM(" X" );
- Serial.print(max_xy_jerk/60 );
- SerialprintPGM(" Z" );
- Serial.print(max_z_jerk/60);
- SerialprintPGM("\n" );
- #ifdef PIDTEMP
- SerialprintPGM("PID settings:");
- SerialprintPGM(" M301 P" );
- Serial.print(Kp );
- SerialprintPGM(" I" );
- Serial.print(Ki );
- SerialprintPGM(" D" );
- Serial.print(Kd);
- #endif
- }
-
- #endif
-
|