* Move chip metadata into TOML files and update build script to consume them * Make necessary changes to get all examples building again
57 lines
775 B
TOML
57 lines
775 B
TOML
[device]
|
|
arch = "xtensa"
|
|
cores = "multi_core"
|
|
|
|
peripherals = [
|
|
# Peripherals available in the PAC:
|
|
"aes",
|
|
"apb_ctrl",
|
|
"bb",
|
|
"dport",
|
|
"efuse",
|
|
"flash_encryption",
|
|
"frc_timer",
|
|
"gpio",
|
|
"gpio_sd",
|
|
"hinf",
|
|
"i2c0",
|
|
"i2c1",
|
|
"i2s0",
|
|
"i2s1",
|
|
"io_mux",
|
|
"ledc",
|
|
"mcpwm0",
|
|
"mcpwm1",
|
|
"nrx",
|
|
"pcnt",
|
|
"rmt",
|
|
"rng",
|
|
"rsa",
|
|
"rtc_cntl",
|
|
"rtc_i2c",
|
|
"rtc_io",
|
|
"sdmmc",
|
|
"sens",
|
|
"sha",
|
|
"slc",
|
|
"slchost",
|
|
"spi0",
|
|
"spi1",
|
|
"spi2",
|
|
"spi3",
|
|
"timg0",
|
|
"timg1",
|
|
"twai0",
|
|
"uart0",
|
|
"uart1",
|
|
"uart2",
|
|
"uhci0",
|
|
"uhci1",
|
|
|
|
# Additional peripherals defined by us (the developers):
|
|
"adc",
|
|
"dac",
|
|
"pdma",
|
|
"radio",
|
|
]
|