From 1134cdae2e4df336bf610848e7be7e51195e4eaa Mon Sep 17 00:00:00 2001 From: MAY Date: Fri, 30 May 2025 20:20:43 +0200 Subject: [PATCH] Add missing return values for fx_directory_create api --- rtos-docs/filex/chapter4.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rtos-docs/filex/chapter4.md b/rtos-docs/filex/chapter4.md index 25e3f3c..5818345 100644 --- a/rtos-docs/filex/chapter4.md +++ b/rtos-docs/filex/chapter4.md @@ -256,6 +256,10 @@ This service creates a subdirectory in the current default directory or in the p - **FX_PTR_ERROR** (0x18) Invalid media pointer - **FX_INVALID_ATTR** (0x19) Invalid attributes selected. - **FX_CALLER_ERROR** (0x20) Caller is not a thread. +- **FX_INVALID_NAME** (0x0C) New directory name is invalid. +- **FX_WRITE_PROTECT** (0x23) Specified media is write protected. +- **FX_ALREADY_CREATED** (0x0B) Specified directory was already created. +- **FX_INVALID_PATH** (0x0D) Path is invalid. ### Allowed From