ci(doc): enable doc build for esp32c5

This commit is contained in:
laokaiyao
2024-04-18 15:13:55 +08:00
parent 40684a0e1c
commit fc000cd7b7
14 changed files with 60 additions and 22 deletions

View File

@@ -0,0 +1,17 @@
/*
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include "sdkconfig.h"
// TODO: IDF-9197 This file is created to glob the gpio_sig_map.h files correctly in esp-docs
#if CONFIG_IDF_TARGET_ESP32C5_BETA3_VERSION
#include "../../beta3/include/soc/gpio_sig_map.h"
#elif CONFIG_IDF_TARGET_ESP32C5_MP_VERSION
#include "../../mp/include/soc/gpio_sig_map.h"
#endif