library.EcuConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doip-sim-ecu-dsl Show documentation
Show all versions of doip-sim-ecu-dsl Show documentation
This is a kotlin based domain specific language (dsl), to quickly and intuitively write custom DoIP ECU simulations.
The newest version!
package library
import kotlin.time.Duration.Companion.seconds
public open class EcuConfig(
public val name: String,
public val logicalAddress: Short,
public val functionalAddress: Short,
public val pendingNrcSendInterval: kotlin.time.Duration = 2.seconds,
)