Simple app to transform IEC 61851-24 CAN bus dump to human readable messages.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
//go:build windows
|
|
// +build windows
|
|
|
|
package main
|
|
|
|
func StartCan(canbus string) (<-chan *CanFrame, error) {
|
|
return nil, &NotImplError{}
|
|
}
|
|
|
|
type NotImplError struct {
|
|
}
|
|
|
|
func (e *NotImplError) Error() string {
|
|
return "Not implemented for windows platform"
|
|
}
|
|
|