Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add generated code debug argument instructions to v0.8.0 and latest. #277

Merged
merged 2 commits into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/developer/debugging-generated-code.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,17 @@ If, for example, your federated program is in `src/Foo.lf` and it has a top-leve
then you will find the generated code for the `bar` federate in `fed-gen/Foo/src-gen/federate__bar`.
You can then run and debug that individual federate from within VS Code, but you will also have
to manually run the RTI and the other federates in order for the code to start executing.

### Adding Arguments

To add arguments using VS code, you should add a directory `.vscode` right below the opened `src-gen` directory and add a `settings.json` file like the one below. In place of `federation_id`, write the actual federation ID that is being used by the RTI.
lhstrh marked this conversation as resolved.
Show resolved Hide resolved
```
{
"cmake.debugConfig": {
"args": [
"-i",
"federation_id"
]
}
}
```
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,17 @@ If, for example, your federated program is in `src/Foo.lf` and it has a top-leve
then you will find the generated code for the `bar` federate in `fed-gen/Foo/src-gen/federate__bar`.
You can then run and debug that individual federate from within VS Code, but you will also have
to manually run the RTI and the other federates in order for the code to start executing.

### Adding Arguments

To add arguments using VS code, you should add a directory `.vscode` right below the opened `src-gen` directory and add a `settings.json` file like the one below. In place of `federation_id`, write the actual federation ID that is being used by the RTI.
lhstrh marked this conversation as resolved.
Show resolved Hide resolved
```
{
"cmake.debugConfig": {
"args": [
"-i",
"federation_id"
]
}
}
```
Loading