BlinkenArea - GitList
Repositories
Blog
Wiki
flaneth
Code
Commits
Branches
Tags
Search
Tree:
28c2376
Branches
Tags
master
flaneth
firmware
mcuf_in.h
implement MCUF input via Ethernet
Stefan Schuermans
commited
28c2376
at 2019-05-01 21:00:49
mcuf_in.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_mcuf_in #define INC_mcuf_in // check if MCUF input is active extern int McufInIsActive(void); // tick procedure - call every 200ms extern void McufInTick200(void); // process a received MCUF packet extern void McufInRecv(unsigned char *pData, unsigned short Length); #endif // #ifdef INC_mcuf_in