From f0f9917be511667a06f715f582cad84817584379 Mon Sep 17 00:00:00 2001 From: Chen Wu Date: Mon, 21 Oct 2024 20:04:56 +0800 Subject: [PATCH] ci: Fixed an issue with document compilation failure --- .gitlab/ci/rules.yml | 1 + components/at/include/esp_at_core.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab/ci/rules.yml b/.gitlab/ci/rules.yml index 87769884f..9662cb382 100644 --- a/.gitlab/ci/rules.yml +++ b/.gitlab/ci/rules.yml @@ -12,6 +12,7 @@ ############ .patterns-docs: &patterns-docs - "docs/**/*" + - "components/at/include/*" .patterns-src: &patterns-src - "bootloader_components/**/*" diff --git a/components/at/include/esp_at_core.h b/components/at/include/esp_at_core.h index b2d3d8265..353c7af8a 100644 --- a/components/at/include/esp_at_core.h +++ b/components/at/include/esp_at_core.h @@ -457,7 +457,7 @@ int32_t esp_at_get_core_version(char *buffer, uint32_t size); * @brief Mount FATFS partition * * @note if you want to use FATFS, you should enable "AT FS command support" in menuconfig first. - * @note esp-at uses a fixed partition for the filesystem, which defined in esp-at/module_config//at_customize.csv, + * @note esp-at uses a fixed partition for the filesystem, which defined in esp-at/module_config/$your_module_config/at_customize.csv, * and uses a fixed mount point "/fatfs". * @note when using FATFS, you should call this function to mount the partition first, * and call at_fatfs_unmount() to unmount the partition when you don't need it.