esp-hal/esp-hal.code-workspace
Jesse Braham c3b4e83846 Add initial ADC/GPIO implementation for ESP32-H2 (#494)
* Add `esp32h2-hal` package to the VS Code workspace and CI workflow

* Add initial (not quite complete) implementation of GPIO/ADC for ESP32-H2
2023-05-08 08:03:08 -07:00

44 lines
812 B
Plaintext

{
"folders": [
{
"path": "esp-hal-common"
},
{
"path": "esp-hal-procmacros"
},
{
"path": "esp-hal-smartled"
},
{
"path": "esp32-hal"
},
{
"path": "esp32c2-hal"
},
{
"path": "esp32c3-hal"
},
{
"path": "esp32c6-hal"
},
{
"path": "esp32h2-hal"
},
{
"path": "esp32s2-hal"
},
{
"path": "esp32s3-hal"
}
],
"settings": {
"editor.formatOnSave": true,
"rust-analyzer.checkOnSave.allTargets": false,
"rust-analyzer.imports.granularity.enforce": true,
"rust-analyzer.imports.granularity.group": "crate",
"rust-analyzer.cargo.buildScripts.enable": true,
"rust-analyzer.procMacro.attributes.enable": true,
"rust-analyzer.procMacro.enable": true
}
}