esp-hal/esp-hal-common/devices/esp32c2.toml
Jesse Braham 2eeb3dbc5b
Load config for each device from a TOML files instead of hard-coding in build script (#415)
* Move chip metadata into TOML files and update build script to consume them

* Make necessary changes to get all examples building again
2023-03-16 06:41:14 -07:00

38 lines
555 B
TOML

[device]
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",
# Additional peripherals defined by us (the developers):
"adc",
"gdma",
"radio",
]