Skip to content

Commit

Permalink
add 'cargo c/cargo config' command
Browse files Browse the repository at this point in the history
  • Loading branch information
indexds committed Nov 25, 2024
1 parent cb2fe0f commit 0858492
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,25 @@ dependencies = [
"build-release",
"convert-to-bin",
"write",
]

# CONFIG

[tasks.mvdebug]
command = "mv"
args = ["sdkconfig", "sdkconfig.debug"]

[tasks.mvrelease]
command = "mv"
args = ["sdkconfig.debug", "sdkconfig"]

[tasks.pio]
command = "cargo"
args = ["pio", "espidf", "menuconfig"]

[tasks.config]
dependencies = [
"mvdebug",
"pio",
"mvrelease",
]

0 comments on commit 0858492

Please sign in to comment.