├── .gitignore ├── .idea ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── api.go ├── asciiclient_test.go ├── buffer.go ├── client.go ├── crc.go ├── crc_test.go ├── dlt645.go ├── dlt645ConfigClient.go ├── dlt645client.go ├── dltcon ├── dlt.go ├── option.go └── proc.go ├── error.go ├── example └── example.go ├── go.mod ├── go.sum ├── log.go ├── messageAnalysis.go ├── res └── DataMarkerConfig.toml ├── revive.toml └── serial.go /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | ### Go template 3 | # Binaries for programs and plugins 4 | *.exe 5 | *.exe~ 6 | *.dll 7 | *.so 8 | *.dylib 9 | 10 | # Test binary, built with `go test -c` 11 | *.test 12 | 13 | # Output of the go coverage tool, specifically when used with LiteIDE 14 | *.out 15 | 16 | # Dependency directories (remove the comment below to include it) 17 | # vendor/ 18 | 19 | .idea 20 | 21 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 14 | 15 | 16 | 18 | 19 | 21 | 22 | 23 | 24 | 25 | 26 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 |