Hello Mates,
I'm developing an automotive device and during road tests I need to log data, around 20 variables or so.
I've been using STMStudio, great tool but not the best, also having to keep the ST-link connected creates some limitations
Features I wish/need:
Connection through USB-Serial (pretty standard)
Data logging (I wish it is in a custom compacted format, so the logging file does not get to big over time)
Graph mode (so I can easily see and scroll data)
Need to integrate a USB-GPS, I believe they talk NMEA over serial, need to log my current speed and position
Some scripting would be nice to
Send float as long int and interpret as float: We all know using print float numbers in micros is a pain and wast of resources, also, we never get the best precision, so I wish the software could get the data as long int and convert to float.
Would be great to have a simple integration using a initial header as log start:
Lets say I start the logging like that:
speed(lf);voltage(lf);value1(i);value2(2)
So the software expects data in this order with this names, where (lf is like "long as float")
What software could do this?