Consistent config parameter case convention. Left the camel-case version for backwards compatibility.

This commit is contained in:
Nav
2021-09-25 23:27:53 +01:00
parent 047475c2d3
commit 647b6bc3e1
2 changed files with 2 additions and 1 deletions

View File

@@ -8,7 +8,7 @@
"target": {
"name": "avr8",
"physicalInterface": "debugWire"
"physicalInterface": "debug-wire"
},
"debugServer": {

View File

@@ -126,6 +126,7 @@ namespace Bloom::DebugToolDrivers::Protocols::CmsisDap::Edbg::Avr
return std::map<std::string, PhysicalInterface>({
{"debugwire", PhysicalInterface::DEBUG_WIRE},
{"debug-wire", PhysicalInterface::DEBUG_WIRE},
{"pdi", PhysicalInterface::PDI},
{"jtag", PhysicalInterface::JTAG},
{"updi", PhysicalInterface::UPDI},