mirror of
https://github.com/azure-rtos/guix.git
synced 2025-01-14 06:43:20 +08:00
Release 6.1.8
This commit is contained in:
parent
b917b0e8ff
commit
8251cf184e
@ -2,7 +2,6 @@ cmake_minimum_required(VERSION 3.0.0 FATAL_ERROR)
|
||||
|
||||
# Set up the project
|
||||
project(guix
|
||||
VERSION 6.0.0
|
||||
LANGUAGES C ASM
|
||||
)
|
||||
|
||||
@ -26,7 +25,11 @@ target_link_libraries(${PROJECT_NAME} PUBLIC
|
||||
set(CUSTOM_INC_DIR ${CMAKE_CURRENT_BINARY_DIR}/custom_inc)
|
||||
|
||||
# Pick up the port specific stuff first
|
||||
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/ports/${THREADX_ARCH}/${THREADX_TOOLCHAIN})
|
||||
if(DEFINED GUIX_CUSTOM_PORT)
|
||||
add_subdirectory(${GUIX_CUSTOM_PORT} guix_port)
|
||||
else()
|
||||
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/ports/${THREADX_ARCH}/${THREADX_TOOLCHAIN})
|
||||
endif()
|
||||
|
||||
# Then the common files
|
||||
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/common)
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_api.h PORTABLE C */
|
||||
/* 6.1.7 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -72,6 +72,9 @@
|
||||
/* graphics accelerator */
|
||||
/* support, */
|
||||
/* resulting in version 6.1.7 */
|
||||
/* 08-02-2021 Ting Zhu Modified comment(s), added */
|
||||
/* GX_TICKS_SECOND definition */
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -95,7 +98,7 @@ extern "C" {
|
||||
#define AZURE_RTOS_GUIX
|
||||
#define GUIX_MAJOR_VERSION 6
|
||||
#define GUIX_MINOR_VERSION 1
|
||||
#define GUIX_PATCH_VERSION 7
|
||||
#define GUIX_PATCH_VERSION 8
|
||||
|
||||
/* The following symbols are defined for backward compatibility reasons.*/
|
||||
#define __PRODUCT_GUIX__
|
||||
@ -180,6 +183,10 @@ typedef struct GX_STRING_STRUCT
|
||||
#define GX_SYSTEM_TIMER_TICKS ((GX_SYSTEM_TIMER_MS * TX_TIMER_TICKS_PER_SECOND) / 1000)
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND (1000 / GX_SYSTEM_TIMER_MS)
|
||||
#endif
|
||||
|
||||
#endif /* GX_THREADX_BINDING */
|
||||
|
||||
#ifndef GX_DISABLE_MULTITHREAD_SUPPORT
|
||||
@ -301,7 +308,7 @@ typedef struct GX_STRING_STRUCT
|
||||
|
||||
/* defines for backwards compatiblity */
|
||||
#ifndef GX_RENESAS_DAVE2D_DRAW
|
||||
#ifdef GX_USE_SYNERGY_DRAW
|
||||
#ifdef GX_USE_SYNERGY_DRW
|
||||
#define GX_RENESAS_DAVE2D_DRAW
|
||||
#endif
|
||||
#endif
|
||||
@ -811,6 +818,7 @@ typedef struct GX_STRING_STRUCT
|
||||
/* Define Radial Progress Bar style flags. */
|
||||
#define GX_STYLE_RADIAL_PROGRESS_ALIAS 0x00000200UL
|
||||
#define GX_STYLE_RADIAL_PROGRESS_ROUND 0x00000400UL
|
||||
#define GX_STYLE_RADIAL_PROGRESS_NO_BACKTRACK 0x00000800UL
|
||||
|
||||
/* Define Text alignment styles. */
|
||||
|
||||
@ -1200,10 +1208,7 @@ typedef struct GX_PIXELMAP_STRUCT
|
||||
#define GX_PIXELMAP_ALPHA 0x04 /* Pixelmap has alpha channel */
|
||||
#define GX_PIXELMAP_TARGA 0x08 /* Pixelmap uses Targa format compresssion */
|
||||
#define GX_PIXELMAP_RAW_FORMAT 0x10 /* RAW JPG/PNG format */
|
||||
|
||||
#if defined(GX_RENESAS_DAVE2D_DRAW)
|
||||
#define GX_PIXELMAP_DYNAMICALLY_ALLOCATED 0x20 /* Pixelmap is dynamically allocated */
|
||||
#endif
|
||||
|
||||
#define GX_PIXELMAP_ROTATED_CW 0x40
|
||||
#define GX_PIXELMAP_ROTATED_CCW 0x80
|
||||
|
@ -35,7 +35,7 @@
|
||||
/* FUNCTION RELEASE */
|
||||
/* */
|
||||
/* _gx_animation_drag_event_check PORTABLE C */
|
||||
/* 6.1 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -81,6 +81,9 @@
|
||||
/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */
|
||||
/* 09-30-2020 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* replaced abs with GX_ABS, */
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
static UINT _gx_animation_drag_event_check(GX_ANIMATION *animation, GX_EVENT *event_ptr)
|
||||
@ -173,7 +176,7 @@ INT shift;
|
||||
shift = (size -> gx_rectangle_right - size -> gx_rectangle_left + 1) >> 1;
|
||||
}
|
||||
|
||||
if ((abs(delta) < shift) || (animation -> gx_animation_slide_target_index_2 == -1))
|
||||
if ((GX_ABS(delta) < shift) || (animation -> gx_animation_slide_target_index_2 == -1))
|
||||
{
|
||||
/* slide back to original when slide distance is less than half screen width/height. */
|
||||
if (animation -> gx_animation_slide_target_index_2 >= 0)
|
||||
|
@ -30,13 +30,125 @@
|
||||
#include "gx_system.h"
|
||||
#include "gx_scrollbar.h"
|
||||
|
||||
/**************************************************************************/
|
||||
/* */
|
||||
/* FUNCTION RELEASE */
|
||||
/* */
|
||||
/* _gx_horizontal_list_invisible_page_scroll PORTABLE C */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Ting Zhu, Microsoft Corporation */
|
||||
/* */
|
||||
/* DESCRIPTION */
|
||||
/* */
|
||||
/* This function moves left or right the horizontal list by pages. */
|
||||
/* */
|
||||
/* INPUT */
|
||||
/* */
|
||||
/* list Horizontal list widget control*/
|
||||
/* block */
|
||||
/* num_pages The number of pages to scroll */
|
||||
/* */
|
||||
/* OUTPUT */
|
||||
/* */
|
||||
/* None */
|
||||
/* */
|
||||
/* CALLS */
|
||||
/* */
|
||||
/* _gx_widget_first_client_child_get Get first client child */
|
||||
/* _gx_widget_next_client_child_get Get next client child */
|
||||
/* */
|
||||
/* CALLED BY */
|
||||
/* */
|
||||
/* _gx_horizontal_list_scroll */
|
||||
/* */
|
||||
/* RELEASE HISTORY */
|
||||
/* */
|
||||
/* DATE NAME DESCRIPTION */
|
||||
/* */
|
||||
/* 08-02-2021 Ting Zhu Initial Version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
static VOID _gx_horizontal_list_invisible_page_scroll(GX_HORIZONTAL_LIST *list, INT num_pages)
|
||||
{
|
||||
INT maximum_scroll_pages;
|
||||
|
||||
if (!(list -> gx_widget_style & GX_STYLE_WRAP))
|
||||
{
|
||||
|
||||
/* Wrap style is not applied, need to calculate scroll limit. */
|
||||
if (num_pages < 0)
|
||||
{
|
||||
|
||||
/* Calculate maximum up scroll num_pages. */
|
||||
maximum_scroll_pages = (list -> gx_horizontal_list_total_columns - list -> gx_horizontal_list_top_index - list -> gx_horizontal_list_child_count);
|
||||
maximum_scroll_pages /= list -> gx_horizontal_list_child_count;
|
||||
|
||||
/* Remain one page for normal scroll routine. */
|
||||
if (maximum_scroll_pages >= 1)
|
||||
{
|
||||
maximum_scroll_pages--;
|
||||
}
|
||||
|
||||
if (maximum_scroll_pages < (-num_pages))
|
||||
{
|
||||
num_pages = (-maximum_scroll_pages);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
/* Calculate maximum down scroll num_pages. */
|
||||
maximum_scroll_pages = list -> gx_horizontal_list_top_index / list -> gx_horizontal_list_child_count;
|
||||
|
||||
/* Remain one page for normal scroll routine. */
|
||||
if (maximum_scroll_pages >= 1)
|
||||
{
|
||||
maximum_scroll_pages--;
|
||||
}
|
||||
|
||||
if (maximum_scroll_pages < num_pages)
|
||||
{
|
||||
num_pages = maximum_scroll_pages;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (num_pages)
|
||||
{
|
||||
|
||||
/* Update top index according to scroll num_pages. */
|
||||
list -> gx_horizontal_list_top_index -= num_pages * list -> gx_horizontal_list_child_count;
|
||||
|
||||
if (list -> gx_widget_style & GX_STYLE_WRAP)
|
||||
{
|
||||
|
||||
/* Wrap page index. */
|
||||
if (num_pages < 0)
|
||||
{
|
||||
while (list -> gx_horizontal_list_top_index >= list -> gx_horizontal_list_total_columns)
|
||||
{
|
||||
list -> gx_horizontal_list_top_index -= list -> gx_horizontal_list_total_columns;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
while (list -> gx_horizontal_list_top_index < 0)
|
||||
{
|
||||
list -> gx_horizontal_list_top_index += list -> gx_horizontal_list_total_columns;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**************************************************************************/
|
||||
/* */
|
||||
/* FUNCTION RELEASE */
|
||||
/* */
|
||||
/* _gx_horizontal_list_scroll PORTABLE C */
|
||||
/* 6.1 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -74,6 +186,9 @@
|
||||
/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */
|
||||
/* 09-30-2020 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1 */
|
||||
/* 08-02-2021 Ting Zhu Modified comment(s), */
|
||||
/* fixed scroll overflow issue,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
VOID _gx_horizontal_list_scroll(GX_HORIZONTAL_LIST *list, INT amount)
|
||||
@ -83,12 +198,50 @@ GX_WIDGET *last_child;
|
||||
GX_RECTANGLE block;
|
||||
GX_SCROLLBAR *scroll;
|
||||
GX_BOOL do_block_move = GX_TRUE;
|
||||
GX_BOOL reuse_child_widgets = GX_FALSE;
|
||||
INT page_size;
|
||||
INT num_pages;
|
||||
|
||||
if (!amount)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((list -> gx_horizontal_list_callback != GX_NULL) &&
|
||||
(list -> gx_horizontal_list_visible_columns < list -> gx_horizontal_list_total_columns) &&
|
||||
((list -> gx_horizontal_list_child_count < list -> gx_horizontal_list_total_columns) || (list -> gx_widget_style & GX_STYLE_WRAP)))
|
||||
{
|
||||
reuse_child_widgets = GX_TRUE;
|
||||
|
||||
/* Calculate the page size. */
|
||||
page_size = (list -> gx_horizontal_list_child_width * list -> gx_horizontal_list_child_count);
|
||||
|
||||
if (!page_size)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
/* Calculate the number of pages to be scrolled. */
|
||||
if (amount < 0)
|
||||
{
|
||||
num_pages = (amount + page_size) / page_size;
|
||||
}
|
||||
else
|
||||
{
|
||||
num_pages = (amount - page_size) / page_size;
|
||||
}
|
||||
|
||||
if (num_pages)
|
||||
{
|
||||
|
||||
/* Calculate the remainning scroll amount. */
|
||||
amount -= (num_pages * page_size);
|
||||
|
||||
/* Scroll pages. */
|
||||
_gx_horizontal_list_invisible_page_scroll(list, num_pages);
|
||||
}
|
||||
}
|
||||
|
||||
/* first shift my child widgets */
|
||||
child = list -> gx_widget_first_child;
|
||||
|
||||
@ -104,9 +257,7 @@ GX_BOOL do_block_move = GX_TRUE;
|
||||
|
||||
/* now check to see if we need to wrap any child widgets */
|
||||
|
||||
if ((list -> gx_horizontal_list_callback != GX_NULL) &&
|
||||
(list -> gx_horizontal_list_visible_columns < list -> gx_horizontal_list_total_columns) &&
|
||||
((list -> gx_horizontal_list_child_count < list -> gx_horizontal_list_total_columns) || (list -> gx_widget_style & GX_STYLE_WRAP)))
|
||||
if (reuse_child_widgets)
|
||||
{
|
||||
/* this means we have fewer children than list rows, so we
|
||||
need to move and re-use the child widgets
|
||||
|
@ -1386,7 +1386,6 @@ static UINT _gx_image_reader_pixel_rotated_write_callback_set(GX_IMAGE_READER *i
|
||||
|
||||
default:
|
||||
return GX_NOT_SUPPORTED;
|
||||
break;
|
||||
}
|
||||
|
||||
return GX_SUCCESS;
|
||||
|
@ -1792,7 +1792,7 @@ GX_UBYTE blue;
|
||||
/* FUNCTION RELEASE */
|
||||
/* */
|
||||
/* _gx_image_reader_png_paeth_predictor PORTABLE C */
|
||||
/* 6.1 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -1826,6 +1826,9 @@ GX_UBYTE blue;
|
||||
/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */
|
||||
/* 09-30-2020 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* replaced abs with GX_ABS, */
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
static GX_UBYTE _gx_image_reader_png_paeth_predictor(GX_UBYTE a, GX_UBYTE b, GX_UBYTE c)
|
||||
@ -1834,9 +1837,9 @@ INT p;
|
||||
INT pa, pb, pc;
|
||||
|
||||
p = a + b - c;
|
||||
pa = abs(p - a);
|
||||
pb = abs(p - b);
|
||||
pc = abs(p - c);
|
||||
pa = GX_ABS(p - a);
|
||||
pb = GX_ABS(p - b);
|
||||
pc = GX_ABS(p - c);
|
||||
|
||||
/*return nearest of a, b, c */
|
||||
|
||||
|
@ -36,7 +36,7 @@
|
||||
/* FUNCTION RELEASE */
|
||||
/* */
|
||||
/* _gx_radial_progress_bar_background_draw PORTABLE C */
|
||||
/* 6.1 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -75,6 +75,10 @@
|
||||
/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */
|
||||
/* 09-30-2020 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1 */
|
||||
/* 08-02-2021 Ting Zhu Modified comment(s), */
|
||||
/* supported no background */
|
||||
/* radial track mode, */
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
VOID _gx_radial_progress_bar_background_draw(GX_RADIAL_PROGRESS_BAR *progress_bar)
|
||||
@ -181,8 +185,6 @@ GX_VALUE old_ypos = 0;
|
||||
ycenter = (GX_VALUE)(size -> gx_rectangle_bottom + size -> gx_rectangle_top);
|
||||
ycenter >>= 1;
|
||||
|
||||
_gx_context_line_color_set(info -> gx_radial_progress_bar_info_normal_brush_color);
|
||||
_gx_context_brush_width_set((UINT)(info -> gx_radial_progress_bar_info_normal_brush_width));
|
||||
brush -> gx_brush_style &= (ULONG)(~GX_BRUSH_SOLID_FILL);
|
||||
|
||||
if (progress_bar -> gx_widget_style & GX_STYLE_RADIAL_PROGRESS_ALIAS)
|
||||
@ -195,7 +197,13 @@ GX_VALUE old_ypos = 0;
|
||||
brush -> gx_brush_style |= GX_BRUSH_ROUND;
|
||||
}
|
||||
|
||||
_gx_canvas_circle_draw(xcenter, ycenter, (UINT)(info -> gx_radial_progress_bar_info_radius));
|
||||
if (!(progress_bar -> gx_widget_style & GX_STYLE_RADIAL_PROGRESS_NO_BACKTRACK))
|
||||
{
|
||||
_gx_context_line_color_set(info -> gx_radial_progress_bar_info_normal_brush_color);
|
||||
_gx_context_brush_width_set((UINT)(info -> gx_radial_progress_bar_info_normal_brush_width));
|
||||
|
||||
_gx_canvas_circle_draw(xcenter, ycenter, (UINT)(info -> gx_radial_progress_bar_info_radius));
|
||||
}
|
||||
|
||||
if (info -> gx_radial_progress_bar_info_current_val != 0)
|
||||
{
|
||||
|
@ -36,7 +36,7 @@
|
||||
/* FUNCTION RELEASE */
|
||||
/* */
|
||||
/* _gx_radial_progress_bar_event_process PORTABLE C */
|
||||
/* 6.1 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -75,6 +75,10 @@
|
||||
/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */
|
||||
/* 09-30-2020 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1 */
|
||||
/* 08-02-2021 Ting Zhu Modified comment(s), */
|
||||
/* removed size update logic */
|
||||
/* from GX_EVENT_SHOW entry, */
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
UINT _gx_radial_progress_bar_event_process(GX_RADIAL_PROGRESS_BAR *progress_bar, GX_EVENT *event_ptr)
|
||||
@ -94,7 +98,6 @@ GX_RADIAL_PROGRESS_BAR_INFO *info;
|
||||
switch (event_ptr -> gx_event_type)
|
||||
{
|
||||
case GX_EVENT_SHOW:
|
||||
_gx_radial_progress_bar_size_update(progress_bar);
|
||||
_gx_widget_event_process((GX_WIDGET *)progress_bar, event_ptr);
|
||||
break;
|
||||
|
||||
|
@ -30,13 +30,125 @@
|
||||
#include "gx_system.h"
|
||||
#include "gx_scrollbar.h"
|
||||
|
||||
/**************************************************************************/
|
||||
/* */
|
||||
/* FUNCTION RELEASE */
|
||||
/* */
|
||||
/* _gx_vertical_list_invisible_page_scroll PORTABLE C */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Ting Zhu, Microsoft Corporation */
|
||||
/* */
|
||||
/* DESCRIPTION */
|
||||
/* */
|
||||
/* This function moves up or down the vertical list by pages. */
|
||||
/* */
|
||||
/* INPUT */
|
||||
/* */
|
||||
/* list Vertical list widget control */
|
||||
/* block */
|
||||
/* num_pages The number of pages to scroll */
|
||||
/* */
|
||||
/* OUTPUT */
|
||||
/* */
|
||||
/* None */
|
||||
/* */
|
||||
/* CALLS */
|
||||
/* */
|
||||
/* _gx_widget_first_client_child_get Get first client child */
|
||||
/* _gx_widget_next_client_child_get Get next client child */
|
||||
/* */
|
||||
/* CALLED BY */
|
||||
/* */
|
||||
/* _gx_vertical_list_scroll */
|
||||
/* */
|
||||
/* RELEASE HISTORY */
|
||||
/* */
|
||||
/* DATE NAME DESCRIPTION */
|
||||
/* */
|
||||
/* 08-02-2021 Ting Zhu Initial Version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
static VOID _gx_vertical_list_invisible_page_scroll(GX_VERTICAL_LIST *list, INT num_pages)
|
||||
{
|
||||
INT maximum_scroll_pages;
|
||||
|
||||
if (!(list -> gx_widget_style & GX_STYLE_WRAP))
|
||||
{
|
||||
|
||||
/* Wrap style is not applied, need to calculate scroll limit. */
|
||||
if (num_pages < 0)
|
||||
{
|
||||
|
||||
/* Calculate maximum up scroll num_pages. */
|
||||
maximum_scroll_pages = (list -> gx_vertical_list_total_rows - list -> gx_vertical_list_top_index - list -> gx_vertical_list_child_count);
|
||||
maximum_scroll_pages /= list -> gx_vertical_list_child_count;
|
||||
|
||||
/* Remain one page for normal scroll routine. */
|
||||
if (maximum_scroll_pages >= 1)
|
||||
{
|
||||
maximum_scroll_pages--;
|
||||
}
|
||||
|
||||
if (maximum_scroll_pages < (-num_pages))
|
||||
{
|
||||
num_pages = (-maximum_scroll_pages);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
/* Calculate maximum down scroll num_pages. */
|
||||
maximum_scroll_pages = list -> gx_vertical_list_top_index / list -> gx_vertical_list_child_count;
|
||||
|
||||
/* Remain one page for normal scroll routine. */
|
||||
if (maximum_scroll_pages >= 1)
|
||||
{
|
||||
maximum_scroll_pages--;
|
||||
}
|
||||
|
||||
if (maximum_scroll_pages < num_pages)
|
||||
{
|
||||
num_pages = maximum_scroll_pages;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (num_pages)
|
||||
{
|
||||
|
||||
/* Update top index according to scroll num_pages. */
|
||||
list -> gx_vertical_list_top_index -= num_pages * list -> gx_vertical_list_child_count;
|
||||
|
||||
if (list -> gx_widget_style & GX_STYLE_WRAP)
|
||||
{
|
||||
|
||||
/* Wrap page index. */
|
||||
if (num_pages < 0)
|
||||
{
|
||||
while (list -> gx_vertical_list_top_index >= list -> gx_vertical_list_total_rows)
|
||||
{
|
||||
list -> gx_vertical_list_top_index -= list -> gx_vertical_list_total_rows;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
while (list -> gx_vertical_list_top_index < 0)
|
||||
{
|
||||
list -> gx_vertical_list_top_index += list -> gx_vertical_list_total_rows;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**************************************************************************/
|
||||
/* */
|
||||
/* FUNCTION RELEASE */
|
||||
/* */
|
||||
/* _gx_vertical_list_scroll PORTABLE C */
|
||||
/* 6.1 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -73,6 +185,9 @@
|
||||
/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */
|
||||
/* 09-30-2020 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1 */
|
||||
/* 08-02-2021 Ting Zhu Modified comment(s), */
|
||||
/* fixed scroll overflow issue,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
VOID _gx_vertical_list_scroll(GX_VERTICAL_LIST *list, INT amount)
|
||||
@ -82,12 +197,50 @@ GX_WIDGET *last_child;
|
||||
GX_RECTANGLE block;
|
||||
GX_SCROLLBAR *scroll;
|
||||
GX_BOOL do_block_move = GX_TRUE;
|
||||
GX_BOOL reuse_child_widgets = GX_FALSE;
|
||||
INT page_size;
|
||||
INT num_pages;
|
||||
|
||||
if (!amount)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((list -> gx_vertical_list_callback != GX_NULL) &&
|
||||
(list -> gx_vertical_list_visible_rows < list -> gx_vertical_list_total_rows) &&
|
||||
((list -> gx_vertical_list_child_count < list -> gx_vertical_list_total_rows) || (list -> gx_widget_style & GX_STYLE_WRAP)))
|
||||
{
|
||||
reuse_child_widgets = GX_TRUE;
|
||||
|
||||
/* Calculate the page size. */
|
||||
page_size = (list -> gx_vertical_list_child_height * list -> gx_vertical_list_child_count);
|
||||
|
||||
if (!page_size)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
/* Calculate the number of pages to be scrolled. */
|
||||
if (amount < 0)
|
||||
{
|
||||
num_pages = (amount + page_size) / page_size;
|
||||
}
|
||||
else
|
||||
{
|
||||
num_pages = (amount - page_size) / page_size;
|
||||
}
|
||||
|
||||
if (num_pages)
|
||||
{
|
||||
|
||||
/* Calculate the remainning scroll amount. */
|
||||
amount -= (num_pages * page_size);
|
||||
|
||||
/* Scroll pages. */
|
||||
_gx_vertical_list_invisible_page_scroll(list, num_pages);
|
||||
}
|
||||
}
|
||||
|
||||
/* first shift my child widgets */
|
||||
child = list -> gx_widget_first_child;
|
||||
|
||||
@ -102,9 +255,7 @@ GX_BOOL do_block_move = GX_TRUE;
|
||||
|
||||
/* next check to see if we need to wrap any child widgets */
|
||||
|
||||
if ((list -> gx_vertical_list_callback != GX_NULL) &&
|
||||
(list -> gx_vertical_list_visible_rows < list -> gx_vertical_list_total_rows) &&
|
||||
((list -> gx_vertical_list_child_count < list -> gx_vertical_list_total_rows) || (list -> gx_widget_style & GX_STYLE_WRAP)))
|
||||
if (reuse_child_widgets)
|
||||
{
|
||||
/* this means we have fewer children than list rows, so we
|
||||
need to move and re-use the child widgets
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h ARCv2_EM/MetaWare */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2010 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARCv2_EM/MetaWare Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h ARC_HS/MetaWare */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARC_HS/MetaWare Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h ARM9/AC5 */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARM9/AC5 Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h ARM9/GNU */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARM9/GNU Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h ARM9/IAR */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARM9/IAR Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h C6xxx/TI */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX C6xxx/TI Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-A15/GNU */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A15/GNU Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-A5/AC5 */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5/AC5 Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-A5/GNU */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5/GNU Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-A5/IAR */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5/IAR Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-A5x/AC6 */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5x/AC6 Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-A7/AC5 */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A7/AC5 Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-A7/GNU */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A7/GNU Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-A7/IAR */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A7/IAR Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-A8/AC5 */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A8/AC5 Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-A8/GNU */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -39,8 +39,10 @@
|
||||
/* DATE NAME DESCRIPTION */
|
||||
/* */
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +72,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A8/GNU Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-A8/IAR */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -39,8 +39,10 @@
|
||||
/* DATE NAME DESCRIPTION */
|
||||
/* */
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +72,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A8/IAR Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-A9/AC5 */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A9/AC5 Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-A9/GNU */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A9/GNU Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-A9/IAR */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A9/IAR Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-M0/AC5 */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M0/AC5 Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-M0/GNU */
|
||||
/* 6.1.7 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -45,6 +45,10 @@
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 06-02-2021 Ting Zhu Modified comment(s), */
|
||||
/* resulting in version 6.1.7 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -74,19 +78,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -146,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.7 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M0/GNU Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-M0/IAR */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M0/IAR Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-M3/AC5 */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/AC5 Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-M3/GNU */
|
||||
/* 6.1.7 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -45,6 +45,10 @@
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 06-02-2021 Ting Zhu Modified comment(s), */
|
||||
/* resulting in version 6.1.7 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -74,19 +78,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -146,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.7 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/GNU Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-M3/IAR */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/IAR Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-M3/KEIL */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/KEIL Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-M4/AC5 */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/AC5 Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-M4/GNU */
|
||||
/* 6.1.7 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -45,6 +45,10 @@
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 06-02-2021 Ting Zhu Modified comment(s), */
|
||||
/* resulting in version 6.1.7 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -74,19 +78,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -146,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.7 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/GNU Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-M4/IAR */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -39,8 +39,10 @@
|
||||
/* DATE NAME DESCRIPTION */
|
||||
/* */
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +72,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/IAR Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-M4/KEIL */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,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.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/KEIL Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-M7/AC5 */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -39,8 +39,10 @@
|
||||
/* DATE NAME DESCRIPTION */
|
||||
/* */
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +72,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,7 +137,7 @@ typedef SHORT GX_VALUE;
|
||||
|
||||
#ifdef GX_SYSTEM_INIT
|
||||
CHAR _gx_version_id[] =
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M7/AC5 Version 6.1.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M7/AC5 Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-M7/GNU */
|
||||
/* 6.1.7 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -45,6 +45,10 @@
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 06-02-2021 Ting Zhu Modified comment(s), */
|
||||
/* resulting in version 6.1.7 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -74,19 +78,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -146,7 +143,7 @@ typedef SHORT GX_VALUE;
|
||||
|
||||
#ifdef GX_SYSTEM_INIT
|
||||
CHAR _gx_version_id[] =
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M7/GNU Version 6.1.7 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M7/GNU Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-M7/IAR */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,7 +139,7 @@ typedef SHORT GX_VALUE;
|
||||
|
||||
#ifdef GX_SYSTEM_INIT
|
||||
CHAR _gx_version_id[] =
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M7/IAR Version 6.1.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M7/IAR Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-R4/AC5 */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,7 +139,7 @@ typedef SHORT GX_VALUE;
|
||||
|
||||
#ifdef GX_SYSTEM_INIT
|
||||
CHAR _gx_version_id[] =
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R4/AC5 Version 6.1.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R4/AC5 Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-R4/AC6 */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,7 +139,7 @@ typedef SHORT GX_VALUE;
|
||||
|
||||
#ifdef GX_SYSTEM_INIT
|
||||
CHAR _gx_version_id[] =
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R4/AC6 Version 6.1.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R4/AC6 Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-R4/GNU */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,7 +139,7 @@ typedef SHORT GX_VALUE;
|
||||
|
||||
#ifdef GX_SYSTEM_INIT
|
||||
CHAR _gx_version_id[] =
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R4/GNU Version 6.1.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R4/GNU Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-R4/IAR */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -39,8 +39,10 @@
|
||||
/* DATE NAME DESCRIPTION */
|
||||
/* */
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +72,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,7 +137,7 @@ typedef SHORT GX_VALUE;
|
||||
|
||||
#ifdef GX_SYSTEM_INIT
|
||||
CHAR _gx_version_id[] =
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R4/IAR Version 6.1.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R4/IAR Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-R5/AC5 */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,7 +139,7 @@ typedef SHORT GX_VALUE;
|
||||
|
||||
#ifdef GX_SYSTEM_INIT
|
||||
CHAR _gx_version_id[] =
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R5/AC5 Version 6.1.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R5/AC5 Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-R5/GNU */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,7 +139,7 @@ typedef SHORT GX_VALUE;
|
||||
|
||||
#ifdef GX_SYSTEM_INIT
|
||||
CHAR _gx_version_id[] =
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R5/GNU Version 6.1.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R5/GNU Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Cortex-R5/IAR */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +74,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,7 +139,7 @@ typedef SHORT GX_VALUE;
|
||||
|
||||
#ifdef GX_SYSTEM_INIT
|
||||
CHAR _gx_version_id[] =
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R5/IAR Version 6.1.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R5/IAR Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Generic */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -41,6 +41,10 @@
|
||||
/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -68,19 +72,12 @@ typedef SHORT GX_VALUE;
|
||||
#ifndef GX_THREAD_STACK_SIZE
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -147,7 +144,7 @@ typedef SHORT GX_VALUE;
|
||||
|
||||
#ifdef GX_SYSTEM_INIT
|
||||
CHAR _gx_version_id[] =
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Version 6.1.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Linux/GNU */
|
||||
/* 6.1.6 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -39,8 +39,10 @@
|
||||
/* DATE NAME DESCRIPTION */
|
||||
/* */
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 04-02-2021 Kenneth Maxwell Modified comment(s), */
|
||||
/* resulting in version 6.1.6 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -70,19 +72,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 20
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -142,7 +137,7 @@ typedef SHORT GX_VALUE;
|
||||
|
||||
#ifdef GX_SYSTEM_INIT
|
||||
CHAR _gx_version_id[] =
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Linux/GNU Version 6.1.6 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Linux/GNU Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -1402,7 +1402,6 @@
|
||||
<ClInclude Include="..\..\..\..\common\inc\gx_system_rtos_bind.h" />
|
||||
<ClInclude Include="..\..\..\..\common\inc\gx_text_input_cursor.h" />
|
||||
<ClInclude Include="..\..\..\..\common\inc\gx_tree_view.h" />
|
||||
<ClInclude Include="..\..\..\..\common\inc\gx_user.h" />
|
||||
<ClInclude Include="..\..\..\..\common\inc\gx_utility.h" />
|
||||
<ClInclude Include="..\..\..\..\common\inc\gx_widget.h" />
|
||||
<ClInclude Include="..\..\..\..\common\inc\gx_window.h" />
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_port.h Win32/Visual */
|
||||
/* 6.1.7 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -49,6 +49,10 @@
|
||||
/* defined GX_DISABLE_THREADX_ */
|
||||
/* TIMER_SOURCE, */
|
||||
/* resulting in version 6.1.7 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -102,19 +106,12 @@ typedef SHORT GX_VALUE;
|
||||
#define GX_THREAD_STACK_SIZE 4096
|
||||
#endif
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 50
|
||||
#endif
|
||||
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
#define GX_INCLUDE_DEFAULT_COLORS
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -174,7 +171,7 @@ typedef SHORT GX_VALUE;
|
||||
|
||||
#ifdef GX_SYSTEM_INIT
|
||||
CHAR _gx_version_id[] =
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Win32/Visual Version 6.1.7 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Win32/Visual Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* gx_api.h Win32/Visual */
|
||||
/* 6.1 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* Kenneth Maxwell, Microsoft Corporation */
|
||||
@ -39,6 +39,10 @@
|
||||
/* DATE NAME DESCRIPTION */
|
||||
/* */
|
||||
/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */
|
||||
/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */
|
||||
/* GX_SYSTEM_TIMER_TICKS and */
|
||||
/* GX_TICKS_SECOND definitions,*/
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -73,9 +77,6 @@ typedef SHORT GX_VALUE;
|
||||
|
||||
/* Define the basic system parameters. */
|
||||
|
||||
#ifndef GX_TICKS_SECOND
|
||||
#define GX_TICKS_SECOND 50
|
||||
#endif
|
||||
|
||||
#define GX_CONST const
|
||||
|
||||
@ -83,8 +84,6 @@ typedef SHORT GX_VALUE;
|
||||
|
||||
#define GX_MAX_ACTIVE_TIMERS 32
|
||||
|
||||
#define GX_SYSTEM_TIMER_TICKS 2 /* 20 ms */
|
||||
|
||||
#define GX_MAX_VIEWS 32
|
||||
|
||||
#define GX_MAX_DISPLAY_HEIGHT 800
|
||||
@ -101,7 +100,7 @@ typedef SHORT GX_VALUE;
|
||||
|
||||
#ifdef GX_SYSTEM_INIT
|
||||
CHAR _gx_version_id[] =
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Win32/Standalone/Visual Version 6.1 *";
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Win32/Standalone/Visual Version 6.1.8 *";
|
||||
#else
|
||||
extern CHAR _gx_version_id[];
|
||||
#endif
|
||||
|
@ -3,8 +3,8 @@
|
||||
<project>
|
||||
<header>
|
||||
<project_version>55</project_version>
|
||||
<guix_version>60103</guix_version>
|
||||
<studio_version>6010603</studio_version>
|
||||
<guix_version>60108</guix_version>
|
||||
<studio_version>6010800</studio_version>
|
||||
<project_name>guix_calculator</project_name>
|
||||
<source_path>.\</source_path>
|
||||
<header_path>.\</header_path>
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.0.0.0 */
|
||||
/* Date (dd.mm.yyyy): 8. 5.2020 Time (hh:mm): 17:08 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.0.0.0 */
|
||||
/* Date (dd.mm.yyyy): 8. 5.2020 Time (hh:mm): 17:08 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.1.0 */
|
||||
/* Date (dd.mm.yyyy): 17.11.2020 Time (hh:mm): 11:04 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
@ -42,7 +42,7 @@ GX_STUDIO_DISPLAY_INFO guix_calculator_display_table[1] =
|
||||
&Main_Screen_root_window,
|
||||
Main_Screen_canvas_memory, /* canvas memory area */
|
||||
179200, /* canvas memory size in bytes */
|
||||
0 /* rotation angle */
|
||||
GX_SCREEN_ROTATION_NONE /* rotation angle */
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.0.0 */
|
||||
/* Date (dd.mm.yyyy): 9.11.2020 Time (hh:mm): 18:06 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -3,8 +3,8 @@
|
||||
<project>
|
||||
<header>
|
||||
<project_version>55</project_version>
|
||||
<guix_version>60103</guix_version>
|
||||
<studio_version>6010603</studio_version>
|
||||
<guix_version>60108</guix_version>
|
||||
<studio_version>6010800</studio_version>
|
||||
<project_name>demo_guix_car_infotainment</project_name>
|
||||
<source_path>.\</source_path>
|
||||
<header_path>.\</header_path>
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.0.2.0 */
|
||||
/* Date (dd.mm.yyyy): 9. 9.2020 Time (hh:mm): 10:44 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.0.2.0 */
|
||||
/* Date (dd.mm.yyyy): 9. 9.2020 Time (hh:mm): 10:44 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.1.0 */
|
||||
/* Date (dd.mm.yyyy): 17.11.2020 Time (hh:mm): 11:04 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
@ -48,7 +48,7 @@ GX_STUDIO_DISPLAY_INFO demo_guix_car_infotainment_display_table[1] =
|
||||
&main_display_root_window,
|
||||
main_display_canvas_memory, /* canvas memory area */
|
||||
1228800, /* canvas memory size in bytes */
|
||||
0 /* rotation angle */
|
||||
GX_SCREEN_ROTATION_NONE /* rotation angle */
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.0.0 */
|
||||
/* Date (dd.mm.yyyy): 9.11.2020 Time (hh:mm): 18:06 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -3,8 +3,8 @@
|
||||
<project>
|
||||
<header>
|
||||
<project_version>55</project_version>
|
||||
<guix_version>60103</guix_version>
|
||||
<studio_version>6010603</studio_version>
|
||||
<guix_version>60108</guix_version>
|
||||
<studio_version>6010800</studio_version>
|
||||
<project_name>demo_guix_home_automation</project_name>
|
||||
<source_path>.\</source_path>
|
||||
<header_path>.\</header_path>
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.0.0 */
|
||||
/* Date (dd.mm.yyyy): 19.10.2020 Time (hh:mm): 13:47 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.0.0 */
|
||||
/* Date (dd.mm.yyyy): 19.10.2020 Time (hh:mm): 13:47 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.0.1.14 */
|
||||
/* Date (dd.mm.yyyy): 18.12.2020 Time (hh:mm): 16:59 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
@ -61,7 +61,7 @@ GX_STUDIO_DISPLAY_INFO demo_guix_home_automation_display_table[1] =
|
||||
&display_1_root_window,
|
||||
display_1_canvas_memory, /* canvas memory area */
|
||||
1228800, /* canvas memory size in bytes */
|
||||
0 /* rotation angle */
|
||||
GX_SCREEN_ROTATION_NONE /* rotation angle */
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.0.0 */
|
||||
/* Date (dd.mm.yyyy): 9.11.2020 Time (hh:mm): 18:06 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -3,8 +3,8 @@
|
||||
<project>
|
||||
<header>
|
||||
<project_version>55</project_version>
|
||||
<guix_version>60103</guix_version>
|
||||
<studio_version>6010603</studio_version>
|
||||
<guix_version>60108</guix_version>
|
||||
<studio_version>6010800</studio_version>
|
||||
<project_name>demo_guix_industrial</project_name>
|
||||
<source_path>.\</source_path>
|
||||
<header_path>.\</header_path>
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.0.0.0 */
|
||||
/* Date (dd.mm.yyyy): 8. 5.2020 Time (hh:mm): 17:08 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.0.0.0 */
|
||||
/* Date (dd.mm.yyyy): 8. 5.2020 Time (hh:mm): 17:08 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.0.1.14 */
|
||||
/* Date (dd.mm.yyyy): 18.12.2020 Time (hh:mm): 16:59 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
@ -45,7 +45,7 @@ GX_STUDIO_DISPLAY_INFO demo_guix_industrial_display_table[1] =
|
||||
&main_display_root_window,
|
||||
main_display_canvas_memory, /* canvas memory area */
|
||||
1228800, /* canvas memory size in bytes */
|
||||
0 /* rotation angle */
|
||||
GX_SCREEN_ROTATION_NONE /* rotation angle */
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.0.0 */
|
||||
/* Date (dd.mm.yyyy): 9.11.2020 Time (hh:mm): 18:06 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -3,8 +3,8 @@
|
||||
<project>
|
||||
<header>
|
||||
<project_version>55</project_version>
|
||||
<guix_version>60103</guix_version>
|
||||
<studio_version>6010603</studio_version>
|
||||
<guix_version>60108</guix_version>
|
||||
<studio_version>6010800</studio_version>
|
||||
<project_name>guix_keyboard</project_name>
|
||||
<source_path>.\</source_path>
|
||||
<header_path>.\</header_path>
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.0.0.0 */
|
||||
/* Date (dd.mm.yyyy): 8. 5.2020 Time (hh:mm): 17:08 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.0.0.0 */
|
||||
/* Date (dd.mm.yyyy): 8. 5.2020 Time (hh:mm): 17:08 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.1.0 */
|
||||
/* Date (dd.mm.yyyy): 17.11.2020 Time (hh:mm): 11:04 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
@ -42,7 +42,7 @@ GX_STUDIO_DISPLAY_INFO guix_keyboard_display_table[1] =
|
||||
&display_1_root_window,
|
||||
display_1_canvas_memory, /* canvas memory area */
|
||||
544960, /* canvas memory size in bytes */
|
||||
0 /* rotation angle */
|
||||
GX_SCREEN_ROTATION_NONE /* rotation angle */
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.0.0 */
|
||||
/* Date (dd.mm.yyyy): 9.11.2020 Time (hh:mm): 18:07 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -3,8 +3,8 @@
|
||||
<project>
|
||||
<header>
|
||||
<project_version>55</project_version>
|
||||
<guix_version>60106</guix_version>
|
||||
<studio_version>6010603</studio_version>
|
||||
<guix_version>60108</guix_version>
|
||||
<studio_version>6010800</studio_version>
|
||||
<project_name>guix_medical</project_name>
|
||||
<source_path>.\</source_path>
|
||||
<header_path>.\</header_path>
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.6.2 */
|
||||
/* Date (dd.mm.yyyy): 8. 5.2021 Time (hh:mm): 15:31 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.6.2 */
|
||||
/* Date (dd.mm.yyyy): 8. 5.2021 Time (hh:mm): 15:31 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.6.2 */
|
||||
/* Date (dd.mm.yyyy): 8. 5.2021 Time (hh:mm): 15:31 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.6.2 */
|
||||
/* Date (dd.mm.yyyy): 8. 5.2021 Time (hh:mm): 15:31 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -3,8 +3,8 @@
|
||||
<project>
|
||||
<header>
|
||||
<project_version>55</project_version>
|
||||
<guix_version>60103</guix_version>
|
||||
<studio_version>6010603</studio_version>
|
||||
<guix_version>60108</guix_version>
|
||||
<studio_version>6010800</studio_version>
|
||||
<project_name>guix_shapes</project_name>
|
||||
<source_path>.\</source_path>
|
||||
<header_path>.\</header_path>
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.0.0.0 */
|
||||
/* Date (dd.mm.yyyy): 8. 5.2020 Time (hh:mm): 17:08 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.0.0.0 */
|
||||
/* Date (dd.mm.yyyy): 8. 5.2020 Time (hh:mm): 17:08 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.1.0 */
|
||||
/* Date (dd.mm.yyyy): 17.11.2020 Time (hh:mm): 11:05 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
@ -43,7 +43,7 @@ GX_STUDIO_DISPLAY_INFO guix_shapes_display_table[1] =
|
||||
&display_1_root_window,
|
||||
display_1_canvas_memory, /* canvas memory area */
|
||||
1228800, /* canvas memory size in bytes */
|
||||
0 /* rotation angle */
|
||||
GX_SCREEN_ROTATION_NONE /* rotation angle */
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.0.0 */
|
||||
/* Date (dd.mm.yyyy): 9.11.2020 Time (hh:mm): 18:07 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -3,8 +3,8 @@
|
||||
<project>
|
||||
<header>
|
||||
<project_version>55</project_version>
|
||||
<guix_version>60103</guix_version>
|
||||
<studio_version>6010603</studio_version>
|
||||
<guix_version>60108</guix_version>
|
||||
<studio_version>6010800</studio_version>
|
||||
<project_name>guix_simple</project_name>
|
||||
<source_path>.\</source_path>
|
||||
<header_path>.\</header_path>
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.0.0.0 */
|
||||
/* Date (dd.mm.yyyy): 8. 5.2020 Time (hh:mm): 17:08 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.0.0.0 */
|
||||
/* Date (dd.mm.yyyy): 8. 5.2020 Time (hh:mm): 17:08 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.1.0 */
|
||||
/* Date (dd.mm.yyyy): 17.11.2020 Time (hh:mm): 11:05 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
@ -42,7 +42,7 @@ GX_STUDIO_DISPLAY_INFO guix_simple_display_table[1] =
|
||||
&main_display_root_window,
|
||||
main_display_canvas_memory, /* canvas memory area */
|
||||
1228800, /* canvas memory size in bytes */
|
||||
0 /* rotation angle */
|
||||
GX_SCREEN_ROTATION_NONE /* rotation angle */
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.0.0 */
|
||||
/* Date (dd.mm.yyyy): 9.11.2020 Time (hh:mm): 18:07 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -3,8 +3,8 @@
|
||||
<project>
|
||||
<header>
|
||||
<project_version>55</project_version>
|
||||
<guix_version>60103</guix_version>
|
||||
<studio_version>6010603</studio_version>
|
||||
<guix_version>60108</guix_version>
|
||||
<studio_version>6010800</studio_version>
|
||||
<project_name>guix_smart_watch</project_name>
|
||||
<source_path>.\</source_path>
|
||||
<header_path>.\</header_path>
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.0.2.0 */
|
||||
/* Date (dd.mm.yyyy): 19. 8.2020 Time (hh:mm): 14:07 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* resource file(s). For more information please refer to the Azure RTOS GUIX */
|
||||
/* Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.0.2.0 */
|
||||
/* Date (dd.mm.yyyy): 19. 8.2020 Time (hh:mm): 14:07 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.1.0 */
|
||||
/* Date (dd.mm.yyyy): 17.11.2020 Time (hh:mm): 11:05 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
@ -70,7 +70,7 @@ GX_STUDIO_DISPLAY_INFO guix_smart_watch_display_table[1] =
|
||||
&Main_Screen_root_window,
|
||||
Main_Screen_canvas_memory, /* canvas memory area */
|
||||
1228800, /* canvas memory size in bytes */
|
||||
0 /* rotation angle */
|
||||
GX_SCREEN_ROTATION_NONE /* rotation angle */
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
/* specification file(s). For more information please refer to the Azure RTOS */
|
||||
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
||||
/* */
|
||||
/* GUIX Studio Revision 6.1.0.0 */
|
||||
/* Date (dd.mm.yyyy): 9.11.2020 Time (hh:mm): 18:07 */
|
||||
/* GUIX Studio Revision 6.1.8.0 */
|
||||
/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */
|
||||
/*******************************************************************************/
|
||||
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user