FieldPoint Family

cancel
Showing results for 
Search instead for 
Did you mean: 

How do I write and store data to my fieldpoint controller?

I want to datalog from several sensors and store these logfiles in my FP controller rather than on my laptop. I then want to download this data when requested to a dedicated server. Can this be done using fieldpoint? Example code would be great. I am using labview 7.1
0 Kudos
Message 1 of 2
(6,027 Views)
The big decision to make is whether you are going to store data to the flash memory or RAM.

If you are going to capture data at a slow rate (several data points a day) or you need to have the
data survive power cycles, then flash is the way to go.  Flash is, however, usually write-cycle life 
limited.  Check out Fieldpoint Datalogger.vi in the fieldpoint examples.

If you are going to take data faster, or don't have to worry about keeping data across a power outage,
than storing data in memory will probably be better.

Either way you should calculate out your data rate times data size to confirm that your chosen storage
method can handle the data accumulated between downloads.

The flash approach also slightly simplifies the download process, in that you can use ftp or http from
the laptop to grab the data.

A third approach would be to accumulate data for a period, say 24 hours, in memory, and then write
it to flash once.  Kind of the best of both options.

Matt
0 Kudos
Message 2 of 2
(6,024 Views)