mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2025-03-11 09:49:11 +02:00
- atusd/ERRATA: one more problem: the transistor footprint is wrong - atusd/tools/lib/atusd.c (atusd_cycle, atusd_reset): added power cycling and hardware reset - atusd/tools/lib/atusd.h: be nice and make a header file - atusd/tools/try.c: be nice and use header files (caught a bug as well)
8 lines
179 B
C
8 lines
179 B
C
struct atusd_dsc;
|
|
|
|
|
|
struct atusd_dsc *atusd_open(void);
|
|
void atusd_close(struct atusd_dsc *dsc);
|
|
void atusd_cycle(struct atusd_dsc *dsc);
|
|
void atusd_reset(struct atusd_dsc *dsc);
|