mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-28 12:50:53 +00:00
55 lines
883 B
TOML
55 lines
883 B
TOML
[device]
|
|
name = "esp32c2"
|
|
arch = "riscv"
|
|
cores = "single_core"
|
|
|
|
peripherals = [
|
|
# Peripherals available in the PAC:
|
|
"apb_ctrl",
|
|
"apb_saradc",
|
|
"assist_debug",
|
|
"dma",
|
|
"ecc",
|
|
"efuse",
|
|
"extmem",
|
|
"gpio",
|
|
"i2c0",
|
|
"interrupt_core0",
|
|
"io_mux",
|
|
"ledc",
|
|
"rng",
|
|
"rtc_cntl",
|
|
"sensitive",
|
|
"sha",
|
|
"spi0",
|
|
"spi1",
|
|
"spi2",
|
|
"system",
|
|
"systimer",
|
|
"timg0",
|
|
"uart0",
|
|
"uart1",
|
|
"xts_aes",
|
|
]
|
|
|
|
symbols = [
|
|
# Additional peripherals defined by us (the developers):
|
|
"adc",
|
|
"assist_debug_sp_monitor",
|
|
"gdma",
|
|
"phy",
|
|
"bt",
|
|
"wifi",
|
|
|
|
# ROM capabilities
|
|
"rom_crc_le",
|
|
"rom_crc_be",
|
|
"rom_md5_mbedtls",
|
|
|
|
# Wakeup SOC based on ESP-IDF:
|
|
"pm_support_wifi_wakeup",
|
|
"pm_support_bt_wakeup",
|
|
"uart_support_wakeup_int",
|
|
"gpio_support_deepsleep_wakeup",
|
|
]
|