esp-hal/esp-hal-common/devices/esp32s2.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

55 lines
763 B
TOML

[device]
arch = "xtensa"
cores = "single_core"
peripherals = [
# Peripherals available in the PAC:
"aes",
"apb_saradc",
"dedicated_gpio",
"ds",
"efuse",
"extmem",
"gpio",
"gpio_sd",
"hmac",
"i2c0",
"i2c1",
"i2s0",
"interrupt_core0",
"io_mux",
"ledc",
"pcnt",
"pms",
"rmt",
"rng",
"rsa",
"rtc_cntl",
"rtc_i2c",
"rtc_io",
"sens",
"sha",
"spi0",
"spi1",
"spi2",
"spi3",
"spi4",
"system",
"systimer",
"timg0",
"timg1",
"twai0",
"uart0",
"uart1",
"uhci0",
"usb0",
"usb_wrap",
"xts_aes",
# Additional peripherals defined by us (the developers):
"adc",
"dac",
"pdma",
"radio",
]