10-13-2012 04:45 AM - edited 10-13-2012 04:46 AM
Hello 🙂
I'm trying to use LabVIEW embedded for ARM on LM3S8962 and I would like to save the numbers 0-n on the SD Card by pushing the Select Button. At the moment only the Number, that is shown on the Display is saved. Fo example: "5" is shown on the Display, I push the Select Button and only "5" is saved. But I would like to save "0 1 2 3 4 5".
Can somebody here help me??
Solved! Go to Solution.
10-15-2012 03:47 AM
Hello Nea,
I guess there is a while loop (or a for loop) around the code that you posted?
The Problem here is, that you only save the value of the current iteration when you press the select button.
To save the old values, you will need another for loop that starts when you press the select button and writes the desired values with every iteration.
I hope following screenshot will help you solve your problem:
10-15-2012 12:40 PM
Perfect! Thank you
10-16-2012 02:27 AM
You're welcome 😃
-- Lam