output itmdump data into a file #389
-
Hi all, I am working on the sensors of the Discovery Book. I am able to get the output(Readings) of sensors in the itm.txt file. Now I want to store that data in a file. How can I do that in a no_std enviourment? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hello @NitinSaxenait,
With dumping the ITM data into
and do further processing like converting it into CSV, ... I would process ITM data on a full-blown operating system where I can use |
Beta Was this translation helpful? Give feedback.
Hello @NitinSaxenait,
With dumping the ITM data into
itm.txt
you have written it into a file. From there you can extract the actual payload withitmdump
(#399 (comment)). You could just pipe the output fromitmdump
into a file againand do further processing like converting it into CSV, ...
I would process ITM data on a full-blown operating system where I can use
itmdump
(which is astd
application). What are you trying to achieve exactly? What is your use case for handling this data in ano_std
env…