mirror of
https://github.com/eclipse-threadx/levelx.git
synced 2026-09-14 04:06:00 +08:00
Release 6.2.0
This commit is contained in:
+6
-3
@@ -26,7 +26,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* lx_api.h PORTABLE C */
|
||||
/* 6.1.12 */
|
||||
/* 6.2.0 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* William E. Lamie, Microsoft Corporation */
|
||||
@@ -72,6 +72,9 @@
|
||||
/* 07-29-2022 William E. Lamie Modified comment(s), and */
|
||||
/* updated product constants, */
|
||||
/* resulting in version 6.1.12 */
|
||||
/* 10-31-2022 Xiuwen Cai Modified comment(s), and */
|
||||
/* updated product constants, */
|
||||
/* resulting in version 6.2.0 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@@ -175,8 +178,8 @@ typedef unsigned long long ULONG64;
|
||||
/* Define basic constants for the LevelX Stack. */
|
||||
#define AZURE_RTOS_LEVELX
|
||||
#define LEVELX_MAJOR_VERSION 6
|
||||
#define LEVELX_MINOR_VERSION 1
|
||||
#define LEVELX_PATCH_VERSION 12
|
||||
#define LEVELX_MINOR_VERSION 2
|
||||
#define LEVELX_PATCH_VERSION 0
|
||||
|
||||
|
||||
/* Define general LevelX Constants. */
|
||||
|
||||
@@ -285,7 +285,7 @@ UINT i, j;
|
||||
pointer = (ULONG *) &nand_memory_area[0];
|
||||
|
||||
/* Loop to erase block. */
|
||||
words = sizeof(nand_memory_area)/sizeof(ULONG);
|
||||
words = sizeof(nand_memory_area)/(sizeof(ULONG));
|
||||
while (words--)
|
||||
{
|
||||
|
||||
|
||||
@@ -156,7 +156,7 @@ ULONG words;
|
||||
pointer = (ULONG *) &nor_memory_area[0];
|
||||
|
||||
/* Loop to erase block. */
|
||||
words = sizeof(nor_memory_area)/sizeof(ULONG);
|
||||
words = sizeof(nor_memory_area)/(sizeof(ULONG));
|
||||
while (words--)
|
||||
{
|
||||
|
||||
|
||||
Reference in New Issue
Block a user