Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if ( eeprom_read_byte( &eep.byte8[IS_INIT] ) == 0xA3 )
- {
- flag.isInit = 1;
- return;
- }
- flag.isInit = 0;
- if ( !flag.isInit )
- {
- scroll_display( "Default Werte werden geladen.." , INFO_SCROLL_SPEED );
- for (uint8_t i = 0 ; i < 32 ; i++ )
- {
- putChar( '|' , i );
- _delay_ms(150);
- }
- for (uint8_t i = 32 ; i > 0 ; i-- )
- {
- putChar( ' ' , i );
- _delay_ms(50);
- }
- clearDisplay( true , false );
- flag.isInit = 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement