Release 6.2.0

This commit is contained in:
Tiejun Zhou
2022-10-26 23:43:27 +00:00
parent 2f639bac26
commit 8b3a8293ce
5 changed files with 80 additions and 67 deletions
+6 -3
View File
@@ -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. */
+1 -1
View File
@@ -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--)
{
+1 -1
View File
@@ -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--)
{