Skip to content

Commit

Permalink
Release 6.2.1 on 08 Mar 2023. Expand to see details.
Browse files Browse the repository at this point in the history
76ef11179 Prepare for 6.2.1 patch release.
6cc77e72e Updated owners.txt
182e2643f Updated the ThreadX external reference
013bbab27 Bump Studio version so we can release vlist/hlist resize bug fix.
8b87a050f Fix vertical/horizontal list resize bug.
  • Loading branch information
bo-ms committed Mar 8, 2023
1 parent 5712bab commit 1faa66f
Show file tree
Hide file tree
Showing 51 changed files with 63 additions and 60 deletions.
7 changes: 5 additions & 2 deletions common/inc/gx_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/* APPLICATION INTERFACE DEFINITION RELEASE */
/* */
/* gx_api.h PORTABLE C */
/* 6.2.0 */
/* 6.2.1 */
/* AUTHOR */
/* */
/* Kenneth Maxwell, Microsoft Corporation */
Expand Down Expand Up @@ -101,6 +101,9 @@
/* GX_SCROLLBAR_BACKGROUND_ */
/* TILE, */
/* resulting in version 6.2.0 */
/* 03-08-2023 Ting Zhu Modified comment(s), */
/* updated patch version, */
/* resulting in version 6.2.1 */
/* */
/**************************************************************************/

Expand All @@ -124,7 +127,7 @@ extern "C" {
#define AZURE_RTOS_GUIX
#define GUIX_MAJOR_VERSION 6
#define GUIX_MINOR_VERSION 2
#define GUIX_PATCH_VERSION 0
#define GUIX_PATCH_VERSION 1

/* The following symbols are defined for backward compatibility reasons.*/
#define __PRODUCT_GUIX__
Expand Down
6 changes: 3 additions & 3 deletions common/inc/gx_scroll_wheel.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/* COMPONENT DEFINITION RELEASE */
/* */
/* gx_scroll_wheel.h PORTABLE C */
/* 6.x */
/* 6.2.1 */
/* AUTHOR */
/* */
/* Kenneth Maxwell, Microsoft Corporation */
Expand Down Expand Up @@ -54,9 +54,9 @@
/* changed prototype for */
/* generic_scroll_wheel_scroll,*/
/* resulting in version 6.2.0 */
/* xx-xx-xxxx Ting Zhu Modified comment(s), */
/* 03-08-2023 Ting Zhu Modified comment(s), */
/* changed return type, */
/* resulting in version 6.x */
/* resulting in version 6.2.1 */
/* */
/**************************************************************************/

Expand Down
6 changes: 3 additions & 3 deletions common/src/gx_generic_scroll_wheel_scroll.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
/* FUNCTION RELEASE */
/* */
/* _gx_generic_scroll_wheel_scroll PORTABLE C */
/* 6.x */
/* 6.2.1 */
/* AUTHOR */
/* */
/* Ting Zhu, Microsoft Corporation */
Expand Down Expand Up @@ -80,9 +80,9 @@
/* 10-31-2022 Kenneth Maxwell Modified comment(s), */
/* changed return type, */
/* resulting in version 6.2.0 */
/* xx-xx-xxxx Ting Zhu Modified comment(s), */
/* 03-08-2023 Ting Zhu Modified comment(s), */
/* changed return type, */
/* resulting in version 6.x */
/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
UINT _gx_generic_scroll_wheel_scroll(GX_GENERIC_SCROLL_WHEEL *wheel, GX_VALUE shift)
Expand Down
6 changes: 3 additions & 3 deletions common/src/gx_system_event_dispatch.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
/* FUNCTION RELEASE */
/* */
/* _gx_system_event_dispatch PORTABLE C */
/* 6.x */
/* 6.2.1 */
/* AUTHOR */
/* */
/* Kenneth Maxwell, Microsoft Corporation */
Expand Down Expand Up @@ -73,9 +73,9 @@
/* 04-25-2022 Ting Zhu Modified comment(s), */
/* improved logic, */
/* resulting in version 6.1.11 */
/* xx-xx-xxxx Ting Zhu Modified comment(s), fixed */
/* 03-08-2023 Ting Zhu Modified comment(s), fixed */
/* a gcc warning, */
/* resulting in version 6.x */
/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
UINT _gx_system_event_dispatch(GX_EVENT *in_event)
Expand Down
6 changes: 3 additions & 3 deletions common/src/gx_system_input_release.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
/* FUNCTION RELEASE */
/* */
/* _gx_system_input_release PORTABLE C */
/* 6.x */
/* 6.2.1 */
/* AUTHOR */
/* */
/* Kenneth Maxwell, Microsoft Corporation */
Expand Down Expand Up @@ -74,9 +74,9 @@
/* released stack entries are */
/* reset to NULL, */
/* resulting in version 6.1.12 */
/* xx-xx-xxxx Ting Zhu Modified comment(s), */
/* 03-08-2023 Ting Zhu Modified comment(s), */
/* improved logic, */
/* resulting in version 6.x */
/* resulting in version 6.2.1 */
/* */
/**************************************************************************/

Expand Down
2 changes: 1 addition & 1 deletion ports/arc_em/metaware/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARCv2_EM/MetaWare Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARCv2_EM/MetaWare Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/arc_hs/metaware/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARC_HS/MetaWare Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARC_HS/MetaWare Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/arm9/ac5/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARM9/AC5 Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARM9/AC5 Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/arm9/gnu/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARM9/GNU Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARM9/GNU Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/arm9/iar/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARM9/IAR Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARM9/IAR Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/c667x/ccs/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX C6xxx/TI Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX C6xxx/TI Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/ccrx/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ typedef unsigned char GX_UCHAR;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_a15/gnu/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A15/GNU Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A15/GNU Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_a5/ac5/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5/AC5 Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5/AC5 Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_a5/gnu/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5/GNU Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5/GNU Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_a5/iar/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5/IAR Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5/IAR Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_a5x/ac6/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5x/AC6 Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5x/AC6 Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_a7/ac5/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A7/AC5 Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A7/AC5 Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_a7/gnu/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A7/GNU Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A7/GNU Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_a7/iar/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A7/IAR Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A7/IAR Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_a8/ac5/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A8/AC5 Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A8/AC5 Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_a8/gnu/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A8/GNU Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A8/GNU Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_a8/iar/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A8/IAR Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A8/IAR Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_a9/ac5/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A9/AC5 Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A9/AC5 Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_a9/gnu/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A9/GNU Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A9/GNU Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_a9/iar/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A9/IAR Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A9/IAR Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_m0/ac5/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M0/AC5 Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M0/AC5 Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_m0/gnu/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M0/GNU Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M0/GNU Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_m0/iar/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M0/IAR Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M0/IAR Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_m3/ac5/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/AC5 Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/AC5 Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_m3/gnu/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/GNU Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/GNU Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_m3/iar/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/IAR Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/IAR Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_m3/keil/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/KEIL Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/KEIL Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_m4/ac5/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/AC5 Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/AC5 Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_m4/gnu/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/GNU Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/GNU Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_m4/iar/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/IAR Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/IAR Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/cortex_m4/keil/inc/gx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE;

#ifdef GX_SYSTEM_INIT
CHAR _gx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/KEIL Version 6.1.12 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/KEIL Version 6.2.1 *";
#else
extern CHAR _gx_version_id[];
#endif
Expand Down
Loading

0 comments on commit 1faa66f

Please sign in to comment.