BlinkenArea - GitList
Repositories
Blog
Wiki
flaneth
Code
Commits
Branches
Tags
Search
Tree:
e8658d5
Branches
Tags
master
flaneth
firmware
cf.h
initial commit after making CF identify work
Stefan Schuermans
commited
e8658d5
at 2012-04-15 19:57:57
cf.h
Blame
History
Raw
/* flaneth - flash and ethernet version 0.2 date 2008-11-08 Copyright (C) 2007-2008 Stefan Schuermans <stefan@schuermans.info> Copyleft: GNU public license V2 - http://www.gnu.org/copyleft/gpl.html a BlinkenArea project - http://www.blinkenarea.org/ */ #ifndef INC_cf #define INC_cf // size of a sector in bytes #define CF_SECTOR_SIZE (512) // sector buffer extern unsigned char CfSectorBuffer[CF_SECTOR_SIZE]; // initialize extern void CfInit(void); // tick procedure - call every 20ms extern void CfTick20(void); // task function to do the work - call from main loop extern void CfTask(void); #endif // #ifndef INC_cf