raspberrypi / pico-project-generator

Tool to automatically generate a Pico C SDK Project
BSD 3-Clause "New" or "Revised" License
303 stars 74 forks source link

runToMain should be runToEntryPoint in generated VSCode launch.json #49

Closed marktyler72 closed 2 years ago

marktyler72 commented 2 years ago

The launch.json file that is generated if Create VSCode Project is selected contains a line:

   "runToMain": true,

The runToMain option has been depreciated in Cortext-Debug for VSCode since v0.3.12 and been replaced with runToEntryPoint.
So the line in launch.json should be:

    "runToEntryPoint": "main",
JamesH65 commented 2 years ago

Fixed