38 lines
588 B
C
38 lines
588 B
C
|
/******************************************************************************
|
||
|
*
|
||
|
* Copyright (c) 2017-2019 by Löwenware Ltd
|
||
|
* Please, refer LICENSE file for legal information
|
||
|
*
|
||
|
******************************************************************************/
|
||
|
|
||
|
/**
|
||
|
* @file main.c
|
||
|
* @author Ilja Kartašov <ik@lowenware.com>
|
||
|
* @brief
|
||
|
*
|
||
|
* @see https://lowenware.com/
|
||
|
*/
|
||
|
|
||
|
#include "uart.h"
|
||
|
|
||
|
|
||
|
void
|
||
|
k_main(void);
|
||
|
|
||
|
|
||
|
void
|
||
|
k_main(void)
|
||
|
{
|
||
|
uart_init();
|
||
|
|
||
|
uart_putc('L');
|
||
|
uart_putc('o');
|
||
|
uart_putc('w');
|
||
|
uart_putc('e');
|
||
|
uart_putc('\n');
|
||
|
|
||
|
for (;;) {
|
||
|
}
|
||
|
}
|
||
|
|