Skip to content

Commit 8b3a829

Browse files
committed
Release 6.2.0
1 parent 2f639ba commit 8b3a829

File tree

5 files changed

+76
-63
lines changed

5 files changed

+76
-63
lines changed

CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ project(levelx
66
)
77

88
option(LX_STANDALONE_ENABLE "Enable LevelX in standalone mode" OFF)
9+
option(LX_ENABLE_FILE_SERVERS "Includes a dependency on FileX" ON)
910

1011
if(NOT DEFINED THREADX_ARCH)
1112
message(FATAL_ERROR "Error: THREADX_ARCH not defined")
@@ -25,6 +26,11 @@ if(NOT LX_STANDALONE_ENABLE)
2526
"azrtos::threadx")
2627
endif()
2728

29+
if(LX_ENABLE_FILE_SERVERS)
30+
message(STATUS "LX_ENABLE_FILE_SERVERS - defined")
31+
target_link_libraries(${PROJECT_NAME} PUBLIC "azrtos::filex")
32+
endif()
33+
2834
# A place for generated/copied include files (no need to change)
2935
set(CUSTOM_INC_DIR ${CMAKE_CURRENT_BINARY_DIR}/custom_inc)
3036

README.md

Lines changed: 62 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,94 +1,98 @@
11
# Azure RTOS LevelX
22

3-
LevelX provides NAND and NOR flash wear leveling facilities to embedded applications. Since both NAND and NOR flash memory can only be erased a finite number of times, it’s critical to distribute the flash memory use evenly. This is typically called wear leveling and is the purpose behind LevelX. LevelX presents to the user an array of logical sectors that are mapped to physical flash memory inside of LevelX. Applications may use LevelX in conjunction with FileX or may read/write logical sectors directly. LevelX is designed for fault tolerance. Flash updates are performed in a multiple-step process that can be interrupted in each step. LevelX automatically recovers to the optimal state during the next operation.
3+
LevelX provides NAND and NOR flash wear leveling facilities to embedded applications. Since both NAND and NOR flash memory can only be erased a finite number of times, it’s critical to distribute the flash memory use evenly. This is typically called **wear leveling** and is the purpose behind LevelX. LevelX presents to the user an array of logical sectors that are mapped to physical flash memory inside of LevelX. Applications may use LevelX in conjunction with FileX or may read/write logical sectors directly. LevelX is designed for fault tolerance. Flash updates are performed in a multiple-step process that can be interrupted in each step. LevelX automatically recovers to the optimal state during the next operation.
44

5-
## Documentation
5+
## Getting Started
66

7-
Documentation for this library can be found here: https://github.com/azure-rtos/levelx/releases/download/v6.0_rel/Azure_RTOS_LevelX_User_Guide.pdf
7+
Azure RTOS LevelX as part of Azure RTOS has been integrated to the semiconductor's SDKs and development environment. You can develop using the tools of choice from [STMicroelectronics](https://www.st.com/content/st_com/en/campaigns/x-cube-azrtos-azure-rtos-stm32.html), [NXP](https://www.nxp.com/design/software/embedded-software/azure-rtos-for-nxp-microcontrollers:AZURE-RTOS), [Renesas](https://github.com/renesas/azure-rtos) and [Microchip](https://mu.microchip.com/get-started-simplifying-your-iot-design-with-azure-rtos).
88

