esp-hal/esp-hal-common/devices/esp32h2.toml
Jesse Braham d86300f799
Add all SPI examples for the ESP32-H2 (#549)
* Update the `GDMA` driver to support the ESP32-H2

* Update the `SPI` driver to support the ESP32-H2

* Add `SPI` examples for ESP32-H2

* Update CHANGELOG

* Remove copy-pasted references to ESP32-C6

* Update GPIO pins used in SPI examples, add `qspi_flash` example

* Update SPI clock configuration to produce correct clock rate

* Correct comment regarding clock source frequency

Co-authored-by: Sergio Gasquez Arcos <sergio.gasquez@gmail.com>

* H2: Add PLL_48M_CLK src to ClockControl and RawClocks

* H2: Use PLL_48M_CLK as SPI clk src

* H2: cleanup commented block in SPI driver

* H2: update docs comment in embassy_spi example

* fmt

* Add a new line in embassy_spi example

---------

Co-authored-by: Sergio Gasquez Arcos <sergio.gasquez@gmail.com>
Co-authored-by: Juraj Sadel <juraj.sadel@espressif.com>
2023-05-31 09:49:13 +02:00

68 lines
1.0 KiB
TOML

[device]
arch = "riscv"
cores = "single_core"
peripherals = [
# Peripherals available in the PAC:
"aes",
"apb_saradc",
"assist_debug",
"dma",
# "ds",
# "ecc",
"efuse",
"gpio",
# "hmac",
# "hp_apm",
# "hp_sys",
"i2c0",
"i2c1",
# "i2s0",
"interrupt_core0",
"intpri",
"io_mux",
"ledc",
# "lp_ana",
# "lp_aon",
# "lp_apm",
"lp_clkrst",
# "lp_peri",
# "lp_timer",
"lp_wdt",
"mcpwm0",
"mem_monitor",
# "modem_lpcon",
# "modem_syscon",
# "otp_debug",
# "parl_io",
# "pau",
"pcnt",
"pcr",
# "pmu",
"rmt",
# "rng",
"rsa",
"sha",
# "soc_etm",
"spi0",
"spi1",
"spi2",
"systimer",
# "tee",
"timg0",
"timg1",
# "trace",
# "twai0",
"uart0",
"uart1",
# "uhci0",
"usb_device",
# Additional peripherals defined by us (the developers):
"adc",
"assist_debug_sp_monitor",
"assist_debug_region_monitor",
"gdma",
"plic",
]