Hello Everyone,
I'have CR6 datalogger with 16 GB SD memory. I'm using many data tables, and I want to limit internal storage for some of these tables (for example limiting the internal storage to 10 days and autoallocate for external memory).
This my datatable configuration:
DataTable(Table1,True,14400) ' allocate 10 days of data in the internal memory
DataInterval(0,1,Min,10)
CardOut(0,-1) ' autoallocate SD card memory
...........
is this configuration correct?
Thanks.
Yes, that is correct. You can verify by looking at DataTableInfo on the datalogger after loading the program.
More info on table sizes at: https://www.campbellsci.com/videos/connect-window-tutorial#slide=57
Thanks for helping.