RaceCapturePro FAQ: Difference between revisions
(→How do I automatically start/stop RaceCapture/Pro logging: added faq entry about power loss) |
(→How do I automatically start/stop RaceCapture/Pro logging: fixed api call) |
||
Line 2: | Line 2: | ||
To automatically log when the vehicle is moving, past the following into the script window in RaceAnalyzer, and then write the configuration to RaceCapture/Pro: | To automatically log when the vehicle is moving, past the following into the script window in RaceAnalyzer, and then write the configuration to RaceCapture/Pro: | ||
function onTick() if | function onTick() if getGpsSpeed() > 10 then startLogging() else stopLogging() end end | ||
Note, this will override the behavior of the front mounted logging trigger button. | Note, this will override the behavior of the front mounted logging trigger button. |
Revision as of 19:03, 28 June 2013
How do I automatically start/stop RaceCapture/Pro logging
To automatically log when the vehicle is moving, past the following into the script window in RaceAnalyzer, and then write the configuration to RaceCapture/Pro:
function onTick() if getGpsSpeed() > 10 then startLogging() else stopLogging() end end
Note, this will override the behavior of the front mounted logging trigger button.
What happens if power is lost while logging to SD?
RaceCapture/Pro streams data continuously to the SD card, and every 10 seconds synchronizes the file markers on the file so that if power is suddenly lost during logging, the data since the last file marker synchronization is retained.
How do I configure the start/finish line for calculating lap time and tracking lap counts?
...