added some files for MSP430X I/O
This commit is contained in:
parent
ef880ddf1f
commit
c0549cad3d
8 changed files with 585 additions and 4 deletions
9
cpu/msp430/dev/uart0-putchar.c
Normal file
9
cpu/msp430/dev/uart0-putchar.c
Normal file
|
@ -0,0 +1,9 @@
|
|||
#include "dev/uart0.h"
|
||||
#include <stdio.h>
|
||||
|
||||
int
|
||||
putchar(int c)
|
||||
{
|
||||
uart0_writeb((char)c);
|
||||
return c;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue