esp-hal/esp-hal-common/devices/esp32c3.toml
Sergio Gasquez Arcos faf60b6d95
Initial support for ASSIST_DEBUG in ESP32-H2 (#566)
* feat:  Add debug_assist example

* feat:  Enable peripherals

* docs: 📝 Add RAM comments

* feat: ️ Update debug_assist example

* docs: 📝 Update changelog

* build: 📌 Update esp-pacs rev for h2

* style: 🎨 Move assist_debug_region* and assist_debug_sp* to peripherals defined by developers
2023-05-30 09:10:55 -07:00

60 lines
956 B
TOML

[device]
arch = "riscv"
cores = "single_core"
peripherals = [
# Peripherals available in the PAC:
"aes",
"apb_ctrl",
"apb_saradc",
"assist_debug",
"dma",
"ds",
"efuse",
"extmem",
"gpio",
"gpio_sd",
"hmac",
"i2c0",
"i2s0",
"interrupt_core0",
"io_mux",
"ledc",
"rmt",
"rng",
"rsa",
"rtc_cntl",
"sensitive",
"sha",
"spi0",
"spi1",
"spi2",
"system",
"systimer",
"timg0",
"timg1",
"twai0",
"uart0",
"uart1",
"uhci0",
"uhci1",
"usb_device",
"xts_aes",
# Additional peripherals defined by us (the developers):
"adc",
"assist_debug_sp_monitor",
"assist_debug_region_monitor",
"gdma",
"radio",
"phy",
"bt",
"wifi",
# Wakeup SOC based on ESP-IDF:
"pm_support_wifi_wakeup",
"pm_support_bt_wakeup",
"uart_support_wakeup_int",
"gpio_support_deepsleep_wakeup",
]