diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2018-12-12 19:01:21 +0200 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2018-12-12 19:01:21 +0200 |
| commit | 83483b721876c87151ffd73b1aa3d73a9fabc339 (patch) | |
| tree | c4c09e183bd10cfad4a767e97fad2e8fb9ade2e1 /Software/Embedded_SW/Embedded/Embedded.cfg | |
| parent | 7854cf060611517c50c824fd4143e600a9d98442 (diff) | |
| download | Tango-83483b721876c87151ffd73b1aa3d73a9fabc339.tar.gz Tango-83483b721876c87151ffd73b1aa3d73a9fabc339.zip | |
Version 1.2.2.0 DFU Support
Diffstat (limited to 'Software/Embedded_SW/Embedded/Embedded.cfg')
| -rw-r--r-- | Software/Embedded_SW/Embedded/Embedded.cfg | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Software/Embedded_SW/Embedded/Embedded.cfg b/Software/Embedded_SW/Embedded/Embedded.cfg index a49f86836..6ba47d133 100644 --- a/Software/Embedded_SW/Embedded/Embedded.cfg +++ b/Software/Embedded_SW/Embedded/Embedded.cfg @@ -178,6 +178,11 @@ task6Params.instance.name = "report"; task6Params.priority = 3; Program.global.report = Task.create("&reportService", task6Params); +var updateTaskParams = new Task.Params(); +updateTaskParams.instance.name = "update"; +updateTaskParams.priority = 4; +Program.global.update = Task.create("&updateTask", updateTaskParams); + /* ================ Text configuration ================ */ var Text = xdc.useModule('xdc.runtime.Text'); /* |
