Skip to content

Commit

Permalink
automatic template update of Controller Area Network (CAN) Analyzer
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcus10110 committed Oct 1, 2020
1 parent b99a949 commit 14d1b44
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
43 changes: 43 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,46 @@ cmake ..
```

Then, open the newly created solution file located here: `build\can_analyzer.sln`


## Output Frame Format

### Frame Type: `"identifier_field"`

| Property | Type | Description |
| :--- | :--- | :--- |
| `identifier` | int | Identifier, either 11 bit or 29 bit |
| `extended` | bool | (optional) Indicates that this identifier is a 29 bit extended identifier. This key is not present on regular 11 bit identifiers |
| `remote_frame` | bool | (optional) Present and true for remote frames |

### Frame Type: `"control_field"`

| Property | Type | Description |
| :--- | :--- | :--- |
| `num_data_bytes` | int | Number of data bytes in the transaction |

### Frame Type: `"data_field"`

| Property | Type | Description |
| :--- | :--- | :--- |
| `data` | int | The byte |

### Frame Type: `"crc_field"`

| Property | Type | Description |
| :--- | :--- | :--- |
| `crc` | int | 16 bit CRC value |

### Frame Type: `"ack_field"`

| Property | Type | Description |
| :--- | :--- | :--- |
| `ack` | bool | True when an ACK was present |

### Frame Type: `"can_error"`

| Property | Type | Description |
| :--- | :--- | :--- |


Invalid CAN data was encountered
4 changes: 3 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ jobs:
artifact: AnalyzerLibLinux
- download: current
artifact: AnalyzerLibWin
patterns: '*.dll'
patterns: |
*.dll
*.pdb
- download: current
artifact: AnalyzerLibMac
- script: |
Expand Down

0 comments on commit 14d1b44

Please sign in to comment.