Search found 36 matches
- Tue Jun 12, 2018 3:00 pm
- Forum: CAN mapping discussion
- Topic: Honda S2000 CAN Mapping (2006+?)
- Replies: 16
- Views: 39218
[CONFIRMED] Engine Speed [CONFIRMED] Vehicle Speed [UNCONFIRMED] Wheel Speeds [CONFIRMED] Throttle Pedal Position [UNCONFIRMED] Brake Pressure [UNCONFIRMED] Steering Angle [CONFIRMED] Ambient Temp [CONFIRMED] Coolant Temp I have a script but it isn't complete yet. For those UNCONFIRMED, I need to fi...
- Tue Apr 03, 2018 10:07 pm
- Forum: RaceCapture/Pro General Q&A
- Topic: UTC vs Interval Resolution
- Replies: 1
- Views: 4741
UTC vs Interval Resolution
Under most circumstances, subtracting the log's prior row value from the current value will yield a millisecond delta that is consistent whether UTC or Interval. Occasionally, they do not match. Worse yet, UTC may go backwards. I read that UTC pulled from GPS is guaranteed accurate within 97 nanosec...
- Wed Feb 14, 2018 3:01 pm
- Forum: RaceCapture/Pro General Q&A
- Topic: Data Analysis Software - Motec, Gems, AEM
- Replies: 119
- Views: 2550245
Here is my list of features requests and bugs from the last time I was really thinking about what was needed (about a year and a half ago) Top Features Automatic segment generation at a minimum, configurable segments saved to the track database would be ideal. Time delta between selected laps at cur...
- Sun Feb 11, 2018 5:19 pm
- Forum: RaceCapture/Pro General Q&A
- Topic: Data Analysis Software - Motec, Gems, AEM
- Replies: 119
- Views: 2550245
Much to my dismay, the free versions of Motec i2, AEMData, and GEMS DataAnalysis all require the data be in a proprietary format other than CSV. As such, the ability to use alternative data analysis software is contingent upon a conversion, either the no longer available GEMS DLOG99 or a bespoke con...
- Sat Feb 10, 2018 11:28 am
- Forum: CAN mapping discussion
- Topic: Honda S2000 CAN Mapping (2006+?)
- Replies: 16
- Views: 39218
I can confirm Engine RPM is definitely correct. Wheel Speed is kind of correct- 448 (0x1C0) actually represents combinations of various four wheels at various bytes. Bytes 1,2 roll over at 40kph, 3,4 at 80kph, 5,6 at 120 kph and 7,8 at 160kph. The way to calculate a high resolution VSS is to use 7,8...
- Fri Feb 09, 2018 12:58 am
- Forum: RaceCapture/Pro General Q&A
- Topic: Data Analysis Software - Motec, Gems, AEM
- Replies: 119
- Views: 2550245
- Wed Feb 07, 2018 3:38 pm
- Forum: RaceCapture/Pro General Q&A
- Topic: Data Analysis Software - Motec, Gems, AEM
- Replies: 119
- Views: 2550245
- Sat Dec 03, 2016 1:08 am
- Forum: RaceCapture App Operation and General Q&A
- Topic: Stuck on Initializing Datastore
- Replies: 3
- Views: 5630
I had to browse the source and dig back into racecapture/settings/prefs.py to locate the file name 'preferences.ini'. Using a little intuition I found the datastore file under 'C:\Users\<user>\AppData\Roaming\racecapture'. I deleted the 100MB datastore file and now I can load the sessions. Unfortuna...
- Fri Dec 02, 2016 10:26 pm
- Forum: RaceCapture App Operation and General Q&A
- Topic: Stuck on Initializing Datastore
- Replies: 3
- Views: 5630
- Sun Nov 20, 2016 10:33 pm
- Forum: RaceCapture App Operation and General Q&A
- Topic: Stuck on Initializing Datastore
- Replies: 3
- Views: 5630
Stuck on Initializing Datastore
I've imported plenty of sessions for analysis by this point. I updated to 2.10 firmware and a newer app before heading out to the track this past weekend. While my data was properly recorded, the app properly displayed it, I cannot analyze it in my Windows application. I can import my older laps, bu...
- Sun Nov 13, 2016 6:01 pm
- Forum: Bug Reporting
- Topic: ElapsedTime No Longer Preset in .LOG
- Replies: 3
- Views: 11493
- Wed Jul 20, 2016 1:35 am
- Forum: Lua Scripting
- Topic: setCANMask/setCANFilter
- Replies: 13
- Views: 26463
- Mon Jul 11, 2016 8:43 pm
- Forum: Lua Scripting
- Topic: setCANMask/setCANFilter
- Replies: 13
- Views: 26463
- Mon Jul 11, 2016 6:20 pm
- Forum: Lua Scripting
- Topic: setCANMask/setCANFilter
- Replies: 13
- Views: 26463
Stieg, that is all correct except that it doesn't work on the RCP. The only difference between 0x1FFF and 0xFFFF is the upper three bits aren't valid for 29-bit and become ignored. At first glance, it ought to be that simple, and it is that simple on other hardware. However, the stm32 API appears to...
- Mon Jul 11, 2016 5:06 pm
- Forum: Lua Scripting
- Topic: setCANMask/setCANFilter
- Replies: 13
- Views: 26463
Hi, It looks like the main setCANFilter() sets both the CAN mask and filter as part of one call: Parameters: setCANfilter(CAN_channel, filter_id, extended_flag, filter, mask) We'll continue to poke at this. Thanks! Yes, that is correct. I confirmed it through source code, tracing it all the way dow...