Hi all,
I need to extract data I've captured on OLS from MOSI, I've used SPI analyzer tool inside the program and it correctly convert bits to data, but now I need to extract this data.
There is a way to extract just data MOSI from a capture?
For example, I've extracted file and I have MOSI and MISO:
"
"index","start-time","end-time","event?","event-type","MOSI data","MISO data"
"0","805,96?ms","805,96?ms","true","CS_LOW","",""
"1","1,18?s","1,18?s","true","CS_HIGH","",""
"2","1,39?s","1,39?s","true","CS_LOW","",""
"3","1,39?s","1,39?s","false","","202",""
"4","1,39?s","1,39?s","false","","","0"
"5","1,39?s","1,39?s","false","","0",""
"6","1,39?s","1,39?s","false","","","0"
"7","1,39?s","1,39?s","false","","16",""
"
What I want is a file like this:
202
0
16
There is a program that can do that?
Import the CSV in Excel/Numbers/... and extract the data you want?