Skip to content

Commit

Permalink
updated motherboard status command doc and eeprom map for firmwarev6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aleonard committed Sep 25, 2012
1 parent 3327862 commit 7d3bf26
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
4 changes: 2 additions & 2 deletions doc/s3gProtocol.md
Expand Up @@ -695,8 +695,8 @@ Response
</tr>
<tr>
<td>4</td>
<td>BORF *Deprecated*</td>
<td>Brownout reset flag was set at restart</td>
<td>WAIT_FOR_BUTTON</td>
<td>BotUI is waiting for button push by user</td>
</tr>
<tr>
<td>3</td>
Expand Down
25 changes: 12 additions & 13 deletions makerbot_driver/EEPROM/EepromMap_6.1.hh
Expand Up @@ -46,16 +46,16 @@ const static uint16_t D_TERM = 4;
}

#ifdef MODEL_REPLICATOR2
#define XSTEPS_PER_MM 88.573186f
#define YSTEPS_PER_MM 88.573186f
const static float XSTEPS_PER_MM = 88.573186f;
const static float YSTEPS_PER_MM = 88.573186f;
#else
#define XSTEPS_PER_MM 94.139704f
#define YSTEPS_PER_MM 94.139704f
const static float XSTEPS_PER_MM = 94.139704f;
const static float YSTEPS_PER_MM = 94.139704f;
#endif

#define ZSTEPS_PER_MM 400
#define ASTEPS_PER_MM 96.2752018f
#define BSTEPS_PER_MM 96.2752018f
const static float ZSTEPS_PER_MM = 400;
const static float ASTEPS_PER_MM = 96.2752018f;
const static float BSTEPS_PER_MM = 96.2752018f;

/**
* EEPROM default home axis positions in steps
Expand Down Expand Up @@ -349,8 +349,8 @@ namespace acceleration2_eeprom_offsets{
const static uint16_t EXTRUDER_DEPRIME_STEPS = 0x08; //2 * uint16_t (A & B axis)
//$BEGIN_ENTRY
//$type:B
const static uint16_t SLOWDOWN_FLAG = 0x0A; //uint8_t Bit 0 == 1 is slowdown enabled
const static uint16_t FUTURE_USE = 0x0C; //20 bytes for future use
const static uint16_t SLOWDOWN_FLAG = 0x0C; //uint8_t Bit 0 == 1 is slowdown enabled
const static uint16_t FUTURE_USE = 0x0E; //18 bytes for future use
//0x1C is end of acceleration2 settings (28 bytes long)
}

Expand Down Expand Up @@ -489,18 +489,17 @@ enum {

namespace eeprom {
const static uint8_t VERSION6_1_FLAG = 41;
void fullResetEEPROM();
void eepromResetv61();
void factoryResetEEPROM();
void fullResetEEPROM();
void setToolHeadCount(uint8_t count);
void setDefaultSettings();
void setCustomColor(uint8_t red, uint8_t green, uint8_t blue);
bool isSingleTool();
bool hasHBP();
void setDefaultsAcceleration();
void storeToolheadToleranceDefaults();
void setDefaultAxisHomePositions();
void updateBuildTime(uint8_t new_hours, uint8_t new_minutes);
float getAxisStepsPerMM(uint8_t axis);
void eepromResetv61();
void setDefaultAxisHomePositions();
}
#endif // EEPROMMAP_HHe

0 comments on commit 7d3bf26

Please sign in to comment.