From 05739798c302012af99d79665cceedaf1ac85634 Mon Sep 17 00:00:00 2001 From: "Michael (XIAO Xufeng)" Date: Sun, 18 Aug 2019 13:23:28 +0800 Subject: [PATCH] soc: s2beta support --- components/soc/esp32/include/soc/soc_caps.h | 8 ++++++++ components/soc/esp32s2beta/include/soc/soc_caps.h | 4 ++++ 2 files changed, 12 insertions(+) create mode 100644 components/soc/esp32/include/soc/soc_caps.h create mode 100644 components/soc/esp32s2beta/include/soc/soc_caps.h diff --git a/components/soc/esp32/include/soc/soc_caps.h b/components/soc/esp32/include/soc/soc_caps.h new file mode 100644 index 0000000000..224c2657d3 --- /dev/null +++ b/components/soc/esp32/include/soc/soc_caps.h @@ -0,0 +1,8 @@ +// The long term plan is to have a single soc_caps.h for each peripheral. +// During the refactoring and multichip support development process, we +// seperate these information into periph_caps.h for each peripheral and +// include them here. + +#define SOC_MCPWM_SUPPORTED 1 +#define SOC_SDMMC_HOST_SUPPORTED 1 +#define SOC_BT_SUPPORTED 1 \ No newline at end of file diff --git a/components/soc/esp32s2beta/include/soc/soc_caps.h b/components/soc/esp32s2beta/include/soc/soc_caps.h new file mode 100644 index 0000000000..fc6db81782 --- /dev/null +++ b/components/soc/esp32s2beta/include/soc/soc_caps.h @@ -0,0 +1,4 @@ +// The long term plan is to have a single soc_caps.h for each peripheral. +// During the refactoring and multichip support development process, we +// seperate these information into periph_caps.h for each peripheral and +// include them here.