CanSender

This commit is contained in:
rusefillc 2024-01-06 09:53:12 -05:00
parent 5707eabaa9
commit 71d5016554
2 changed files with 4 additions and 1 deletions

View File

@ -3,9 +3,12 @@ plugins {
id 'java-library'
}
apply from: '../dependencies.gradle'
dependencies {
api rootProject
api project(':peak-can-basic')
api libs.annotations
api group: 'tel.schich', name: 'javacan-core', version: "$javaCanVersion"
api group: 'tel.schich', name: 'javacan-core', version: "$javaCanVersion", classifier: 'x86_64'
}

View File

@ -1,6 +1,6 @@
package com.rusefi.io.can;
import com.sun.istack.internal.NotNull;
import org.jetbrains.annotations.NotNull;
import tel.schich.javacan.CanChannels;
import tel.schich.javacan.CanFrame;
import tel.schich.javacan.NetworkDevice;