This is a example application for StarBoard Orange designed by @logic_star. This example can be drive a CHORO Q HYBRID.
appconf.h
- Committer:
- shintamainjp
- Date:
- 2010-09-20
- Revision:
- 1:03c8bc666945
File content as of revision 1:03c8bc666945:
#ifndef _APPCONF_H_ #define _APPCONF_H_ #include "ChoroQ.h" typedef struct { ChoroQ::Channel channel; } appconf_t; /** * Initialize a configuration. * * @param p A pointer to a configuration structure. */ void appconf_init(appconf_t *p); /** * Read a configuration. * * @param p A pointer to a configuration structure. * * @return Return 0 if read succeed. */ int appconf_read(appconf_t *p); #endif