Overdrivr Telemetry Versions Save

Data visualization and communication with embedded devices

2.0.1

7 years ago
  • Rename end() function to avoid potential duplicate with linker symbol - LucasMaheu

2.0.0

8 years ago

Variables can now be attached to a given topic with a given type:

uint8_t i;
attach_u8("foo", &i);

update_telemetry();

+Removed the unsused float parameter from update_telemetry +Replaced void * types by uint8_t * type in IO functions +Moved repository under continuous integration

1.0.3

8 years ago
  • removed set_state function that was too error prone. Forgetting to call it to pass the state immediately lead to segfault. Instead, state must be passed along with subscribe
  • variables can now be directly updated using the update functions, courtesy of Dan Faudemer !
  • Methods match and fullmatch that will return true if received frame topics matches with a given topic. Fullmatch also checks for payload type that should match a given type as well

1.0.2

8 years ago
  • Support for arduino boards :beers:
  • improvement of the build automation
  • tests performed after integration on the final mbed and arduino distributions

Everything is now ready for adding continouus integration

1.0.1

8 years ago

Fixed type casting issue leading to embedded programs freezing Removed last dependency on memory allocation

1.0.0

8 years ago

Basic functionnality with decent test coverage.

No string compression, no pure binary payload support, no CI system in place