summaryrefslogtreecommitdiff
path: root/tuer-rfid/keystore.c
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2013-09-23 02:28:07 +0000
committerChristian Pointner <equinox@spreadspace.org>2013-09-23 02:28:07 +0000
commitdabbf161337e31a3f948ad721d401e86237c137a (patch)
tree0c36637ce63a37da4200847b2c6de6ff7003f47e /tuer-rfid/keystore.c
parentlimits work now with ADC value (diff)
fixed \n\r to \r\n
git-svn-id: https://svn.spreadspace.org/avr/trunk@227 aa12f405-d877-488e-9caf-2d797e2a1cc7
Diffstat (limited to 'tuer-rfid/keystore.c')
-rw-r--r--tuer-rfid/keystore.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tuer-rfid/keystore.c b/tuer-rfid/keystore.c
index c03dc77..1a23996 100644
--- a/tuer-rfid/keystore.c
+++ b/tuer-rfid/keystore.c
@@ -38,7 +38,7 @@ void keystore_flash_from_stdio(void)
{
keyslot_t ks;
uint8_t byte_pos=0;
- printf("Info(keystore): flashing\n\r");
+ printf("Info(keystore): flashing\r\n");
fflush(stdout);
for(uint8_t ks_pos=0;ks_pos<EEPROM_SIZE/sizeof(ks);) {
anyio_task();
@@ -57,7 +57,7 @@ void keystore_flash_from_stdio(void)
}
}
}
- printf("\n\r");
+ printf("\r\n");
fputc(0, stdout);
led_off();
}
@@ -69,7 +69,7 @@ void keystore_dump_to_stdio(void)
eeprom_read_block(&ks,&keystore[ks_pos],sizeof(ks));
for (uint8_t i=0; i< sizeof(ks); i++)
printf("%02X",ks[i]);
- printf("\n\r");
+ printf("\r\n");
}
}