Skip to content

Commit

Permalink
correct serial output string
Browse files Browse the repository at this point in the history
  • Loading branch information
breaker27 committed Oct 26, 2013
1 parent 363169b commit 111d75f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware/shc_basestation/shc_basestation.c
Expand Up @@ -274,7 +274,7 @@ int main ( void )
uart_init(true);
UART_PUTS ("\r\n");
UART_PUTS ("smarthomatic Base Station V1.0 (c) 2012 Uwe Freese, www.smarthomatic.org\r\n");
UART_PUTF ("Device ID: %lu\r\n", deviceID);
UART_PUTF ("Device ID: %u\r\n", deviceID);
UART_PUTF ("Packet counter: %lu\r\n", packetcounter);
UART_PUTF ("AES key count: %u\r\n", aes_key_count);
UART_PUTS ("Waiting for incoming data. Press h for help.\r\n");
Expand Down

0 comments on commit 111d75f

Please sign in to comment.