9-
# Understanding inter-component dependencies
9+
See [Overview of Azure RTOS LevelX](https://learn.microsoft.com/azure/rtos/levelx/overview-levelx) for the high-level overview, and all documentation and APIs can be found in: [Azure RTOS LevelX documentation](https://learn.microsoft.com/azure/rtos/levelx/).
1010

11-
The main components of Azure RTOS are each provided in their own repository, but there are dependencies between them--shown in the following graph--that are important to understand when setting up your builds.
11+
## Repository Structure and Usage
1212

13-
![dependency graph](docs/deps.png)
13+
### Directory layout
14+
15+
.
16+
├── cmake # CMakeList files for building the project
17+
├── common # Core LevelX files
18+
├── samples # Sample codes
19+
├── LICENSE.txt # License terms
20+
├── LICENSE-HARDWARE.txt # Licensed hardware from semiconductors
21+
├── CONTRIBUTING.md # Contribution guidance
22+
└── SECURITY.md # Microsoft repo security guidance
1423

15-
# Building and using the library
24+
### Branches & Releases
1625

17-
## Prerequisites
26+
The master branch has the most recent code with all new features and bug fixes. It does not represent the latest General Availability (GA) release of the library. Each official release (preview or GA) will be tagged to mark the commit and push it into the Github releases tab, e.g. `v6.2-rel`.
1827

19-
Install the following tools:
28+
## Component dependencies
2029

21-
* [CMake](https://cmake.org/download/) version 3.0 or later
22-
* [GCC compilers for arm-none-eabi](https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads)
23-
* [Ninja](https://ninja-build.org/)
30+
The main components of Azure RTOS are each provided in their own repository, but there are dependencies between them, as shown in the following graph. This is important to understand when setting up your builds.
2431

25-
## Cloning the repo
32+
![dependency graph](docs/deps.png)
2633

27-
```bash
28-
$ git clone https://github.com/azure-rtos/levelx.git
29-
```
34+
> You will have to take the dependency graph above into account when building anything other than ThreadX itself.
3035
31-
## Building as a static library
36+
### Building and using the library
3237

33-
Each component of Azure RTOS comes with a composible CMake-based build system that supports many different MCUs and host systems. Integrating any of these components into your device app code is as simple as adding a git submodule and then including it in your build using the CMake command `add_subdirectory()`.
38+
Instruction for building the LevelX as static library using Arm GNU Toolchain and CMake. If you are using toolchain and IDE from semiconductor, you might follow its own instructions to use Azure RTOS components as explained in the [Getting Started](#getting-started) section.
3439

35-
While the typical usage pattern is to include threadx into your device code source tree to be built & linked with your code, you can compile this project as a standalone static library to confirm your build is set up correctly.
40+
1. Install the following tools:
3641

37-
```bash
38-
$ cmake -Bbuild -DCMAKE_TOOLCHAIN_FILE=cmake/cortex_m4.cmake -GNinja .
42+
* [CMake](https://cmake.org/download/) version 3.0 or later
43+
* [Arm GNU Toolchain for arm-none-eabi](https://developer.arm.com/downloads/-/arm-gnu-toolchain-downloads)
44+
* [Ninja](https://ninja-build.org/)
3945

40-
$ cmake --build ./build
41-
```
46+
1. Build the [ThreadX library](https://github.com/azure-rtos/threadx#building-and-using-the-library) as the dependency.
4247

43-
NOTE: You will have to take the dependency graph above into account when building anything other than threadx itself.
48+
1. Cloning the repo.
4449

45-
# Repository Structure and Usage
50+
```bash
51+
$ git clone --recursive https://github.com/azure-rtos/levelx.git
52+
```
4653

47-
## Branches & Releases
54+
1. Define the features and addons you need in `lx_user.h` and build together with the component source code. You can refer to [`lx_user_sample.h`](https://github.com/azure-rtos/levelx/blob/master/common/inc/lx_user_sample.h) as an example.
4855

49-
The master branch has the most recent code with all new features and bug fixes. It does not represent the latest General Availability (GA) release of the library.
56+
1. Building as a static library
5057

51-
## Releases
58+
Each component of Azure RTOS comes with a composable CMake-based build system that supports many different MCUs and host systems. Integrating any of these components into your device app code is as simple as adding a git submodule and then including it in your build using the CMake `add_subdirectory()`.
5259
53-
Each official release (preview or GA) will be tagged to mark the commit and push it into the Github releases tab, e.g. `v6.0-rel`.
60+
While the typical usage pattern is to include LevelX into your device code source tree to be built & linked with your code, you can compile this project as a standalone static library to confirm your build is set up correctly.
5461
55-
## Directory layout
62+
An example of building the library for Cortex-M4:
5663
57-
```
58-
- cmake
59-
- common
60-
- inc
61-
- src
62-
- samples
63-
```
64+
```bash
65+
$ cmake -Bbuild -GNinja -DCMAKE_TOOLCHAIN_FILE=cmake/cortex_m4.cmake .
6466

65-
# Security
67+
$ cmake --build ./build
68+
```
6669

67-
Azure RTOS provides OEMs with components to secure communication and to create code and data isolation using underlying MCU/MPU hardware protection mechanisms. It is ultimately the responsibility of the device builder to ensure the device fully meets the evolving security requirements associated with its specific use case.
70+
## Professional support
6871

69-
# Licensing
72+
[Professional support plans](https://azure.microsoft.com/support/options/) are available from Microsoft. For community support and others, see the [Resources](#resources) section below.
7073

71-
License terms for using Azure RTOS are defined in the LICENSE.txt file of this repo. Please refer to this file for all definitive licensing information. No additional license fees are required for deploying Azure RTOS on hardware defined in the LICENSED-HARDWARE.txt file. If you are using hardware not defined in the LICENSED-HARDWARE.txt file or have licensing questions in general, please contact Microsoft directly at https://aka.ms/azrtos-license.
74+
## Licensing
7275

73-
# Contribution, feedback, issues, and professional support
76+
License terms for using Azure RTOS are defined in the LICENSE.txt file of this repo. Please refer to this file for all definitive licensing information. No additional license fees are required for deploying Azure RTOS on hardware defined in the [LICENSED-HARDWARE.txt](./LICENSED-HARDWARE.txt) file. If you are using hardware not listed in the file or having licensing questions in general, please contact Microsoft directly at https://aka.ms/azrtos-license.
7477

75-
If you encounter any bugs, have suggestions for new features, or if you would like to become an active contributor to this project, please follow the instructions provided in the contribution guideline for the corresponding repo.
78+
## Resources
7679

77-
For basic support, click Issues in the command bar or post a question to [Stack Overflow](http://stackoverflow.com/questions/tagged/azure-rtos+threadx) using the `threadx` and `azure-rtos` tags.
80+
The following are references to additional Azure RTOS resources:
7881

79-
Professional support plans (https://azure.microsoft.com/en-us/support/options/) are available from Microsoft.
82+
- **Product introduction and white papers**: https://azure.com/rtos
83+
- **General technical questions**: https://aka.ms/QnA/azure-rtos
84+
- **Product issues and bugs, or feature requests**: https://github.com/azure-rtos/levelx/issues
85+
- **Licensing and sales questions**: https://aka.ms/azrtos-license
86+
- **Product roadmap and support policy**: https://aka.ms/azrtos/lts
87+
- **Blogs and videos**: http://msiotblog.com and https://aka.ms/iotshow
88+
- **Azure RTOS TraceX Installer**: https://aka.ms/azrtos-tracex-installer
89+
90+
You can also check [previous questions](https://stackoverflow.com/questions/tagged/azure-rtos+levelx) or ask new ones on StackOverflow using the `azure-rtos` and `levelx` tags.
91+
92+
## Security
93+
94+
Azure RTOS provides OEMs with components to secure communication and to create code and data isolation using underlying MCU/MPU hardware protection mechanisms. It is ultimately the responsibility of the device builder to ensure the device fully meets the evolving security requirements associated with its specific use case.
8095

81-
# Additional Resources
96+
## Contribution
8297

83-
The following are references to additional Azure RTOS and Azure IoT in general:
84-
| Content | Link |
85-
|---|---|
86-
| TraceX Installer | https://aka.ms/azrtos-tracex-installer |
87-
| Azure RTOS Documentation and Guides: | https://docs.microsoft.com/azure/rtos |
88-
| Azure RTOS Website: | https://azure.microsoft.com/services/rtos/ |
89-
| Azure RTOS Sales Questions: | https://aka.ms/azrtos-license |
90-
| Azure RTOS Product Support Policy | https://aka.ms/azrtos/lts |
91-
| Azure RTOS Functional Safety Artifacts | https://aka.ms/azrtos/tuv |
92-
| For technical questions check out Microsoft Q/A for Azure IoT | https://aka.ms/QnA/azure-rtos |
93-
| Internet of Things Show for latest announcements and online training | https://aka.ms/iotshow |
94-
| IoT Tech Community | https://aka.ms/community/azure-rtos |
98+
Please follow the instructions provided in the [CONTRIBUTING.md](./CONTRIBUTING.md) for the corresponding repository.

common/inc/lx_api.h

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/* APPLICATION INTERFACE DEFINITION RELEASE */
2727
/* */
2828
/* lx_api.h PORTABLE C */
29-
/* 6.1.12 */
29+
/* 6.2.0 */
3030
/* AUTHOR */
3131
/* */
3232
/* William E. Lamie, Microsoft Corporation */
@@ -72,6 +72,9 @@
7272
/* 07-29-2022 William E. Lamie Modified comment(s), and */
7373
/* updated product constants, */
7474
/* resulting in version 6.1.12 */
75+
/* 10-31-2022 Xiuwen Cai Modified comment(s), and */
76+
/* updated product constants, */
77+
/* resulting in version 6.2.0 */
7578
/* */
7679
/**************************************************************************/
7780

@@ -175,8 +178,8 @@ typedef unsigned long long ULONG64;
175178
/* Define basic constants for the LevelX Stack. */
176179
#define AZURE_RTOS_LEVELX
177180
#define LEVELX_MAJOR_VERSION 6
178-
#define LEVELX_MINOR_VERSION 1
179-
#define LEVELX_PATCH_VERSION 12
181+
#define LEVELX_MINOR_VERSION 2
182+
#define LEVELX_PATCH_VERSION 0
180183

181184

182185
/* Define general LevelX Constants. */

common/src/lx_nand_flash_simulator.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ UINT i, j;
285285
pointer = (ULONG *) &nand_memory_area[0];
286286

287287
/* Loop to erase block. */
288-
words = sizeof(nand_memory_area)/sizeof(ULONG);
288+
words = sizeof(nand_memory_area)/(sizeof(ULONG));
289289
while (words--)
290290
{
291291

common/src/lx_nor_flash_simulator.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ ULONG words;
156156
pointer = (ULONG *) &nor_memory_area[0];
157157

158158
/* Loop to erase block. */
159-
words = sizeof(nor_memory_area)/sizeof(ULONG);
159+
words = sizeof(nor_memory_area)/(sizeof(ULONG));
160160
while (words--)
161161
{
162162

0 commit comments

Comments
 (0)