Fixed mixed En ad Ch characters

This commit is contained in:
davidinux 2021-03-22 11:15:32 +01:00
parent d8fcb97fc6
commit e8ae0fe38f
1 changed files with 29 additions and 29 deletions

View File

@ -1,36 +1,36 @@
``` ```
. .
├── components --- 可选组件可裁剪依赖kernel ├── components --- Optional components
│   ├── cppsupport --- C++支持 │   ├── cppsupport --- C++
│   └── cpup --- CPUP功能 │   └── cpup --- CPUP
├── kal --- 内核抽象层 ├── kal --- Kernel Abstraction Layer
│   ├── cmsis --- cmsis标准支持 │   ├── cmsis --- cmsis
│   └── posix --- posix标准支持 │   └── posix --- posix
├── kernel --- 内核最小功能集支持 ├── kernel --- Minimalistic kernel funtionalities
│   ├── arch --- 硬件架构相关 │   ├── arch --- Support for hardware architectures
│   │   ├── arm --- arm32架构 │   │   ├── arm --- arm32
│   │   │   └── cortex-m4 --- cortex-m4架构 │   │   │   └── cortex-m4 --- cortex-m4
│   │   │   └── iar --- │   │   │   └── iar
│   │   │   ├── los_atomic.h │   │   │   ├── los_atomic.h
│   │   │   ├── los_context.h │   │   │   ├── los_context.h
│   │   │   ├── los_interrupt.h │   │   │   ├── los_interrupt.h
│   │   │   └── los_mpu.h │   │   │   └── los_mpu.h
│   │   └── include │   │   └── include
│   │   ├── los_arch_atomic.h --- 定义通用arch的原子操作 │   │   ├── los_arch_atomic.h --- Atomic operations
│   │   ├── los_arch_context.h --- 定义通用arch的上下文切换 │   │   ├── los_arch_context.h --- Context switch
│   │   ├── los_arch.h --- 定义通用arch初始化 │   │   ├── los_arch.h --- Initialization
│   │   └── los_arch_interrupt.h --- 定义通用arch中断 │   │   └── los_arch_interrupt.h --- Interrups
│   ├── include │   ├── include
│   │   ├── los_config.h --- 功能开关和配置参数 │   │   ├── los_config.h --- Configuration parameters
│   │   ├── los_event.h --- 事件 │   │   ├── los_event.h --- Events management
│   │   ├── los_liteos.h --- liteos最小功能集对外提供的头文件 │   │   ├── los_liteos.h --- Kernel types and functions
│   │   ├── los_memory.h --- 堆内存管理 │   │   ├── los_memory.h --- Heap memory management
│   │   ├── los_mutex.h --- 互斥锁 │   │   ├── los_mutex.h --- Mutex
│   │   ├── los_queue.h --- 队列 │   │   ├── los_queue.h --- Queue
│   │   ├── los_scheduler.h --- 调度算法 │   │   ├── los_scheduler.h --- Scheduler
│   │   ├── los_sem.h --- 信号量 │   │   ├── los_sem.h --- Semaphores
│   │   ├── los_task.h --- 任务 │   │   ├── los_task.h --- Tasks
│   │   └── los_timer.h --- 定时器 │   │   └── los_timer.h --- Timer
│   └── src │   └── src
├── targets ├── targets
│   └── targets │   └── targets
@ -40,13 +40,13 @@
│   ├── Libraries │   ├── Libraries
│   ├── main.c │   ├── main.c
│   ├── project │   ├── project
│   ├── target_config.h --- 板级配置功能开关和配置参数 │   ├── target_config.h --- Hardware target configuration
│   └── Utilities │   └── Utilities
└── utils └── utils
├── include ├── include
│   ├── los_compiler.h --- 编译工具配置,类型定义 │   ├── los_compiler.h --- Compiler configuration
│   ├── los_debug.h --- debugprintf相关 │   ├── los_debug.h --- Debugging facilities
│   ├── los_error.h --- 错误定义 │   ├── los_error.h --- Errors codes and definitions
│   └── los_list.h │   └── los_list.h
└── src └── src
``` ```