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.
package library
import kotlin.time.Duration.Companion.seconds
open class EcuConfig(
val name: String,
val physicalAddress: Short,
val functionalAddress: Short,
val pendingNrcSendInterval: kotlin.time.Duration = 2.seconds,
val additionalVam: EcuAdditionalVamData? = null,
)