blob: 6a4bf10411b5ae45754a1dcfc2385d9c4418ed95 [file] [log] [blame]
#include <zephyr.h>
#include <misc/printk.h>
#include <console.h>
void main(void)
{
console_init();
while (1) {
u8_t c = console_getchar();
printk("char: [0x%x] %c\n", c, c);
}
}