Skip to content

Commit

Permalink
Music - Play selected music file lvgl#18
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Fields committed Nov 3, 2022
1 parent 48cad46 commit d3d525c
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
26 changes: 22 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{
"version": "0.2.0",
"configurations": [

{
"name": "g++ build and debug active file",
"name": "MAC g++ build and debug active file",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/build/bin/demo",
Expand All @@ -13,10 +12,29 @@
"environment": [],
"externalConsole": false,
"MIMode": "lldb",
"miDebuggerPath": "/usr/bin/lldb",
"setupCommands": [
{
"description": "Enable pretty-printing for lldb",
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "Build"
},
{
"name": "LINUX g++ build and debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/bin/demo",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
Expand Down

0 comments on commit d3d525c

Please sign in to comment.