Compare commits

...

2 Commits

Author SHA1 Message Date
rusefillc 77459117ec playback subproject 2024-01-02 19:28:13 -05:00
rusefillc 01a42f57da peak-can-basic 2024-01-02 19:27:42 -05:00
6 changed files with 11 additions and 0 deletions

3
.gitmodules vendored
View File

@ -2,3 +2,6 @@
path = opendbc
url = https://github.com/rusefi/opendbc.git
branch = rusefi_prod
[submodule "ext/peak-can-basic"]
path = ext/peak-can-basic
url = https://github.com/rusefi/peak-can-basic

1
ext/peak-can-basic Submodule

@ -0,0 +1 @@
Subproject commit 95ecb90a0e5c4c6082548191f91a4181b143698b

BIN
playback/PCANBasic.dll Normal file

Binary file not shown.

BIN
playback/PCANBasic_JNI.dll Normal file

Binary file not shown.

3
playback/build.gradle Normal file
View File

@ -0,0 +1,3 @@
plugins {
id 'java'
}

View File

@ -1,2 +1,6 @@
rootProject.name = 'can-log-tools'
include ':playback'
project(':playback').projectDir = new File('playback')
include ':peak-can-basic'
project(':peak-can-basic').projectDir = new File('ext/peak-can-basic')