forked from taunusflieger/nucleo-h755-embassy
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add global HSEM object and shared memory sample (#6)
* Core0 controls blink freq of Core1 * Minor code clean-up
- Loading branch information
1 parent
e5a7978
commit cf9e1f4
Showing
12 changed files
with
212 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// Static tasks configuration. | ||
[ | ||
{ | ||
"label": "Build Core 0", | ||
"command": "cargo build", | ||
//"args": ["build"], | ||
// Env overrides for the command, will be appended to the terminal's environment from the settings. | ||
// "env": { "foo": "bar" }, | ||
// Current working directory to spawn the command into, defaults to current project root. | ||
"cwd": "$ZED_WORKTREE_ROOT/core0", | ||
// Whether to use a new terminal tab or reuse the existing one to spawn the process, defaults to `false`. | ||
"use_new_terminal": false, | ||
// Whether to allow multiple instances of the same task to be run, or rather wait for the existing ones to finish, defaults to `false`. | ||
"allow_concurrent_runs": false | ||
// What to do with the terminal pane and tab, after the command was started: | ||
// * `always` — always show the terminal pane, add and focus the corresponding task's tab in it (default) | ||
// * `never` — avoid changing current terminal pane focus, but still add/reuse the task's tab there | ||
//"reveal": "always" | ||
}, | ||
{ | ||
"label": "Build Core 1", | ||
"command": "cargo build", | ||
//"args": ["build"], | ||
// Env overrides for the command, will be appended to the terminal's environment from the settings. | ||
// "env": { "foo": "bar" }, | ||
// Current working directory to spawn the command into, defaults to current project root. | ||
"cwd": "$ZED_WORKTREE_ROOT/core1", | ||
// Whether to use a new terminal tab or reuse the existing one to spawn the process, defaults to `false`. | ||
"use_new_terminal": false, | ||
// Whether to allow multiple instances of the same task to be run, or rather wait for the existing ones to finish, defaults to `false`. | ||
"allow_concurrent_runs": false | ||
// What to do with the terminal pane and tab, after the command was started: | ||
// * `always` — always show the terminal pane, add and focus the corresponding task's tab in it (default) | ||
// * `never` — avoid changing current terminal pane focus, but still add/reuse the task's tab there | ||
//"reveal": "always" | ||
} | ||
] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.