Vehicle Control Unit 0.01
This is the c library for controlling the car.
|
#include <Updateable.h>
Public Attributes | |
char | name [MAX_NAME_LENGTH] |
int | hz |
int | enabled |
int(* | update )(struct Updateable *self) |
int(* | status )(struct Updateable *self) |
int(* | enable )(struct Updateable *self) |
int(* | disable )(struct Updateable *self) |
UpdateableType | type |
void * | child |
Definition at line 23 of file Updateable.h.
void* Updateable::child |
Definition at line 32 of file Updateable.h.
int(* Updateable::disable) (struct Updateable *self) |
Definition at line 30 of file Updateable.h.
int(* Updateable::enable) (struct Updateable *self) |
Definition at line 29 of file Updateable.h.
int Updateable::enabled |
Definition at line 26 of file Updateable.h.
int Updateable::hz |
Definition at line 25 of file Updateable.h.
char Updateable::name[MAX_NAME_LENGTH] |
Definition at line 24 of file Updateable.h.
int(* Updateable::status) (struct Updateable *self) |
Definition at line 28 of file Updateable.h.
UpdateableType Updateable::type |
Definition at line 31 of file Updateable.h.
int(* Updateable::update) (struct Updateable *self) |
Definition at line 27 of file Updateable.h.