Telemetry
Telemetry copied to clipboard
Data visualization and communication with embedded devices
I work in an environment Ubuntu 16.04 LTS and I use a Teensy microcontroller 3.2. I downloaded Telemetry-2.0.1 and I identified the file telemetry_version.h With the compiler of the Arduino...
I'm using the Arduino Library on an Arduino Uno. For the first test, I want to send a simple integer value. void loop() { TM.pub_u8("abcd",10); delay(1000); } The received data...
I'm looking for a simple way to get some data across a Bluetoother RfComm channel. Telemetry looks like a nice option, but I need the data to be received by...
First Rémi, thank you for your hard work. I ported telemetry (plain C) to the K22FN512 (a cortex M4 cpu) platform on the K22F freedom board. And only recently I'm...
When I want to publish a value, the function "end" is called. All time this function is used, I can see the program into Hard_Fault_handler.
Some sort of json equivalent for embedded
Simplification of the build process. Distributions will no longer assembled by gathering files from different folders, which is too complex and obscure for the unfamiliar user. Instead, distributions will be...
telemetry_core.c `void try_update_hashtable(TM_msg * msg)` During compilation: "warning: enumeration value 'TM_string' not handled in switch" May want to include a default case or explicitly handle this case to reduce compiler...
``` struct TM_transport { int32_t (*read)(uint8_t * buf, uint32_t sizeToRead); int32_t (*readable)(); int32_t (*write)(uint8_t * buf, uint32_t sizeToWrite); int32_t (*writeable)(); }; ``` Return types for each should match the potential...