Skip to content

Commit

Permalink
Make sure the platform level is configured.
Browse files Browse the repository at this point in the history
  • Loading branch information
daid committed Mar 12, 2014
1 parent ea76d29 commit 8058e56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/UltiLCD2_menu_first_run.h
Expand Up @@ -2,7 +2,7 @@
#define ULTI_LCD2_MENU_FIRST_RUN_H

#define EEPROM_FIRST_RUN_DONE_OFFSET 0x400
#define IS_FIRST_RUN_DONE() (eeprom_read_byte((const uint8_t*)EEPROM_FIRST_RUN_DONE_OFFSET) == 'U')
#define IS_FIRST_RUN_DONE() ((eeprom_read_byte((const uint8_t*)EEPROM_FIRST_RUN_DONE_OFFSET) == 'U') && add_homeing[2] != 0.0)
#define SET_FIRST_RUN_DONE() do { eeprom_write_byte((uint8_t*)EEPROM_FIRST_RUN_DONE_OFFSET, 'U'); } while(0)

void lcd_menu_first_run_init();
Expand Down

0 comments on commit 8058e56

Please sign in to comment.