Skip to content

Commit

Permalink
fixed output string
Browse files Browse the repository at this point in the history
  • Loading branch information
GiPa committed Jan 17, 2013
1 parent 0da7d2a commit a8f386c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions L12/lcd_demo/applilet3_src/r_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,18 +193,18 @@ void R_MAIN_UserInit(void)

void welcomeMessage(void) {

snprintf ( buffer, BUFFER_SIZE, "\n\n\r***********************\n\r");
snprintf ( buffer, BUFFER_SIZE, "\n\n\r**********************\n\r");
uartReady = 0;
R_UART0_Send((uint8_t *)buffer, strlen(buffer));
while(!uartReady);

snprintf ( buffer, BUFFER_SIZE, "* Renesas RL78-L12-SK *\n\r");
snprintf ( buffer, BUFFER_SIZE, "* Renesas RL78-L12 *\n\r");

uartReady = 0;
R_UART0_Send((uint8_t *)buffer, strlen(buffer));
while(!uartReady);

snprintf ( buffer, BUFFER_SIZE, "***********************\n\n\r");
snprintf ( buffer, BUFFER_SIZE, "**********************\n\n\r");
uartReady = 0;
R_UART0_Send((uint8_t *)buffer, strlen(buffer));
while(!uartReady);
Expand Down

0 comments on commit a8f386c

Please sign in to comment.