Changeset 469


Ignore:
Timestamp:
Jun 27, 2021, 10:08:04 PM (3 years ago)
Author:
coas-nagasima
Message:

launch.jsonで「gdb_memory_map disable」があるとフラッシュ出来ず、無いとデバッグ起動に失敗するので、書き込みタスクを復活。

Location:
azure_iot_hub_f767zi/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • azure_iot_hub_f767zi/trunk/app_iothub_client/.vscode/launch.json

    r466 r469  
    2222            ],
    2323            "preLaunchCommands": [
    24                 "-environment-cd ${workspaceRoot}/Debug",
     24                "-environment-cd ${workspaceFolder}/Debug",
    2525                "-gdb-set breakpoint pending on",
    2626                "monitor reset init",
  • azure_iot_hub_f767zi/trunk/app_iothub_client/.vscode/tasks.json

    r465 r469  
    141141            },
    142142            "group": "build"
     143        },
     144        {
     145            "label": "write app",
     146            "linux": {
     147                "command": "rsync",
     148                "args": [
     149                    "-av",
     150                    "--progress",
     151                    "${workspaceFolder}/Debug/app_iothub_client.bin",
     152                    "/media/${env:USER}/NODE_F767ZI/"
     153                ]
     154            },
     155            "osx": {
     156                "command": "rsync",
     157                "args": [
     158                    "-av",
     159                    "--progress",
     160                    "${workspaceFolder}/Debug/app_iothub_client.bin",
     161                    "/Volumes/NODE_F767ZI/"
     162                ]
     163            },
     164            "windows": {
     165                "command": "C:\\Windows\\System32\\robocopy.exe",
     166                "args": [
     167                    "${workspaceFolder}\\Debug",
     168                    "E:\\",
     169                    "app_iothub_client.bin"
     170                ],
     171                "options": {
     172                    "shell": {
     173                        "executable": "C:\\Windows\\System32\\cmd.exe",
     174                        "args":["/D", "/C"]
     175                    }
     176                }
     177            }
    143178        }
    144179    ]
  • azure_iot_hub_f767zi/trunk/asp_baseplatform/.vscode/launch.json

    r467 r469  
    2222            ],
    2323            "preLaunchCommands": [
    24                 "-environment-cd ${workspaceRoot}/Debug",
     24                "-environment-cd ${workspaceFolder}/Debug",
    2525                "-gdb-set breakpoint pending on",
    2626                "monitor reset init",
Note: See TracChangeset for help on using the changeset viewer.