BlinkenArea - GitList
Repositories
Blog
Wiki
flaneth
Code
Commits
Branches
Tags
Search
Tree:
2342395
Branches
Tags
master
flaneth
firmware
ser115200.h
change email address in header to blinkenarea address
Stefan Schuermans
commited
2342395
at 2012-05-22 19:18:57
ser115200.h
Blame
History
Raw
/* flaneth - flash and ethernet Copyright (C) 2007-2012 Stefan Schuermans <stefan@blinkenarea.org> Copyleft: GNU public license V2 - http://www.gnu.org/copyleft/gpl.html a BlinkenArea project - http://www.blinkenarea.org/ */ #ifndef INC_ser115200 #define INC_ser115200 // initialize extern void Ser115200Init(void); // send data with 115200 baud in 8N1 protocol extern void Ser115200Send(unsigned char *ptr, unsigned short len); // output a byte item with 115200 baud in 8N1 protocol extern void Ser115200Out(unsigned char val); #endif // #ifdef INC_ser115200