esp-hal/esp-hal-common/devices/esp32s3.toml
Jordan Halase a562863cde
Add MD5 functionality from ESP ROM (#618)
* Add ROM MD5 definitions in linker and devices

* Add initial MD5 support

* Implement traits and add comments to MD5 module

* Add MD5 example to ESP32-C3

* Test MD5 context on the quick brown fox

* Implemenr From<Context> for Digest

* Add MD5 to the rest of the examples

* Add docs for MD5

* Remove #[repr(transparent)] from md5::Digest

* Update CHANGELOG.md
2023-06-26 09:01:34 +02:00

85 lines
1.3 KiB
TOML

[device]
arch = "xtensa"
cores = "multi_core"
peripherals = [
# Peripherals available in the PAC:
"aes",
"apb_ctrl",
"apb_saradc",
"assist_debug",
"dma",
"ds",
"efuse",
"extmem",
"gpio",
"gpio_sd",
"hmac",
"i2c0",
"i2c1",
"i2s0",
"i2s1",
"interrupt_core0",
"interrupt_core1",
"io_mux",
"lcd_cam",
"ledc",
"mcpwm0",
"mcpwm1",
"pcnt",
"peri_backup",
"rmt",
"rng",
"rsa",
"rtc_cntl",
"rtc_i2c",
"rtc_io",
"sens",
"sensitive",
"sha",
"spi0",
"spi1",
"spi2",
"spi3",
"system",
"systimer",
"timg0",
"timg1",
"twai0",
"uart0",
"uart1",
"uart2",
"uhci0",
"uhci1",
"usb0",
"usb_device",
"usb_wrap",
"wcl",
"xts_aes",
# Additional peripherals defined by us (the developers):
"adc",
"assist_debug_region_monitor",
"gdma",
"radio",
"phy",
"bt",
"wifi",
"psram",
# ROM capabilities
"rom_crc_le",
"rom_crc_be",
"rom_md5_bsd",
# Wakeup SOC based on ESP-IDF:
"pm_support_ext0_wakeup",
"pm_support_ext1_wakeup",
"pm_support_touch_sensor_wakeup",
"pm_support_wifi_wakeup",
"pm_support_bt_wakeup",
"uart_support_wakeup_int",
"ulp_supported",
"riscv_coproc_supported",
]