Search found 101 matches

by stieg
Wed Jul 20, 2016 3:19 am
Forum: Lua Scripting
Topic: setCANMask/setCANFilter
Replies: 13
Views: 23660

Just did merge in the fix 5 minutes ago. Will be part of the next RC for 2.10.0 when that goes out the door. Tested it locally with the script in the linked ticket and got expected output.
by stieg
Mon Jul 11, 2016 6:42 pm
Forum: Lua Scripting
Topic: setCANMask/setCANFilter
Replies: 13
Views: 23660

Filed https://github.com/autosportlabs/RaceCapture-Pro_firmware/issues/737 to track checking and validating CAN filters. Will you tell us more about how you have things setup. CAN 0 or 1? Address lengths you are trying to use? All of that information may be important in debugging the issue. TIA.
by stieg
Mon Jul 11, 2016 5:24 pm
Forum: Lua Scripting
Topic: setCANMask/setCANFilter
Replies: 13
Views: 23660

So just read up on this since I was unfamiliar with this functionality. This was a useful read for me: http://www.cse.dmu.ac.uk/~eg/tele/CanbusIDandMask.html Since setCANfilter forces 32-bit with IdMask mode, how does one manipulate the ID and MASK for the following: 11-bit 0x7e* 29-bit 0x18DA**** B...
by stieg
Mon Jul 11, 2016 4:27 pm
Forum: Lua Scripting
Topic: setCANMask/setCANFilter
Replies: 13
Views: 23660

Hey imstimpy, The documentation partially describes how to use setCANFilter and that it is dependent upon an undocumented setCANMask. If I'm looking at the source code correctly, setCANFilter is implemented but setCANMask is not. If that is the case, is the documentation incorrect and setCANFilter c...
by stieg
Mon Jul 11, 2016 3:48 pm
Forum: RaceCapture App Bug Reporting / Feature Requests
Topic: How to get GPS speed in kph?
Replies: 19
Views: 35175

Did this ever get implemented? I thought I saw a selection for units preference, but GPS speed in my most recent recording is in mph. :( And now I can't find where I saw the units preference selection, so maybe I'm remembering wrong and it's still not possible to get GPS speed in kph without a virt...
by stieg
Thu Jun 09, 2016 9:03 pm
Forum: RaceCapture/Pro General Q&A
Topic: Power Source
Replies: 7
Views: 10053

Welcome. Let us know if you have any issues. Happy driving!
by stieg
Mon Jun 06, 2016 8:06 pm
Forum: RaceCapture/Pro General Q&A
Topic: Power Source
Replies: 7
Views: 10053

Strand wire should be fine. We use 18 gauge with no issues. I have seen people use 22 gauge and report no issues (but that was at 12v). RCP doesn't pull much power, and when it does its usually for short bursts (like synchronizing 2.5g cell modem with towers).
by stieg
Wed Jun 01, 2016 2:52 pm
Forum: RaceCapture/Pro General Q&A
Topic: Power Source
Replies: 7
Views: 10053

What are the additional components that can be powered only by using a 12 V power source (other than the cellular antenna)? In theory the whole thing could be powered by a 5V USB power source if the USB standard was setup to support more than 500ma in current. However since this hardware doesn't su...
by stieg
Wed Jun 01, 2016 11:55 am
Forum: Hardware and Installation
Topic: Bluetooth module not powering up
Replies: 1
Views: 3301

Hi Stozer,

That is no good. Shoot an email [email protected] and lets see what we can do.
by stieg
Wed Jun 01, 2016 11:53 am
Forum: Lua Scripting
Topic: Auto-blip, no lift shift....
Replies: 1
Views: 3465

I haven't heard of anyone trying this. But we don't recommend that RCP control any critical portion of the vehicle (like throttle or brakes etc). While we test it as we can, its was never designed with that use case in mind and thus does not have the strict safety testing needed to ensure it will fu...
by stieg
Wed Jun 01, 2016 11:48 am
Forum: RaceCapture/Pro General Q&A
Topic: Power Source
Replies: 7
Views: 10053

Its best to use the 12V power source. The 12V powers a few more additional components on the device when compared to what the USB can power. USB is also limited to 500ma by its standard and our unit needs more watts than what USB can provide power wise to be able to power the cellular antenna.
by stieg
Thu May 26, 2016 2:29 pm
Forum: RaceCapture/Pro General Q&A
Topic: Lap Time Accuracy
Replies: 18
Views: 35118

Hey PS14,

What version of the firmware are you running and what type of RCP are you using? Cheers?
by stieg
Fri May 13, 2016 11:21 pm
Forum: Bug Reporting
Topic: RCP continually crashing :-(
Replies: 13
Views: 20766

First off... that is a BEAUTIFUL looking Lua script. As a fellow programmer... thank you for doing it right and well. Now then... on to business... Looking at your script I see nothing obvious wrong. Its dirt simple and I don't see how that is causing an issue. I'm still wary of the SD card logging ...
by stieg
Wed May 11, 2016 10:03 pm
Forum: RaceCapture/Pro General Q&A
Topic: SD logging issue
Replies: 9
Views: 8596

What is the optimal way to start logging? The way you have it now will cause our LuaScript to call into startLogging on every invocation of `onTick()` which happens 15 times a second. I would suggest you simply move that method outside of the `onTick()` method. That will cause it to only be invoked...