diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..22afb1b --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,25 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "Flash hwb1", + "type": "shell", + "command": "${workspaceFolder}/hwb1/scripts/flash.cmd", + "problemMatcher": [] + }, + { + "label": "List Applets", + "type": "shell", + "command": "${workspaceFolder}/hwb1/scripts/list.cmd", + "problemMatcher": [] + }, + { + "label": "Test hwb1 Applet", + "type": "shell", + "command": "${workspaceFolder}/hwb1/scripts/test.cmd", + "problemMatcher": [] + } + ] +} \ No newline at end of file diff --git a/hwb1/scripts/flash.cmd b/hwb1/scripts/flash.cmd new file mode 100644 index 0000000..86f39ab --- /dev/null +++ b/hwb1/scripts/flash.cmd @@ -0,0 +1,5 @@ +@echo off +SET CARD_ROOT=%~dp0..\card +call %CARD_ROOT%\e222.cmd +call %CARD_ROOT%\c222.cmd +call %CARD_ROOT%\install.cmd diff --git a/hwb1/scripts/list.cmd b/hwb1/scripts/list.cmd new file mode 100644 index 0000000..4aa224d --- /dev/null +++ b/hwb1/scripts/list.cmd @@ -0,0 +1,4 @@ +@echo off +SET CARD_ROOT=%~dp0..\card +call %CARD_ROOT%\e222.cmd +call %CARD_ROOT%\list.cmd diff --git a/hwb1/scripts/test.cmd b/hwb1/scripts/test.cmd new file mode 100644 index 0000000..d2f2ca8 --- /dev/null +++ b/hwb1/scripts/test.cmd @@ -0,0 +1,4 @@ +@echo off +SET CARD_ROOT=%~dp0..\card +call %CARD_ROOT%\e222.cmd +call %CARD_ROOT%\test.cmd