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 |
void(* | update )(void *self) |
int(* | status )(struct Updateable *self) |
int(* | enable )(struct Updateable *self) |
int(* | disable )(struct Updateable *self) |
Definition at line 22 of file Updateable.h.
int(* Updateable::disable) (struct Updateable *self) |
Definition at line 29 of file Updateable.h.
int(* Updateable::enable) (struct Updateable *self) |
Definition at line 28 of file Updateable.h.
int Updateable::enabled |
Definition at line 25 of file Updateable.h.
int Updateable::hz |
Definition at line 24 of file Updateable.h.
char Updateable::name[MAX_NAME_LENGTH] |
Definition at line 23 of file Updateable.h.
int(* Updateable::status) (struct Updateable *self) |
Definition at line 27 of file Updateable.h.
void(* Updateable::update) (void *self) |
Definition at line 26 of file Updateable.h.