Search found 138 matches

by boggie1688
Thu Nov 16, 2017 8:05 pm
Forum: Feature Requests
Topic: Format Function
Replies: 3
Views: 8437

Format Function

Hi, Would it be possible to have a format function inside of the RC App? I'm asking because if I accidentally swap memory cards between my GoPro and RCP, and logs written to the card that was formatted by my GoPro are corrupt. I have a 64GB microsd card, and through trial and error noticed that the ...
by boggie1688
Fri Sep 15, 2017 5:29 pm
Forum: CAN mapping discussion
Topic: 987.1 Can Bus Mapping
Replies: 88
Views: 239934

That was actually the only LUA mapping.

I'm kinda surprised how much faster it is seems to be. Still TBD, but initial impressions are that the lag is completely gone.
by boggie1688
Fri Sep 15, 2017 3:21 am
Forum: CAN mapping discussion
Topic: 987.1 Can Bus Mapping
Replies: 88
Views: 239934

Brent,

I finally had a chance to come back to this.

It worked!!!

I still need to drive the car to make sure it is picking up the angle fast enough, but in the garage it seems perfect!!
by boggie1688
Wed Sep 06, 2017 11:38 pm
Forum: RaceCapture App Operation and General Q&A
Topic: RaceCapture Android App - No GPS Fix
Replies: 2
Views: 3608

Ahh! I didn't realize that it uses the GPS data from the actual RCP. Unfortunately, I can't go driving around the course before hand. My only opportunity is to use my cell phone while I walk it.

I'll check the video that you link.

Thanks Brent.
by boggie1688
Thu Aug 31, 2017 10:16 pm
Forum: CAN mapping discussion
Topic: 987.1 Can Bus Mapping
Replies: 88
Views: 239934

This was the final version of the formula or code to deal with steering angle. steerId = addChannel("Steering", 50, 0, -450, 450, "Deg.") function getSteering(chan) id, ext, data = rxCAN(chan,100) if id == 194 then processSteering(data) end end function processSteering(data) loca...
by boggie1688
Wed Aug 30, 2017 1:18 pm
Forum: CAN mapping discussion
Topic: 987.1 Can Bus Mapping
Replies: 88
Views: 239934

Data in byte 0, 1 If byte 1 is >= 128 then steering is positive. If byte 1 is < 128 then steering is negative. I got lazy and just calculated some of the negative portions because that happened to be the direction the other data went first. K is the hex shift, because the data is contained in two by...
by boggie1688
Wed Aug 30, 2017 3:24 am
Forum: CAN mapping discussion
Topic: 987.1 Can Bus Mapping
Replies: 88
Views: 239934

Brent, it has been awhile. Autox season hit full swing, and side projects to up my free weekends. Funny enough, my post about decoding the 987 can caught some attention on other forums. I've had a few people reach out to me. One guy even manage to decode steering. Much like me, he figure out the can...
by boggie1688
Sat Aug 26, 2017 1:40 pm
Forum: RaceCapture App Operation and General Q&A
Topic: RaceCapture Android App - No GPS Fix
Replies: 2
Views: 3608

RaceCapture Android App - No GPS Fix

Hi Guys, I'm using the Racecapture Android App (1.11.0) on my Nexus 6P. For the last few AutoX events, I can't seem to grab GPS coordinates using the RCP android app. I've ended up using a 3rd party app, then copy and pasted the data over. For whatever reason, when I use the RCP app, and select the ...
by boggie1688
Fri Jul 28, 2017 3:51 pm
Forum: Lua Scripting
Topic: Lua logging questions
Replies: 7
Views: 6567

Doh!

That is the extent of my RCP capabilities! Gotta wait for the man himself to respond.
by boggie1688
Thu Jul 27, 2017 9:53 pm
Forum: Lua Scripting
Topic: Lua logging questions
Replies: 7
Views: 6567

Oh...I also think the issue between 10.0 and 10, might be the difference between print() and println().
by boggie1688
Thu Jul 27, 2017 7:37 pm
Forum: Lua Scripting
Topic: Lua logging questions
Replies: 7
Views: 6567

Jay, I think I can help with 1 and 2. I assume you are trying to log the raw can data, then trying to use the action button to create markers to help you look inside of the can log. I use Putty to log the script output. http://www.putty.org/ Advanced: Using a Terminal Program https://wiki.autosportl...
by boggie1688
Sat Jul 22, 2017 2:16 am
Forum: RaceCapture/Pro General Q&A
Topic: No OBDII / CAN data
Replies: 6
Views: 5357

I put it under my driver seat. I had to tap power and also add an oil pressure sender, that side of the car made the most sense. Center of the car is rather difficult with stock interior. I also didn't drill the floor pan. Instead I poke through the foam in the carpet and secured the datalogger tigh...
by boggie1688
Thu Jul 20, 2017 7:28 pm
Forum: ShiftX2
Topic: shiftx & getChannel
Replies: 4
Views: 10294

sleep(ms) command - this will stall the lua script for the specified time
by boggie1688
Wed Jul 19, 2017 9:01 pm
Forum: RaceCapture/Pro General Q&A
Topic: No OBDII / CAN data
Replies: 6
Views: 5357

Waazzzup Jay!! You took the plunge!! Then immediately hit a wall! All in good fun! There are two can bus on the RCP3. You might wanna try changing the bus. To do this, change the following in the canbus logger script: canBus = 1 or 2 https://wiki.autosportlabs.com/CAN_Bus_logger Not sure this is com...
by boggie1688
Wed Jun 21, 2017 3:13 am
Forum: Lua Scripting
Topic: Calculated Brake Pressure
Replies: 6
Views: 8841

Here is a way that it has been done. http://www.jameshakewill.com/brake-trace.pdf I wrote a script that included it which is in the second post here: https://forum.autosportlabs.com/viewtopic.php?t=5227 I found some time tonight to integrate your brakeg script. I ran into two issues; see bold. The ...