diff --git a/docs-en/readme/dfx.md b/docs-en/readme/dfx.md index 90b3da09d6bed2bd66b1963480e1c3e148285640..01e84be97eef5ab9a5f8fc32a05c0046909aad97 100755 --- a/docs-en/readme/dfx.md +++ b/docs-en/readme/dfx.md @@ -8,7 +8,7 @@ As chip resources are limited and hardware platforms are diversified, component- - mini: This framework is intended for hardware platforms with Cortex-M or equivalent processing capabilities. The system memory is generally less than 512 KB. There is only one lightweight file system that can be used in limited scenarios, or no file system at all. The mini framework complies with the Cortex Microcontroller Software Interface Standard \(CMSIS\). -- featured: This framework is intended for hardware platforms with Cortex-A or equivalent processing capabilities. The system memory is greater than 512 KB. There is a comprehensive file system for storing a large amount of data. The featured framework complies with the Portable Operating System Interface \(POSIX\) specifications. +- featured: This framework is intended for hardware platforms with Cortex-A or equivalent processing capabilities. The system memory is generally greater than 512 KB. There is a comprehensive file system for storing a large amount of data. The featured framework complies with the Portable Operating System Interface \(POSIX\) specifications. ## Directory Structure @@ -130,7 +130,7 @@ The mini framework is a simple and compact DFX design that provides the logging Add the following code to the initialization process of Module A to register it with the logging framework: ``` - HiLogRegisterModule(HILOG_MODULE_SAMGR, "A"); + HiLogRegisterModule(HILOG_MODULE_A, "A"); ``` @@ -155,7 +155,6 @@ The mini framework is a simple and compact DFX design that provides the logging
OUTPUT_OPTION_DEBUG: Logs are directly output to the serial port without cross-task scheduling. This value is used only for temporary debugging.
OUTPUT_OPTION_FLOW (default value): Logs are output as data flow to the serial port.
OUTPUT_OPTION_TEXT_FILE: Logs are output as text files.
-OUTPUT_OPTION_BIN_FILE (to be supported): Logs are output as binary files.