diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2019-04-28 19:38:01 +0300 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2019-04-28 19:38:01 +0300 |
| commit | 61f41a507e70fe0dfd30c46fd9ad04ce490df2c4 (patch) | |
| tree | af7a6c5b613280a7e42080e5cc7f3f1e8af8ec0d /Software/Embedded_SW | |
| parent | 3bed1b881037c06d160573583be4d85dc186d3a7 (diff) | |
| parent | 363603ac89278995f8c7730c6fc92a8e19ed1f92 (diff) | |
| download | Tango-61f41a507e70fe0dfd30c46fd9ad04ce490df2c4.tar.gz Tango-61f41a507e70fe0dfd30c46fd9ad04ce490df2c4.zip | |
merged
Diffstat (limited to 'Software/Embedded_SW')
| -rw-r--r-- | Software/Embedded_SW/.jxbrowser-data/Login Data | bin | 18432 -> 18432 bytes | |||
| -rw-r--r-- | Software/Embedded_SW/Embedded/Embedded.cfg | 11 | ||||
| -rw-r--r-- | Software/Embedded_SW/Embedded/Modules/Control/control.c | 2 | ||||
| -rw-r--r-- | Software/Embedded_SW/Embedded/Modules/Diagnostics/DiagnosticActions.c | 11 | ||||
| -rw-r--r-- | Software/Embedded_SW/Embedded/Software Release Notes.txt | 19 | ||||
| -rw-r--r-- | Software/Embedded_SW/Embedded/debug_w_pmr/configPkg/package/cfg/Embedded_pem4f.c | 23438 | ||||
| -rw-r--r-- | Software/Embedded_SW/Embedded/debug_w_pmr/configPkg/package/cfg/Embedded_pem4f.cfg | 268 | ||||
| -rw-r--r-- | Software/Embedded_SW/Embedded/debug_w_pmr/configPkg/package/cfg/Embedded_pem4f.h | 88 | ||||
| -rw-r--r-- | Software/Embedded_SW/Embedded/debug_w_pmr/makefile | 120 | ||||
| -rw-r--r-- | Software/Embedded_SW/Embedded/debug_w_pmr/sources.mk | 6 | ||||
| -rw-r--r-- | Software/Embedded_SW/Embedded/debug_w_pmr/subdir_rules.mk | 20 | ||||
| -rw-r--r-- | Software/Embedded_SW/Embedded/src/sysbios/sysbios.aem4f | bin | 1751774 -> 1751774 bytes |
12 files changed, 121 insertions, 23862 deletions
diff --git a/Software/Embedded_SW/.jxbrowser-data/Login Data b/Software/Embedded_SW/.jxbrowser-data/Login Data Binary files differindex 344eacb15..0a6e4afb8 100644 --- a/Software/Embedded_SW/.jxbrowser-data/Login Data +++ b/Software/Embedded_SW/.jxbrowser-data/Login Data diff --git a/Software/Embedded_SW/Embedded/Embedded.cfg b/Software/Embedded_SW/Embedded/Embedded.cfg index 7efea86f4..1127c5a30 100644 --- a/Software/Embedded_SW/Embedded/Embedded.cfg +++ b/Software/Embedded_SW/Embedded/Embedded.cfg @@ -212,7 +212,16 @@ var Text = xdc.useModule('xdc.runtime.Text'); Text.isLoaded = true; //Text.isLoaded = false; - +/* ================ Error configuration ================ */ +/* set errHook (defined in main.c) as the error + * hook function. Strings begining with '&' + * can be assigned to function pointers to + * reference unspecified external functions + */ +Error.raiseHook = "&errHook"; + +/* set user-defined code for E_generic errors */ +Error.E_generic.code = 28; /* ================ Types configuration ================ */ var Types = xdc.useModule('xdc.runtime.Types'); diff --git a/Software/Embedded_SW/Embedded/Modules/Control/control.c b/Software/Embedded_SW/Embedded/Modules/Control/control.c index b316fd73f..f1e19d851 100644 --- a/Software/Embedded_SW/Embedded/Modules/Control/control.c +++ b/Software/Embedded_SW/Embedded/Modules/Control/control.c @@ -158,7 +158,7 @@ uint32_t ControlActivityLed( uint32_t Parameter1) { static bool flag = false; static uint8_t counter; - const uint8_t Blink_Freq = 15;//odd number + const uint8_t Blink_Freq = 3;//odd number if (flag==true) { diff --git a/Software/Embedded_SW/Embedded/Modules/Diagnostics/DiagnosticActions.c b/Software/Embedded_SW/Embedded/Modules/Diagnostics/DiagnosticActions.c index da16df729..6a1821f4b 100644 --- a/Software/Embedded_SW/Embedded/Modules/Diagnostics/DiagnosticActions.c +++ b/Software/Embedded_SW/Embedded/Modules/Diagnostics/DiagnosticActions.c @@ -26,6 +26,7 @@ #include "drivers/I2C_Communication/ADC_MUX/ADC_MUX.h" #include "drivers/Valves/Valve.h" #include "drivers/Heater/Heater.h" +#include "modules/waste/waste.h" #include "modules/ids/ids_ex.h" @@ -243,18 +244,24 @@ uint32_t SetDigitalOutRequestRequestFunc(MessageContainer* requestContainer) /* case INTERFACE_IOS__GPO_LED4: DataUpdated = request->value; break;*/ - case INTERFACE_IOS__GPO_BLOWER_PWM: +/* case INTERFACE_IOS__GPO_BLOWER_PWM: if (request->value == true) Control_Dryer_Fan(START,75); else Control_Dryer_Fan(STOP, 0); - break; + break;*/ case INTERFACE_IOS__VALVE_WASTE_TANK: if (request->value == true) Valve_Set(VALVE_MIXCHIP_WASTECH,1); else Valve_Set(VALVE_MIXCHIP_WASTECH,0); break; + case INTERFACE_IOS__GPO_BLOWER_PWM: + if (request->value == true) + Control_Dryer_Fan(START,75);//use START or STOP, 0 - 100%(); + else + Control_Dryer_Fan(STOP,0);//use START or STOP, 0 - 100%(); + break; case INTERFACE_IOS__GPO_WASTECH_PUMP2://valve Valve_Set(VALVE_WASTE_TANK, request->value); break; diff --git a/Software/Embedded_SW/Embedded/Software Release Notes.txt b/Software/Embedded_SW/Embedded/Software Release Notes.txt index d62cee15e..5caeae761 100644 --- a/Software/Embedded_SW/Embedded/Software Release Notes.txt +++ b/Software/Embedded_SW/Embedded/Software Release Notes.txt @@ -1,3 +1,22 @@ +Embedded SW Release note - Version 1.3.9.1 - Itma Candidate 1 +============================================================= +Jobs: + Multiple segments, gradients, job is downloaded as a file, lubrication, automatic refill at the end of a job +Machine: + Power Idle + Power down sequence + Initialization sequence - reads midtank pressure. + Drivers support for hardware upgrades and variations + Buttons support + Waste handling +Modules: + Temperature - mitigate spikes, handle algorithm better. SW thermal cut off + Preparation for logs ditributor - not operativer yet. + File download on lower priority, blocked when a job is active. improved FPGA upgrade process + preparation for watchdog + communication: dispenser data request. some stubs removed. InterfaceIOs - only supported. additional event types, not supported yet (machine state, VOC). additional embedded parameters +---------------------------------------------------------------- + Embedded SW Release note - Version 1.3.8.2 File upload: prevent on job, reduce priority (watchdog) Report: packages filters introduced, please feel free to use them. diff --git a/Software/Embedded_SW/Embedded/debug_w_pmr/configPkg/package/cfg/Embedded_pem4f.c b/Software/Embedded_SW/Embedded/debug_w_pmr/configPkg/package/cfg/Embedded_pem4f.c deleted file mode 100644 index e99fe5dc5..000000000 --- a/Software/Embedded_SW/Embedded/debug_w_pmr/configPkg/package/cfg/Embedded_pem4f.c +++ /dev/null @@ -1,23438 +0,0 @@ -/* - * Do not modify this file; it is automatically - * generated and any modifications will be overwritten. - * - * @(#) xdc-B06 - */ - -#define __nested__ -#define __config__ - -#include <xdc/std.h> - -/* - * ======== GENERATED SECTIONS ======== - * - * MODULE INCLUDES - * - * <module-name> INTERNALS - * <module-name> INHERITS - * <module-name> VTABLE - * <module-name> PATCH TABLE - * <module-name> DECLARATIONS - * <module-name> OBJECT OFFSETS - * <module-name> TEMPLATES - * <module-name> INITIALIZERS - * <module-name> FUNCTION STUBS - * <module-name> PROXY BODY - * <module-name> OBJECT DESCRIPTOR - * <module-name> VIRTUAL FUNCTIONS - * <module-name> SYSTEM FUNCTIONS - * <module-name> PRAGMAS - * - * INITIALIZATION ENTRY POINT - * PROGRAM GLOBALS - * CLINK DIRECTIVES - */ - - -/* - * ======== MODULE INCLUDES ======== - */ - -#include <ti/catalog/arm/cortexm4/tiva/ce/Boot.h> -#include <ti/sysbios/BIOS.h> -#include <ti/sysbios/family/arm/lm4/Seconds.h> -#include <ti/sysbios/family/arm/lm4/Timer.h> -#include <ti/sysbios/family/arm/lm4/TimestampProvider.h> -#include <ti/sysbios/family/arm/m3/Hwi.h> -#include <ti/sysbios/family/arm/m3/IntrinsicsSupport.h> -#include <ti/sysbios/family/arm/m3/TaskSupport.h> -#include <ti/sysbios/gates/GateHwi.h> -#include <ti/sysbios/gates/GateMutex.h> -#include <ti/sysbios/hal/Hwi.h> -#include <ti/sysbios/hal/Seconds.h> -#include <ti/sysbios/heaps/HeapMem.h> -#include <ti/sysbios/io/DEV.h> -#include <ti/sysbios/io/GIO.h> -#include <ti/sysbios/knl/Clock.h> -#include <ti/sysbios/knl/Event.h> -#include <ti/sysbios/knl/Idle.h> -#include <ti/sysbios/knl/Intrinsics.h> -#include <ti/sysbios/knl/Mailbox.h> -#include <ti/sysbios/knl/Queue.h> -#include <ti/sysbios/knl/Semaphore.h> -#include <ti/sysbios/knl/Swi.h> -#include <ti/sysbios/knl/Task.h> -#include <ti/sysbios/xdcruntime/SemThreadSupport.h> -#include <xdc/runtime/Assert.h> -#include <xdc/runtime/Core.h> -#include <xdc/runtime/Defaults.h> -#include <xdc/runtime/Diags.h> -#include <xdc/runtime/Error.h> -#include <xdc/runtime/Gate.h> -#include <xdc/runtime/HeapStd.h> -#include <xdc/runtime/Log.h> -#include <xdc/runtime/Main.h> -#include <xdc/runtime/Memory.h> -#include <xdc/runtime/Registry.h> -#include <xdc/runtime/Startup.h> -#include <xdc/runtime/SysMin.h> -#include <xdc/runtime/System.h> -#include <xdc/runtime/Text.h> -#include <xdc/runtime/Timestamp.h> -#include <xdc/runtime/knl/SemThread.h> -#include <xdc/runtime/knl/Sync.h> -#include <xdc/runtime/knl/SyncGeneric.h> -#include <xdc/runtime/knl/SyncNull.h> -#include <xdc/runtime/knl/SyncSemThread.h> - -/* - * ======== ti.catalog.arm.cortexm4.tiva.ce.Boot INTERNALS ======== - */ - - -/* - * ======== ti.sysbios.BIOS INTERNALS ======== - */ - - -/* - * ======== ti.sysbios.BIOS_RtsGateProxy INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_BIOS_RtsGateProxy_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_BIOS_RtsGateProxy_Module__; - -/* Module__root__V */ -extern ti_sysbios_BIOS_RtsGateProxy_Module__ ti_sysbios_BIOS_RtsGateProxy_Module__root__V; - -/* @@@ ti_sysbios_knl_Queue_Object__ */ -typedef struct ti_sysbios_knl_Queue_Object__ { - ti_sysbios_knl_Queue_Elem elem; -} ti_sysbios_knl_Queue_Object__; - -/* @@@ ti_sysbios_knl_Queue_Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_knl_Queue_Object__ obj; -} ti_sysbios_knl_Queue_Object2__; - -/* @@@ ti_sysbios_knl_Semaphore_Object__ */ -typedef struct ti_sysbios_knl_Semaphore_Object__ { - ti_sysbios_knl_Event_Handle event; - xdc_UInt eventId; - ti_sysbios_knl_Semaphore_Mode mode; - volatile xdc_UInt16 count; - ti_sysbios_knl_Queue_Object__ Object_field_pendQ; -} ti_sysbios_knl_Semaphore_Object__; - -/* @@@ ti_sysbios_knl_Semaphore_Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_knl_Semaphore_Object__ obj; -} ti_sysbios_knl_Semaphore_Object2__; - -/* Object__ */ -typedef struct ti_sysbios_gates_GateMutex_Object__ { - const ti_sysbios_gates_GateMutex_Fxns__ *__fxns; - ti_sysbios_knl_Task_Handle owner; - ti_sysbios_knl_Semaphore_Object__ Object_field_sem; -} ti_sysbios_gates_GateMutex_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_gates_GateMutex_Object__ obj; -} ti_sysbios_gates_GateMutex_Object2__; - -/* Object */ -typedef ti_sysbios_gates_GateMutex_Object__ ti_sysbios_BIOS_RtsGateProxy_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_BIOS_RtsGateProxy_Object__ obj; -} ti_sysbios_BIOS_RtsGateProxy_Object2__; - -/* __ParamsPtr */ -#ifdef ti_sysbios_BIOS_RtsGateProxy___VERS - #define ti_sysbios_BIOS_RtsGateProxy___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_BIOS_RtsGateProxy___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.family.arm.lm4.Seconds INTERNALS ======== - */ - - -/* - * ======== ti.sysbios.family.arm.lm4.Timer INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_family_arm_lm4_Timer_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_family_arm_lm4_Timer_Module__; - -/* Module__root__V */ -extern ti_sysbios_family_arm_lm4_Timer_Module__ ti_sysbios_family_arm_lm4_Timer_Module__root__V; - -/* Object__ */ -typedef struct ti_sysbios_family_arm_lm4_Timer_Object__ { - const ti_sysbios_family_arm_lm4_Timer_Fxns__ *__fxns; - xdc_Bool staticInst; - xdc_Int id; - ti_sysbios_family_arm_lm4_Timer_RunMode runMode; - ti_sysbios_family_arm_lm4_Timer_StartMode startMode; - xdc_UInt period; - ti_sysbios_family_arm_lm4_Timer_PeriodType periodType; - xdc_UInt intNum; - xdc_UArg arg; - ti_sysbios_family_arm_m3_Hwi_FuncPtr tickFxn; - xdc_runtime_Types_FreqHz extFreq; - ti_sysbios_family_arm_m3_Hwi_Handle hwi; - xdc_UInt prevThreshold; - xdc_UInt rollovers; - xdc_UInt savedCurrCount; - xdc_Bool altclk; -} ti_sysbios_family_arm_lm4_Timer_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_family_arm_lm4_Timer_Object__ obj; -} ti_sysbios_family_arm_lm4_Timer_Object2__; - -/* __ParamsPtr */ -#ifdef ti_sysbios_family_arm_lm4_Timer___VERS - #define ti_sysbios_family_arm_lm4_Timer___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_family_arm_lm4_Timer___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.family.arm.lm4.TimestampProvider INTERNALS ======== - */ - - -/* - * ======== ti.sysbios.family.arm.m3.Hwi INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_family_arm_m3_Hwi_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_family_arm_m3_Hwi_Module__; - -/* Module__root__V */ -extern ti_sysbios_family_arm_m3_Hwi_Module__ ti_sysbios_family_arm_m3_Hwi_Module__root__V; - -/* Object__ */ -typedef struct ti_sysbios_family_arm_m3_Hwi_Object__ { - const ti_sysbios_family_arm_m3_Hwi_Fxns__ *__fxns; - xdc_UArg arg; - ti_sysbios_family_arm_m3_Hwi_FuncPtr fxn; - ti_sysbios_family_arm_m3_Hwi_Irp irp; - xdc_UInt8 priority; - xdc_Int16 intNum; - __TA_ti_sysbios_family_arm_m3_Hwi_Instance_State__hookEnv hookEnv; -} ti_sysbios_family_arm_m3_Hwi_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_family_arm_m3_Hwi_Object__ obj; -} ti_sysbios_family_arm_m3_Hwi_Object2__; - -/* __ParamsPtr */ -#ifdef ti_sysbios_family_arm_m3_Hwi___VERS - #define ti_sysbios_family_arm_m3_Hwi___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_family_arm_m3_Hwi___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.family.arm.m3.IntrinsicsSupport INTERNALS ======== - */ - - -/* - * ======== ti.sysbios.family.arm.m3.TaskSupport INTERNALS ======== - */ - - -/* - * ======== ti.sysbios.gates.GateHwi INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_gates_GateHwi_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_gates_GateHwi_Module__; - -/* Module__root__V */ -extern ti_sysbios_gates_GateHwi_Module__ ti_sysbios_gates_GateHwi_Module__root__V; - -/* Object__ */ -typedef struct ti_sysbios_gates_GateHwi_Object__ { - const ti_sysbios_gates_GateHwi_Fxns__ *__fxns; -} ti_sysbios_gates_GateHwi_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_gates_GateHwi_Object__ obj; -} ti_sysbios_gates_GateHwi_Object2__; - -/* __ParamsPtr */ -#ifdef ti_sysbios_gates_GateHwi___VERS - #define ti_sysbios_gates_GateHwi___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_gates_GateHwi___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.gates.GateMutex INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_gates_GateMutex_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_gates_GateMutex_Module__; - -/* Module__root__V */ -extern ti_sysbios_gates_GateMutex_Module__ ti_sysbios_gates_GateMutex_Module__root__V; - -/* <-- ti_sysbios_gates_GateMutex_Object */ - -/* __ParamsPtr */ -#ifdef ti_sysbios_gates_GateMutex___VERS - #define ti_sysbios_gates_GateMutex___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_gates_GateMutex___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.hal.Hwi INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_hal_Hwi_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_hal_Hwi_Module__; - -/* Module__root__V */ -extern ti_sysbios_hal_Hwi_Module__ ti_sysbios_hal_Hwi_Module__root__V; - -/* Object__ */ -typedef struct ti_sysbios_hal_Hwi_Object__ { - const ti_sysbios_hal_Hwi_Fxns__ *__fxns; - ti_sysbios_hal_Hwi_HwiProxy_Handle pi; -} ti_sysbios_hal_Hwi_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_hal_Hwi_Object__ obj; -} ti_sysbios_hal_Hwi_Object2__; - -/* __ParamsPtr */ -#ifdef ti_sysbios_hal_Hwi___VERS - #define ti_sysbios_hal_Hwi___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_hal_Hwi___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.hal.Hwi_HwiProxy INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_hal_Hwi_HwiProxy_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_hal_Hwi_HwiProxy_Module__; - -/* Module__root__V */ -extern ti_sysbios_hal_Hwi_HwiProxy_Module__ ti_sysbios_hal_Hwi_HwiProxy_Module__root__V; - -/* <-- ti_sysbios_family_arm_m3_Hwi_Object */ - -/* Object */ -typedef ti_sysbios_family_arm_m3_Hwi_Object__ ti_sysbios_hal_Hwi_HwiProxy_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_hal_Hwi_HwiProxy_Object__ obj; -} ti_sysbios_hal_Hwi_HwiProxy_Object2__; - -/* __ParamsPtr */ -#ifdef ti_sysbios_hal_Hwi_HwiProxy___VERS - #define ti_sysbios_hal_Hwi_HwiProxy___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_hal_Hwi_HwiProxy___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.hal.Seconds INTERNALS ======== - */ - - -/* - * ======== ti.sysbios.hal.Seconds_SecondsProxy INTERNALS ======== - */ - - -/* - * ======== ti.sysbios.heaps.HeapMem INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_heaps_HeapMem_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_heaps_HeapMem_Module__; - -/* Module__root__V */ -extern ti_sysbios_heaps_HeapMem_Module__ ti_sysbios_heaps_HeapMem_Module__root__V; - -/* Object__ */ -typedef struct ti_sysbios_heaps_HeapMem_Object__ { - const ti_sysbios_heaps_HeapMem_Fxns__ *__fxns; - xdc_runtime_Memory_Size align; - __TA_ti_sysbios_heaps_HeapMem_Instance_State__buf buf; - ti_sysbios_heaps_HeapMem_Header head; - xdc_SizeT minBlockAlign; -} ti_sysbios_heaps_HeapMem_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_heaps_HeapMem_Object__ obj; -} ti_sysbios_heaps_HeapMem_Object2__; - -/* __ParamsPtr */ -#ifdef ti_sysbios_heaps_HeapMem___VERS - #define ti_sysbios_heaps_HeapMem___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_heaps_HeapMem___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.heaps.HeapMem_Module_GateProxy INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__; - -/* Module__root__V */ -extern ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__ ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__root__V; - -/* <-- ti_sysbios_gates_GateMutex_Object */ - -/* Object */ -typedef ti_sysbios_gates_GateMutex_Object__ ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__ obj; -} ti_sysbios_heaps_HeapMem_Module_GateProxy_Object2__; - -/* __ParamsPtr */ -#ifdef ti_sysbios_heaps_HeapMem_Module_GateProxy___VERS - #define ti_sysbios_heaps_HeapMem_Module_GateProxy___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_heaps_HeapMem_Module_GateProxy___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.io.DEV INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_io_DEV_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_io_DEV_Module__; - -/* Module__root__V */ -extern ti_sysbios_io_DEV_Module__ ti_sysbios_io_DEV_Module__root__V; - -/* Object__ */ -typedef struct ti_sysbios_io_DEV_Object__ { - xdc_String name; - ti_sysbios_io_DEV_Fxns *fxns; - ti_sysbios_io_DEV_InitFxn initFxn; - xdc_Int devid; - ti_sysbios_io_DEV_DeviceParams *deviceParams; - xdc_Ptr devp; -} ti_sysbios_io_DEV_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_io_DEV_Object__ obj; -} ti_sysbios_io_DEV_Object2__; - -/* __ParamsPtr */ -#ifdef ti_sysbios_io_DEV___VERS - #define ti_sysbios_io_DEV___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_io_DEV___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.io.GIO INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_io_GIO_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_io_GIO_Module__; - -/* Module__root__V */ -extern ti_sysbios_io_GIO_Module__ ti_sysbios_io_GIO_Module__root__V; - -/* <-- ti_sysbios_knl_Queue_Object */ - -/* Object__ */ -typedef struct ti_sysbios_io_GIO_Object__ { - xdc_String name; - xdc_UInt mode; - xdc_UInt model; - xdc_UInt timeout; - xdc_runtime_IHeap_Handle packetHeap; - xdc_runtime_knl_ISync_Handle sync; - xdc_Bool userSync; - xdc_Bool userPackets; - xdc_Ptr packets; - xdc_Int numPackets; - xdc_Int freeCount; - xdc_Int doneCount; - xdc_Int submitCount; - xdc_Ptr fxns; - xdc_Ptr mdChan; - ti_sysbios_knl_Queue_Object__ Object_field_doneList; - ti_sysbios_knl_Queue_Object__ Object_field_freeList; -} ti_sysbios_io_GIO_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_io_GIO_Object__ obj; -} ti_sysbios_io_GIO_Object2__; - -/* __ParamsPtr */ -#ifdef ti_sysbios_io_GIO___VERS - #define ti_sysbios_io_GIO___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_io_GIO___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.knl.Clock INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_knl_Clock_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_knl_Clock_Module__; - -/* Module__root__V */ -extern ti_sysbios_knl_Clock_Module__ ti_sysbios_knl_Clock_Module__root__V; - -/* <-- ti_sysbios_knl_Queue_Object */ - -/* Object__ */ -typedef struct ti_sysbios_knl_Clock_Object__ { - ti_sysbios_knl_Queue_Elem elem; - xdc_UInt32 timeout; - xdc_UInt32 currTimeout; - xdc_UInt32 period; - volatile xdc_Bool active; - ti_sysbios_knl_Clock_FuncPtr fxn; - xdc_UArg arg; -} ti_sysbios_knl_Clock_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_knl_Clock_Object__ obj; -} ti_sysbios_knl_Clock_Object2__; - -/* __ParamsPtr */ -#ifdef ti_sysbios_knl_Clock___VERS - #define ti_sysbios_knl_Clock___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_knl_Clock___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.knl.Clock_TimerProxy INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_knl_Clock_TimerProxy_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_knl_Clock_TimerProxy_Module__; - -/* Module__root__V */ -extern ti_sysbios_knl_Clock_TimerProxy_Module__ ti_sysbios_knl_Clock_TimerProxy_Module__root__V; - -/* <-- ti_sysbios_family_arm_lm4_Timer_Object */ - -/* Object */ -typedef ti_sysbios_family_arm_lm4_Timer_Object__ ti_sysbios_knl_Clock_TimerProxy_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_knl_Clock_TimerProxy_Object__ obj; -} ti_sysbios_knl_Clock_TimerProxy_Object2__; - -/* __ParamsPtr */ -#ifdef ti_sysbios_knl_Clock_TimerProxy___VERS - #define ti_sysbios_knl_Clock_TimerProxy___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_knl_Clock_TimerProxy___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.knl.Event INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_knl_Event_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_knl_Event_Module__; - -/* Module__root__V */ -extern ti_sysbios_knl_Event_Module__ ti_sysbios_knl_Event_Module__root__V; - -/* <-- ti_sysbios_knl_Queue_Object */ - -/* Object__ */ -typedef struct ti_sysbios_knl_Event_Object__ { - volatile xdc_UInt postedEvents; - ti_sysbios_knl_Queue_Object__ Object_field_pendQ; -} ti_sysbios_knl_Event_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_knl_Event_Object__ obj; -} ti_sysbios_knl_Event_Object2__; - -/* __ParamsPtr */ -#ifdef ti_sysbios_knl_Event___VERS - #define ti_sysbios_knl_Event___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_knl_Event___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.knl.Idle INTERNALS ======== - */ - - -/* - * ======== ti.sysbios.knl.Intrinsics INTERNALS ======== - */ - - -/* - * ======== ti.sysbios.knl.Intrinsics_SupportProxy INTERNALS ======== - */ - - -/* - * ======== ti.sysbios.knl.Mailbox INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_knl_Mailbox_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_knl_Mailbox_Module__; - -/* Module__root__V */ -extern ti_sysbios_knl_Mailbox_Module__ ti_sysbios_knl_Mailbox_Module__root__V; - -/* <-- ti_sysbios_knl_Queue_Object */ - -/* <-- ti_sysbios_knl_Semaphore_Object */ - -/* Object__ */ -typedef struct ti_sysbios_knl_Mailbox_Object__ { - xdc_runtime_IHeap_Handle heap; - xdc_SizeT msgSize; - xdc_UInt numMsgs; - xdc_Ptr buf; - xdc_UInt numFreeMsgs; - __TA_ti_sysbios_knl_Mailbox_Instance_State__allocBuf allocBuf; - ti_sysbios_knl_Queue_Object__ Object_field_dataQue; - ti_sysbios_knl_Queue_Object__ Object_field_freeQue; - ti_sysbios_knl_Semaphore_Object__ Object_field_dataSem; - ti_sysbios_knl_Semaphore_Object__ Object_field_freeSem; -} ti_sysbios_knl_Mailbox_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_knl_Mailbox_Object__ obj; -} ti_sysbios_knl_Mailbox_Object2__; - -/* __ParamsPtr */ -#ifdef ti_sysbios_knl_Mailbox___VERS - #define ti_sysbios_knl_Mailbox___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_knl_Mailbox___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.knl.Queue INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_knl_Queue_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_knl_Queue_Module__; - -/* Module__root__V */ -extern ti_sysbios_knl_Queue_Module__ ti_sysbios_knl_Queue_Module__root__V; - -/* <-- ti_sysbios_knl_Queue_Object */ - -/* __ParamsPtr */ -#ifdef ti_sysbios_knl_Queue___VERS - #define ti_sysbios_knl_Queue___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_knl_Queue___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.knl.Semaphore INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_knl_Semaphore_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_knl_Semaphore_Module__; - -/* Module__root__V */ -extern ti_sysbios_knl_Semaphore_Module__ ti_sysbios_knl_Semaphore_Module__root__V; - -/* <-- ti_sysbios_knl_Semaphore_Object */ - -/* __ParamsPtr */ -#ifdef ti_sysbios_knl_Semaphore___VERS - #define ti_sysbios_knl_Semaphore___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_knl_Semaphore___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.knl.Swi INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_knl_Swi_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_knl_Swi_Module__; - -/* Module__root__V */ -extern ti_sysbios_knl_Swi_Module__ ti_sysbios_knl_Swi_Module__root__V; - -/* Object__ */ -typedef struct ti_sysbios_knl_Swi_Object__ { - ti_sysbios_knl_Queue_Elem qElem; - ti_sysbios_knl_Swi_FuncPtr fxn; - xdc_UArg arg0; - xdc_UArg arg1; - xdc_UInt priority; - xdc_UInt mask; - xdc_Bool posted; - xdc_UInt initTrigger; - xdc_UInt trigger; - ti_sysbios_knl_Queue_Handle readyQ; - __TA_ti_sysbios_knl_Swi_Instance_State__hookEnv hookEnv; -} ti_sysbios_knl_Swi_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_knl_Swi_Object__ obj; -} ti_sysbios_knl_Swi_Object2__; - -/* __ParamsPtr */ -#ifdef ti_sysbios_knl_Swi___VERS - #define ti_sysbios_knl_Swi___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_knl_Swi___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.knl.Task INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_knl_Task_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_knl_Task_Module__; - -/* Module__root__V */ -extern ti_sysbios_knl_Task_Module__ ti_sysbios_knl_Task_Module__root__V; - -/* <-- ti_sysbios_knl_Queue_Object */ - -/* Object__ */ -typedef struct ti_sysbios_knl_Task_Object__ { - ti_sysbios_knl_Queue_Elem qElem; - volatile xdc_Int priority; - xdc_UInt mask; - xdc_Ptr context; - ti_sysbios_knl_Task_Mode mode; - ti_sysbios_knl_Task_PendElem *pendElem; - xdc_SizeT stackSize; - __TA_ti_sysbios_knl_Task_Instance_State__stack stack; - xdc_runtime_IHeap_Handle stackHeap; - ti_sysbios_knl_Task_FuncPtr fxn; - xdc_UArg arg0; - xdc_UArg arg1; - xdc_Ptr env; - __TA_ti_sysbios_knl_Task_Instance_State__hookEnv hookEnv; - xdc_Bool vitalTaskFlag; - ti_sysbios_knl_Queue_Handle readyQ; - xdc_UInt curCoreId; - xdc_UInt affinity; -} ti_sysbios_knl_Task_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_knl_Task_Object__ obj; -} ti_sysbios_knl_Task_Object2__; - -/* __ParamsPtr */ -#ifdef ti_sysbios_knl_Task___VERS - #define ti_sysbios_knl_Task___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_knl_Task___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== ti.sysbios.knl.Task_SupportProxy INTERNALS ======== - */ - - -/* - * ======== ti.sysbios.xdcruntime.SemThreadSupport INTERNALS ======== - */ - -/* Module__ */ -typedef struct ti_sysbios_xdcruntime_SemThreadSupport_Module__ { - xdc_runtime_Types_Link link; -} ti_sysbios_xdcruntime_SemThreadSupport_Module__; - -/* Module__root__V */ -extern ti_sysbios_xdcruntime_SemThreadSupport_Module__ ti_sysbios_xdcruntime_SemThreadSupport_Module__root__V; - -/* <-- ti_sysbios_knl_Semaphore_Object */ - -/* Object__ */ -typedef struct ti_sysbios_xdcruntime_SemThreadSupport_Object__ { - const ti_sysbios_xdcruntime_SemThreadSupport_Fxns__ *__fxns; - ti_sysbios_knl_Semaphore_Object__ Object_field_sem; -} ti_sysbios_xdcruntime_SemThreadSupport_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - ti_sysbios_xdcruntime_SemThreadSupport_Object__ obj; -} ti_sysbios_xdcruntime_SemThreadSupport_Object2__; - -/* __ParamsPtr */ -#ifdef ti_sysbios_xdcruntime_SemThreadSupport___VERS - #define ti_sysbios_xdcruntime_SemThreadSupport___ParamsPtr xdc_UChar* -#else - #define ti_sysbios_xdcruntime_SemThreadSupport___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== xdc.runtime.Assert INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.Core INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.Defaults INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.Diags INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.Error INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.Gate INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.HeapStd INTERNALS ======== - */ - -/* Module__ */ -typedef struct xdc_runtime_HeapStd_Module__ { - xdc_runtime_Types_Link link; -} xdc_runtime_HeapStd_Module__; - -/* Module__root__V */ -extern xdc_runtime_HeapStd_Module__ xdc_runtime_HeapStd_Module__root__V; - -/* Object__ */ -typedef struct xdc_runtime_HeapStd_Object__ { - const xdc_runtime_HeapStd_Fxns__ *__fxns; - xdc_runtime_Memory_Size remainSize; - xdc_runtime_Memory_Size startSize; -} xdc_runtime_HeapStd_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - xdc_runtime_HeapStd_Object__ obj; -} xdc_runtime_HeapStd_Object2__; - -/* __ParamsPtr */ -#ifdef xdc_runtime_HeapStd___VERS - #define xdc_runtime_HeapStd___ParamsPtr xdc_UChar* -#else - #define xdc_runtime_HeapStd___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== xdc.runtime.Log INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.Main INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.Main_Module_GateProxy INTERNALS ======== - */ - -/* Module__ */ -typedef struct xdc_runtime_Main_Module_GateProxy_Module__ { - xdc_runtime_Types_Link link; -} xdc_runtime_Main_Module_GateProxy_Module__; - -/* Module__root__V */ -extern xdc_runtime_Main_Module_GateProxy_Module__ xdc_runtime_Main_Module_GateProxy_Module__root__V; - -/* <-- ti_sysbios_gates_GateHwi_Object */ - -/* Object */ -typedef ti_sysbios_gates_GateHwi_Object__ xdc_runtime_Main_Module_GateProxy_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - xdc_runtime_Main_Module_GateProxy_Object__ obj; -} xdc_runtime_Main_Module_GateProxy_Object2__; - -/* __ParamsPtr */ -#ifdef xdc_runtime_Main_Module_GateProxy___VERS - #define xdc_runtime_Main_Module_GateProxy___ParamsPtr xdc_UChar* -#else - #define xdc_runtime_Main_Module_GateProxy___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== xdc.runtime.Memory INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.Memory_HeapProxy INTERNALS ======== - */ - -/* Module__ */ -typedef struct xdc_runtime_Memory_HeapProxy_Module__ { - xdc_runtime_Types_Link link; -} xdc_runtime_Memory_HeapProxy_Module__; - -/* Module__root__V */ -extern xdc_runtime_Memory_HeapProxy_Module__ xdc_runtime_Memory_HeapProxy_Module__root__V; - -/* <-- ti_sysbios_heaps_HeapMem_Object */ - -/* Object */ -typedef ti_sysbios_heaps_HeapMem_Object__ xdc_runtime_Memory_HeapProxy_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - xdc_runtime_Memory_HeapProxy_Object__ obj; -} xdc_runtime_Memory_HeapProxy_Object2__; - -/* __ParamsPtr */ -#ifdef xdc_runtime_Memory_HeapProxy___VERS - #define xdc_runtime_Memory_HeapProxy___ParamsPtr xdc_UChar* -#else - #define xdc_runtime_Memory_HeapProxy___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== xdc.runtime.Registry INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.Startup INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.SysMin INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.System INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.System_Module_GateProxy INTERNALS ======== - */ - -/* Module__ */ -typedef struct xdc_runtime_System_Module_GateProxy_Module__ { - xdc_runtime_Types_Link link; -} xdc_runtime_System_Module_GateProxy_Module__; - -/* Module__root__V */ -extern xdc_runtime_System_Module_GateProxy_Module__ xdc_runtime_System_Module_GateProxy_Module__root__V; - -/* <-- ti_sysbios_gates_GateHwi_Object */ - -/* Object */ -typedef ti_sysbios_gates_GateHwi_Object__ xdc_runtime_System_Module_GateProxy_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - xdc_runtime_System_Module_GateProxy_Object__ obj; -} xdc_runtime_System_Module_GateProxy_Object2__; - -/* __ParamsPtr */ -#ifdef xdc_runtime_System_Module_GateProxy___VERS - #define xdc_runtime_System_Module_GateProxy___ParamsPtr xdc_UChar* -#else - #define xdc_runtime_System_Module_GateProxy___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== xdc.runtime.System_SupportProxy INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.Text INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.Timestamp INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.Timestamp_SupportProxy INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.knl.SemThread INTERNALS ======== - */ - -/* Module__ */ -typedef struct xdc_runtime_knl_SemThread_Module__ { - xdc_runtime_Types_Link link; -} xdc_runtime_knl_SemThread_Module__; - -/* Module__root__V */ -extern xdc_runtime_knl_SemThread_Module__ xdc_runtime_knl_SemThread_Module__root__V; - -/* Object__ */ -typedef struct xdc_runtime_knl_SemThread_Object__ { - const xdc_runtime_knl_SemThread_Fxns__ *__fxns; - xdc_runtime_knl_SemThread_Proxy_Handle proxyHandle; -} xdc_runtime_knl_SemThread_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - xdc_runtime_knl_SemThread_Object__ obj; -} xdc_runtime_knl_SemThread_Object2__; - -/* __ParamsPtr */ -#ifdef xdc_runtime_knl_SemThread___VERS - #define xdc_runtime_knl_SemThread___ParamsPtr xdc_UChar* -#else - #define xdc_runtime_knl_SemThread___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== xdc.runtime.knl.SemThread_Proxy INTERNALS ======== - */ - -/* Module__ */ -typedef struct xdc_runtime_knl_SemThread_Proxy_Module__ { - xdc_runtime_Types_Link link; -} xdc_runtime_knl_SemThread_Proxy_Module__; - -/* Module__root__V */ -extern xdc_runtime_knl_SemThread_Proxy_Module__ xdc_runtime_knl_SemThread_Proxy_Module__root__V; - -/* <-- ti_sysbios_xdcruntime_SemThreadSupport_Object */ - -/* Object */ -typedef ti_sysbios_xdcruntime_SemThreadSupport_Object__ xdc_runtime_knl_SemThread_Proxy_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - xdc_runtime_knl_SemThread_Proxy_Object__ obj; -} xdc_runtime_knl_SemThread_Proxy_Object2__; - -/* __ParamsPtr */ -#ifdef xdc_runtime_knl_SemThread_Proxy___VERS - #define xdc_runtime_knl_SemThread_Proxy___ParamsPtr xdc_UChar* -#else - #define xdc_runtime_knl_SemThread_Proxy___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== xdc.runtime.knl.Sync INTERNALS ======== - */ - - -/* - * ======== xdc.runtime.knl.SyncGeneric INTERNALS ======== - */ - -/* Module__ */ -typedef struct xdc_runtime_knl_SyncGeneric_Module__ { - xdc_runtime_Types_Link link; -} xdc_runtime_knl_SyncGeneric_Module__; - -/* Module__root__V */ -extern xdc_runtime_knl_SyncGeneric_Module__ xdc_runtime_knl_SyncGeneric_Module__root__V; - -/* Object__ */ -typedef struct xdc_runtime_knl_SyncGeneric_Object__ { - const xdc_runtime_knl_SyncGeneric_Fxns__ *__fxns; - xdc_runtime_knl_SyncGeneric_SignalFunc userSignal; - xdc_UArg signalArg; - xdc_runtime_knl_SyncGeneric_WaitFunc userWait; - xdc_UArg waitArg; - xdc_runtime_knl_SyncGeneric_QueryFunc userQuery; -} xdc_runtime_knl_SyncGeneric_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - xdc_runtime_knl_SyncGeneric_Object__ obj; -} xdc_runtime_knl_SyncGeneric_Object2__; - -/* __ParamsPtr */ -#ifdef xdc_runtime_knl_SyncGeneric___VERS - #define xdc_runtime_knl_SyncGeneric___ParamsPtr xdc_UChar* -#else - #define xdc_runtime_knl_SyncGeneric___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== xdc.runtime.knl.SyncNull INTERNALS ======== - */ - -/* Module__ */ -typedef struct xdc_runtime_knl_SyncNull_Module__ { - xdc_runtime_Types_Link link; -} xdc_runtime_knl_SyncNull_Module__; - -/* Module__root__V */ -extern xdc_runtime_knl_SyncNull_Module__ xdc_runtime_knl_SyncNull_Module__root__V; - -/* Object__ */ -typedef struct xdc_runtime_knl_SyncNull_Object__ { - const xdc_runtime_knl_SyncNull_Fxns__ *__fxns; -} xdc_runtime_knl_SyncNull_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - xdc_runtime_knl_SyncNull_Object__ obj; -} xdc_runtime_knl_SyncNull_Object2__; - -/* __ParamsPtr */ -#ifdef xdc_runtime_knl_SyncNull___VERS - #define xdc_runtime_knl_SyncNull___ParamsPtr xdc_UChar* -#else - #define xdc_runtime_knl_SyncNull___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== xdc.runtime.knl.SyncSemThread INTERNALS ======== - */ - -/* Module__ */ -typedef struct xdc_runtime_knl_SyncSemThread_Module__ { - xdc_runtime_Types_Link link; -} xdc_runtime_knl_SyncSemThread_Module__; - -/* Module__root__V */ -extern xdc_runtime_knl_SyncSemThread_Module__ xdc_runtime_knl_SyncSemThread_Module__root__V; - -/* Object__ */ -typedef struct xdc_runtime_knl_SyncSemThread_Object__ { - const xdc_runtime_knl_SyncSemThread_Fxns__ *__fxns; - xdc_runtime_knl_SemThread_Handle semThread; -} xdc_runtime_knl_SyncSemThread_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - xdc_runtime_knl_SyncSemThread_Object__ obj; -} xdc_runtime_knl_SyncSemThread_Object2__; - -/* __ParamsPtr */ -#ifdef xdc_runtime_knl_SyncSemThread___VERS - #define xdc_runtime_knl_SyncSemThread___ParamsPtr xdc_UChar* -#else - #define xdc_runtime_knl_SyncSemThread___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== xdc.runtime.knl.Sync_Proxy INTERNALS ======== - */ - -/* Module__ */ -typedef struct xdc_runtime_knl_Sync_Proxy_Module__ { - xdc_runtime_Types_Link link; -} xdc_runtime_knl_Sync_Proxy_Module__; - -/* Module__root__V */ -extern xdc_runtime_knl_Sync_Proxy_Module__ xdc_runtime_knl_Sync_Proxy_Module__root__V; - -/* <-- xdc_runtime_knl_SyncNull_Object */ - -/* Object */ -typedef xdc_runtime_knl_SyncNull_Object__ xdc_runtime_knl_Sync_Proxy_Object__; - -/* Object2__ */ -typedef struct { - xdc_runtime_Types_InstHdr hdr; - xdc_runtime_knl_Sync_Proxy_Object__ obj; -} xdc_runtime_knl_Sync_Proxy_Object2__; - -/* __ParamsPtr */ -#ifdef xdc_runtime_knl_Sync_Proxy___VERS - #define xdc_runtime_knl_Sync_Proxy___ParamsPtr xdc_UChar* -#else - #define xdc_runtime_knl_Sync_Proxy___ParamsPtr xdc_Ptr -#endif - - -/* - * ======== INHERITS ======== - */ - -#pragma DATA_SECTION(xdc_runtime_IHeap_Interface__BASE__C, ".const:xdc_runtime_IHeap_Interface__BASE__C"); -__FAR__ const xdc_runtime_Types_Base xdc_runtime_IHeap_Interface__BASE__C = {(void*)&xdc_runtime_IModule_Interface__BASE__C}; - -#pragma DATA_SECTION(xdc_runtime_knl_ISemaphore_Interface__BASE__C, ".const:xdc_runtime_knl_ISemaphore_Interface__BASE__C"); -__FAR__ const xdc_runtime_Types_Base xdc_runtime_knl_ISemaphore_Interface__BASE__C = {(void*)&xdc_runtime_IModule_Interface__BASE__C}; - -#pragma DATA_SECTION(xdc_runtime_ISystemSupport_Interface__BASE__C, ".const:xdc_runtime_ISystemSupport_Interface__BASE__C"); -__FAR__ const xdc_runtime_Types_Base xdc_runtime_ISystemSupport_Interface__BASE__C = {(void*)&xdc_runtime_IModule_Interface__BASE__C}; - -#pragma DATA_SECTION(ti_sysbios_interfaces_IIntrinsicsSupport_Interface__BASE__C, ".const:ti_sysbios_interfaces_IIntrinsicsSupport_Interface__BASE__C"); -__FAR__ const xdc_runtime_Types_Base ti_sysbios_interfaces_IIntrinsicsSupport_Interface__BASE__C = {(void*)&xdc_runtime_IModule_Interface__BASE__C}; - -#pragma DATA_SECTION(xdc_runtime_IGateProvider_Interface__BASE__C, ".const:xdc_runtime_IGateProvider_Interface__BASE__C"); -__FAR__ const xdc_runtime_Types_Base xdc_runtime_IGateProvider_Interface__BASE__C = {(void*)&xdc_runtime_IModule_Interface__BASE__C}; - -#pragma DATA_SECTION(ti_sysbios_interfaces_ISeconds_Interface__BASE__C, ".const:ti_sysbios_interfaces_ISeconds_Interface__BASE__C"); -__FAR__ const xdc_runtime_Types_Base ti_sysbios_interfaces_ISeconds_Interface__BASE__C = {(void*)&xdc_runtime_IModule_Interface__BASE__C}; - -#pragma DATA_SECTION(xdc_runtime_knl_ISync_Interface__BASE__C, ".const:xdc_runtime_knl_ISync_Interface__BASE__C"); -__FAR__ const xdc_runtime_Types_Base xdc_runtime_knl_ISync_Interface__BASE__C = {(void*)&xdc_runtime_IModule_Interface__BASE__C}; - -#pragma DATA_SECTION(xdc_runtime_IModule_Interface__BASE__C, ".const:xdc_runtime_IModule_Interface__BASE__C"); -__FAR__ const xdc_runtime_Types_Base xdc_runtime_IModule_Interface__BASE__C = {0}; - -#pragma DATA_SECTION(xdc_runtime_ITimestampClient_Interface__BASE__C, ".const:xdc_runtime_ITimestampClient_Interface__BASE__C"); -__FAR__ const xdc_runtime_Types_Base xdc_runtime_ITimestampClient_Interface__BASE__C = {(void*)&xdc_runtime_IModule_Interface__BASE__C}; - - -/* - * ======== ti.sysbios.family.arm.lm4.Seconds VTABLE ======== - */ - -/* Module__FXNS__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Module__FXNS__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Module__FXNS__C"); -const ti_sysbios_family_arm_lm4_Seconds_Fxns__ ti_sysbios_family_arm_lm4_Seconds_Module__FXNS__C = { - (void*)&ti_sysbios_interfaces_ISeconds_Interface__BASE__C, /* __base */ - &ti_sysbios_family_arm_lm4_Seconds_Module__FXNS__C.__sfxns, /* __sysp */ - ti_sysbios_family_arm_lm4_Seconds_get__E, - ti_sysbios_family_arm_lm4_Seconds_getTime__E, - ti_sysbios_family_arm_lm4_Seconds_set__E, - { - NULL, /* __create */ - NULL, /* __delete */ - NULL, /* __label */ - 0x802e, /* __mid */ - } /* __sfxns */ -}; - - -/* - * ======== ti.sysbios.family.arm.m3.IntrinsicsSupport VTABLE ======== - */ - -/* Module__FXNS__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__FXNS__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__FXNS__C"); -const ti_sysbios_family_arm_m3_IntrinsicsSupport_Fxns__ ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__FXNS__C = { - (void*)&ti_sysbios_interfaces_IIntrinsicsSupport_Interface__BASE__C, /* __base */ - &ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__FXNS__C.__sfxns, /* __sysp */ - ti_sysbios_family_arm_m3_IntrinsicsSupport_maxbit__E, - { - NULL, /* __create */ - NULL, /* __delete */ - NULL, /* __label */ - 0x801e, /* __mid */ - } /* __sfxns */ -}; - - -/* - * ======== ti.sysbios.gates.GateHwi VTABLE ======== - */ - -/* Module__FXNS__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__FXNS__C, ".const:ti_sysbios_gates_GateHwi_Module__FXNS__C"); -const ti_sysbios_gates_GateHwi_Fxns__ ti_sysbios_gates_GateHwi_Module__FXNS__C = { - (void*)&xdc_runtime_IGateProvider_Interface__BASE__C, /* __base */ - &ti_sysbios_gates_GateHwi_Module__FXNS__C.__sfxns, /* __sysp */ - ti_sysbios_gates_GateHwi_query__E, - ti_sysbios_gates_GateHwi_enter__E, - ti_sysbios_gates_GateHwi_leave__E, - { - ti_sysbios_gates_GateHwi_Object__create__S, - ti_sysbios_gates_GateHwi_Object__delete__S, - ti_sysbios_gates_GateHwi_Handle__label__S, - 0x803b, /* __mid */ - } /* __sfxns */ -}; - - -/* - * ======== ti.sysbios.gates.GateMutex VTABLE ======== - */ - -/* Module__FXNS__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__FXNS__C, ".const:ti_sysbios_gates_GateMutex_Module__FXNS__C"); -const ti_sysbios_gates_GateMutex_Fxns__ ti_sysbios_gates_GateMutex_Module__FXNS__C = { - (void*)&xdc_runtime_IGateProvider_Interface__BASE__C, /* __base */ - &ti_sysbios_gates_GateMutex_Module__FXNS__C.__sfxns, /* __sysp */ - ti_sysbios_gates_GateMutex_query__E, - ti_sysbios_gates_GateMutex_enter__E, - ti_sysbios_gates_GateMutex_leave__E, - { - ti_sysbios_gates_GateMutex_Object__create__S, - ti_sysbios_gates_GateMutex_Object__delete__S, - ti_sysbios_gates_GateMutex_Handle__label__S, - 0x803c, /* __mid */ - } /* __sfxns */ -}; - - -/* - * ======== ti.sysbios.heaps.HeapMem VTABLE ======== - */ - -/* Module__FXNS__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__FXNS__C, ".const:ti_sysbios_heaps_HeapMem_Module__FXNS__C"); -const ti_sysbios_heaps_HeapMem_Fxns__ ti_sysbios_heaps_HeapMem_Module__FXNS__C = { - (void*)&xdc_runtime_IHeap_Interface__BASE__C, /* __base */ - &ti_sysbios_heaps_HeapMem_Module__FXNS__C.__sfxns, /* __sysp */ - ti_sysbios_heaps_HeapMem_alloc__E, - ti_sysbios_heaps_HeapMem_free__E, - ti_sysbios_heaps_HeapMem_isBlocking__E, - ti_sysbios_heaps_HeapMem_getStats__E, - { - ti_sysbios_heaps_HeapMem_Object__create__S, - ti_sysbios_heaps_HeapMem_Object__delete__S, - ti_sysbios_heaps_HeapMem_Handle__label__S, - 0x8040, /* __mid */ - } /* __sfxns */ -}; - - -/* - * ======== xdc.runtime.HeapStd VTABLE ======== - */ - -/* Module__FXNS__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Module__FXNS__C, ".const:xdc_runtime_HeapStd_Module__FXNS__C"); -const xdc_runtime_HeapStd_Fxns__ xdc_runtime_HeapStd_Module__FXNS__C = { - (void*)&xdc_runtime_IHeap_Interface__BASE__C, /* __base */ - &xdc_runtime_HeapStd_Module__FXNS__C.__sfxns, /* __sysp */ - xdc_runtime_HeapStd_alloc__E, - xdc_runtime_HeapStd_free__E, - xdc_runtime_HeapStd_isBlocking__E, - xdc_runtime_HeapStd_getStats__E, - { - xdc_runtime_HeapStd_Object__create__S, - xdc_runtime_HeapStd_Object__delete__S, - xdc_runtime_HeapStd_Handle__label__S, - 0x800b, /* __mid */ - } /* __sfxns */ -}; - - -/* - * ======== xdc.runtime.SysMin VTABLE ======== - */ - -/* Module__FXNS__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Module__FXNS__C, ".const:xdc_runtime_SysMin_Module__FXNS__C"); -const xdc_runtime_SysMin_Fxns__ xdc_runtime_SysMin_Module__FXNS__C = { - (void*)&xdc_runtime_ISystemSupport_Interface__BASE__C, /* __base */ - &xdc_runtime_SysMin_Module__FXNS__C.__sfxns, /* __sysp */ - xdc_runtime_SysMin_abort__E, - xdc_runtime_SysMin_exit__E, - xdc_runtime_SysMin_flush__E, - xdc_runtime_SysMin_putch__E, - xdc_runtime_SysMin_ready__E, - { - NULL, /* __create */ - NULL, /* __delete */ - NULL, /* __label */ - 0x800f, /* __mid */ - } /* __sfxns */ -}; - - -/* - * ======== xdc.runtime.Timestamp VTABLE ======== - */ - -/* Module__FXNS__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Module__FXNS__C, ".const:xdc_runtime_Timestamp_Module__FXNS__C"); -const xdc_runtime_Timestamp_Fxns__ xdc_runtime_Timestamp_Module__FXNS__C = { - (void*)&xdc_runtime_ITimestampClient_Interface__BASE__C, /* __base */ - &xdc_runtime_Timestamp_Module__FXNS__C.__sfxns, /* __sysp */ - xdc_runtime_Timestamp_get32__E, - xdc_runtime_Timestamp_get64__E, - xdc_runtime_Timestamp_getFreq__E, - { - NULL, /* __create */ - NULL, /* __delete */ - NULL, /* __label */ - 0x8011, /* __mid */ - } /* __sfxns */ -}; - - -/* - * ======== xdc.runtime.knl.SemThread VTABLE ======== - */ - -/* Module__FXNS__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Module__FXNS__C, ".const:xdc_runtime_knl_SemThread_Module__FXNS__C"); -const xdc_runtime_knl_SemThread_Fxns__ xdc_runtime_knl_SemThread_Module__FXNS__C = { - (void*)&xdc_runtime_knl_ISemaphore_Interface__BASE__C, /* __base */ - &xdc_runtime_knl_SemThread_Module__FXNS__C.__sfxns, /* __sysp */ - xdc_runtime_knl_SemThread_pend__E, - xdc_runtime_knl_SemThread_post__E, - { - xdc_runtime_knl_SemThread_Object__create__S, - xdc_runtime_knl_SemThread_Object__delete__S, - xdc_runtime_knl_SemThread_Handle__label__S, - 0x8033, /* __mid */ - } /* __sfxns */ -}; - - -/* - * ======== xdc.runtime.knl.SyncGeneric VTABLE ======== - */ - -/* Module__FXNS__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Module__FXNS__C, ".const:xdc_runtime_knl_SyncGeneric_Module__FXNS__C"); -const xdc_runtime_knl_SyncGeneric_Fxns__ xdc_runtime_knl_SyncGeneric_Module__FXNS__C = { - (void*)&xdc_runtime_knl_ISync_Interface__BASE__C, /* __base */ - &xdc_runtime_knl_SyncGeneric_Module__FXNS__C.__sfxns, /* __sysp */ - xdc_runtime_knl_SyncGeneric_query__E, - xdc_runtime_knl_SyncGeneric_signal__E, - xdc_runtime_knl_SyncGeneric_wait__E, - { - xdc_runtime_knl_SyncGeneric_Object__create__S, - xdc_runtime_knl_SyncGeneric_Object__delete__S, - xdc_runtime_knl_SyncGeneric_Handle__label__S, - 0x8034, /* __mid */ - } /* __sfxns */ -}; - - -/* - * ======== xdc.runtime.knl.SyncNull VTABLE ======== - */ - -/* Module__FXNS__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Module__FXNS__C, ".const:xdc_runtime_knl_SyncNull_Module__FXNS__C"); -const xdc_runtime_knl_SyncNull_Fxns__ xdc_runtime_knl_SyncNull_Module__FXNS__C = { - (void*)&xdc_runtime_knl_ISync_Interface__BASE__C, /* __base */ - &xdc_runtime_knl_SyncNull_Module__FXNS__C.__sfxns, /* __sysp */ - xdc_runtime_knl_SyncNull_query__E, - xdc_runtime_knl_SyncNull_signal__E, - xdc_runtime_knl_SyncNull_wait__E, - { - xdc_runtime_knl_SyncNull_Object__create__S, - xdc_runtime_knl_SyncNull_Object__delete__S, - xdc_runtime_knl_SyncNull_Handle__label__S, - 0x8035, /* __mid */ - } /* __sfxns */ -}; - - -/* - * ======== xdc.runtime.knl.SyncSemThread VTABLE ======== - */ - -/* Module__FXNS__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Module__FXNS__C, ".const:xdc_runtime_knl_SyncSemThread_Module__FXNS__C"); -const xdc_runtime_knl_SyncSemThread_Fxns__ xdc_runtime_knl_SyncSemThread_Module__FXNS__C = { - (void*)&xdc_runtime_knl_ISync_Interface__BASE__C, /* __base */ - &xdc_runtime_knl_SyncSemThread_Module__FXNS__C.__sfxns, /* __sysp */ - xdc_runtime_knl_SyncSemThread_query__E, - xdc_runtime_knl_SyncSemThread_signal__E, - xdc_runtime_knl_SyncSemThread_wait__E, - { - xdc_runtime_knl_SyncSemThread_Object__create__S, - xdc_runtime_knl_SyncSemThread_Object__delete__S, - xdc_runtime_knl_SyncSemThread_Handle__label__S, - 0x8036, /* __mid */ - } /* __sfxns */ -}; - - -/* - * ======== ti.catalog.arm.cortexm4.tiva.ce.Boot DECLARATIONS ======== - */ - - -/* - * ======== ti.sysbios.BIOS DECLARATIONS ======== - */ - -/* Module_State__ */ -typedef struct ti_sysbios_BIOS_Module_State__ { - xdc_runtime_Types_FreqHz cpuFreq; - xdc_UInt rtsGateCount; - xdc_IArg rtsGateKey; - ti_sysbios_BIOS_RtsGateProxy_Handle rtsGate; - ti_sysbios_BIOS_ThreadType threadType; - __TA_ti_sysbios_BIOS_Module_State__smpThreadType smpThreadType; - volatile ti_sysbios_BIOS_StartFuncPtr startFunc; - volatile ti_sysbios_BIOS_ExitFuncPtr exitFunc; -} ti_sysbios_BIOS_Module_State__; - -/* --> ti_sysbios_BIOS_startFunc */ -extern xdc_Void ti_sysbios_BIOS_startFunc(xdc_Void); - -/* --> ti_sysbios_BIOS_exitFunc */ -extern xdc_Void ti_sysbios_BIOS_exitFunc(xdc_Int); - -/* Module__state__V */ -ti_sysbios_BIOS_Module_State__ ti_sysbios_BIOS_Module__state__V; - - -/* - * ======== ti.sysbios.BIOS_RtsGateProxy DECLARATIONS ======== - */ - - -/* - * ======== ti.sysbios.family.arm.lm4.Seconds DECLARATIONS ======== - */ - -/* Module_State__ */ -typedef struct ti_sysbios_family_arm_lm4_Seconds_Module_State__ { - xdc_UInt32 setSeconds; - xdc_UInt32 refSeconds; -} ti_sysbios_family_arm_lm4_Seconds_Module_State__; - -/* Module__state__V */ -ti_sysbios_family_arm_lm4_Seconds_Module_State__ ti_sysbios_family_arm_lm4_Seconds_Module__state__V; - - -/* - * ======== ti.sysbios.family.arm.lm4.Timer DECLARATIONS ======== - */ - -/* Object__table__V */ -ti_sysbios_family_arm_lm4_Timer_Object__ ti_sysbios_family_arm_lm4_Timer_Object__table__V[1]; - -/* Module_State__ */ -typedef struct ti_sysbios_family_arm_lm4_Timer_Module_State__ { - xdc_UInt availMask; - __TA_ti_sysbios_family_arm_lm4_Timer_Module_State__device device; - __TA_ti_sysbios_family_arm_lm4_Timer_Module_State__handles handles; -} ti_sysbios_family_arm_lm4_Timer_Module_State__; - -/* --> ti_sysbios_family_arm_lm4_Timer_Module_State_0_device__A */ -__T1_ti_sysbios_family_arm_lm4_Timer_Module_State__device ti_sysbios_family_arm_lm4_Timer_Module_State_0_device__A[8]; - -/* --> ti_sysbios_family_arm_lm4_Timer_Module_State_0_handles__A */ -__T1_ti_sysbios_family_arm_lm4_Timer_Module_State__handles ti_sysbios_family_arm_lm4_Timer_Module_State_0_handles__A[8]; - -/* Module__state__V */ -ti_sysbios_family_arm_lm4_Timer_Module_State__ ti_sysbios_family_arm_lm4_Timer_Module__state__V; - -/* --> ti_sysbios_family_arm_lm4_Timer_enableTiva */ -extern xdc_Void ti_sysbios_family_arm_lm4_Timer_enableTiva(xdc_Int); - -/* --> ti_sysbios_family_arm_lm4_Timer_disableTiva */ -extern xdc_Void ti_sysbios_family_arm_lm4_Timer_disableTiva(xdc_Int); - - -/* - * ======== ti.sysbios.family.arm.lm4.TimestampProvider DECLARATIONS ======== - */ - -/* Module_State__ */ -typedef struct ti_sysbios_family_arm_lm4_TimestampProvider_Module_State__ { - ti_sysbios_family_arm_lm4_Timer_Handle timer; - volatile xdc_UInt32 hi; -} ti_sysbios_family_arm_lm4_TimestampProvider_Module_State__; - -/* Module__state__V */ -ti_sysbios_family_arm_lm4_TimestampProvider_Module_State__ ti_sysbios_family_arm_lm4_TimestampProvider_Module__state__V; - - -/* - * ======== ti.sysbios.family.arm.m3.Hwi DECLARATIONS ======== - */ - -/* --> ADC0SS0Handler */ -extern xdc_Void ADC0SS0Handler(xdc_UArg); - -/* --> SysTickHandler */ -extern xdc_Void SysTickHandler(xdc_UArg); - -/* --> PortPIntHandler */ -extern xdc_Void PortPIntHandler(xdc_UArg); - -/* --> OneMilliSecondControlInterrupt */ -extern xdc_Void OneMilliSecondControlInterrupt(xdc_UArg); - -/* --> WatchdogIntHandler */ -extern xdc_Void WatchdogIntHandler(xdc_UArg); - -/* --> EightMilliSecondHeatersInterrupt */ -extern xdc_Void EightMilliSecondHeatersInterrupt(xdc_UArg); - -/* --> OneMilliSecondMillisecInterrupt */ -extern xdc_Void OneMilliSecondMillisecInterrupt(xdc_UArg); - -/* --> ScrewTimerInterrupt */ -extern xdc_Void ScrewTimerInterrupt(xdc_UArg); - -/* Object__table__V */ -ti_sysbios_family_arm_m3_Hwi_Object__ ti_sysbios_family_arm_m3_Hwi_Object__table__V[9]; - -/* Module_State__ */ -typedef struct ti_sysbios_family_arm_m3_Hwi_Module_State__ { - xdc_Char *taskSP; - __TA_ti_sysbios_family_arm_m3_Hwi_Module_State__excActive excActive; - __TA_ti_sysbios_family_arm_m3_Hwi_Module_State__excContext excContext; - __TA_ti_sysbios_family_arm_m3_Hwi_Module_State__excStack excStack; - xdc_Ptr isrStack; - xdc_Ptr isrStackBase; - xdc_SizeT isrStackSize; - xdc_Ptr vectorTableBase; - xdc_UInt swiTaskKeys; - xdc_Ptr dispatchTable; - volatile xdc_Bool vnvicFlushRequired; - __TA_ti_sysbios_family_arm_m3_Hwi_Module_State__intAffinity intAffinity; - __TA_ti_sysbios_family_arm_m3_Hwi_Module_State__intAffinityMasks intAffinityMasks; -} ti_sysbios_family_arm_m3_Hwi_Module_State__; - -/* --> ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A */ -__T1_ti_sysbios_family_arm_m3_Hwi_Module_State__excActive ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A[1]; - -/* --> ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A */ -__T1_ti_sysbios_family_arm_m3_Hwi_Module_State__excContext ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A[1]; - -/* --> ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A */ -__T1_ti_sysbios_family_arm_m3_Hwi_Module_State__excStack ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A[1]; - -/* --> __TI_STACK_BASE */ -extern void* __TI_STACK_BASE; - -/* Module__state__V */ -ti_sysbios_family_arm_m3_Hwi_Module_State__ ti_sysbios_family_arm_m3_Hwi_Module__state__V; - -/* --> ti_sysbios_family_arm_m3_Hwi_excHookFuncs__A */ -const __T1_ti_sysbios_family_arm_m3_Hwi_excHookFuncs ti_sysbios_family_arm_m3_Hwi_excHookFuncs__A[2]; - -/* --> ti_sysbios_knl_Swi_disable__E */ -extern xdc_UInt ti_sysbios_knl_Swi_disable__E(xdc_Void); - -/* --> ti_sysbios_knl_Swi_restoreHwi__E */ -extern xdc_Void ti_sysbios_knl_Swi_restoreHwi__E(xdc_UInt); - -/* --> ti_sysbios_knl_Task_disable__E */ -extern xdc_UInt ti_sysbios_knl_Task_disable__E(xdc_Void); - -/* --> ti_sysbios_knl_Task_restoreHwi__E */ -extern xdc_Void ti_sysbios_knl_Task_restoreHwi__E(xdc_UInt); - - -/* - * ======== ti.sysbios.family.arm.m3.IntrinsicsSupport DECLARATIONS ======== - */ - - -/* - * ======== ti.sysbios.family.arm.m3.TaskSupport DECLARATIONS ======== - */ - - -/* - * ======== ti.sysbios.gates.GateHwi DECLARATIONS ======== - */ - -/* Object__table__V */ -ti_sysbios_gates_GateHwi_Object__ ti_sysbios_gates_GateHwi_Object__table__V[1]; - - -/* - * ======== ti.sysbios.gates.GateMutex DECLARATIONS ======== - */ - -/* Object__table__V */ -ti_sysbios_gates_GateMutex_Object__ ti_sysbios_gates_GateMutex_Object__table__V[2]; - - -/* - * ======== ti.sysbios.hal.Hwi DECLARATIONS ======== - */ - - -/* - * ======== ti.sysbios.hal.Hwi_HwiProxy DECLARATIONS ======== - */ - - -/* - * ======== ti.sysbios.hal.Seconds DECLARATIONS ======== - */ - - -/* - * ======== ti.sysbios.hal.Seconds_SecondsProxy DECLARATIONS ======== - */ - - -/* - * ======== ti.sysbios.heaps.HeapMem DECLARATIONS ======== - */ - -#ifdef __IAR_SYSTEMS_ICC__ - #pragma data_alignment=8 -#endif -/* --> ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A */ -__T1_ti_sysbios_heaps_HeapMem_Instance_State__buf ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A[30760]; -#ifdef __ti__align - #pragma DATA_ALIGN(ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A, 8); -#endif -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_heaps_HeapMem_Instance_State__buf ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A[30760] __attribute__ ((aligned(8))); -#endif -#endif - -/* Object__table__V */ -ti_sysbios_heaps_HeapMem_Object__ ti_sysbios_heaps_HeapMem_Object__table__V[1]; - - -/* - * ======== ti.sysbios.heaps.HeapMem_Module_GateProxy DECLARATIONS ======== - */ - - -/* - * ======== ti.sysbios.io.DEV DECLARATIONS ======== - */ - -/* Module_State__ */ -typedef struct ti_sysbios_io_DEV_Module_State__ { - __TA_ti_sysbios_io_DEV_Module_State__table table; -} ti_sysbios_io_DEV_Module_State__; - -/* --> ti_sysbios_io_DEV_Module_State_0_table__A */ -__T1_ti_sysbios_io_DEV_Module_State__table ti_sysbios_io_DEV_Module_State_0_table__A[8]; - -/* Module__state__V */ -ti_sysbios_io_DEV_Module_State__ ti_sysbios_io_DEV_Module__state__V; - - -/* - * ======== ti.sysbios.io.GIO DECLARATIONS ======== - */ - - -/* - * ======== ti.sysbios.knl.Clock DECLARATIONS ======== - */ - -/* Module_State__ */ -typedef struct ti_sysbios_knl_Clock_Module_State__ { - volatile xdc_UInt32 ticks; - xdc_UInt swiCount; - ti_sysbios_knl_Clock_TimerProxy_Handle timer; - ti_sysbios_knl_Swi_Handle swi; - volatile xdc_UInt numTickSkip; - xdc_UInt32 nextScheduledTick; - xdc_UInt32 maxSkippable; - xdc_Bool inWorkFunc; - xdc_Bool startDuringWorkFunc; - xdc_Bool ticking; - ti_sysbios_knl_Queue_Object__ Object_field_clockQ; -} ti_sysbios_knl_Clock_Module_State__; - -/* Module__state__V */ -ti_sysbios_knl_Clock_Module_State__ ti_sysbios_knl_Clock_Module__state__V; - -/* --> ti_sysbios_knl_Clock_doTick__I */ -extern xdc_Void ti_sysbios_knl_Clock_doTick__I(xdc_UArg); - - -/* - * ======== ti.sysbios.knl.Clock_TimerProxy DECLARATIONS ======== - */ - - -/* - * ======== ti.sysbios.knl.Event DECLARATIONS ======== - */ - - -/* - * ======== ti.sysbios.knl.Idle DECLARATIONS ======== - */ - -/* --> ti_sysbios_hal_Hwi_checkStack */ -extern xdc_Void ti_sysbios_hal_Hwi_checkStack(xdc_Void); - -/* --> ti_sysbios_knl_Idle_funcList__A */ -const __T1_ti_sysbios_knl_Idle_funcList ti_sysbios_knl_Idle_funcList__A[1]; - -/* --> ti_sysbios_knl_Idle_coreList__A */ -const __T1_ti_sysbios_knl_Idle_coreList ti_sysbios_knl_Idle_coreList__A[1]; - - -/* - * ======== ti.sysbios.knl.Intrinsics DECLARATIONS ======== - */ - - -/* - * ======== ti.sysbios.knl.Intrinsics_SupportProxy DECLARATIONS ======== - */ - - -/* - * ======== ti.sysbios.knl.Mailbox DECLARATIONS ======== - */ - - -/* - * ======== ti.sysbios.knl.Queue DECLARATIONS ======== - */ - - -/* - * ======== ti.sysbios.knl.Semaphore DECLARATIONS ======== - */ - -/* Object__table__V */ -ti_sysbios_knl_Semaphore_Object__ ti_sysbios_knl_Semaphore_Object__table__V[4]; - - -/* - * ======== ti.sysbios.knl.Swi DECLARATIONS ======== - */ - -/* Object__table__V */ -ti_sysbios_knl_Swi_Object__ ti_sysbios_knl_Swi_Object__table__V[1]; - -/* Module_State__ */ -typedef struct ti_sysbios_knl_Swi_Module_State__ { - volatile xdc_Bool locked; - xdc_UInt curSet; - xdc_UInt curTrigger; - ti_sysbios_knl_Swi_Handle curSwi; - ti_sysbios_knl_Queue_Handle curQ; - __TA_ti_sysbios_knl_Swi_Module_State__readyQ readyQ; - __TA_ti_sysbios_knl_Swi_Module_State__constructedSwis constructedSwis; -} ti_sysbios_knl_Swi_Module_State__; - -/* --> ti_sysbios_knl_Swi_Module_State_0_readyQ__A */ -__T1_ti_sysbios_knl_Swi_Module_State__readyQ ti_sysbios_knl_Swi_Module_State_0_readyQ__A[16]; - -/* Module__state__V */ -ti_sysbios_knl_Swi_Module_State__ ti_sysbios_knl_Swi_Module__state__V; - -/* --> ti_sysbios_knl_Task_disable__E */ -extern xdc_UInt ti_sysbios_knl_Task_disable__E(xdc_Void); - -/* --> ti_sysbios_knl_Task_restore__E */ -extern xdc_Void ti_sysbios_knl_Task_restore__E(xdc_UInt); - - -/* - * ======== ti.sysbios.knl.Task DECLARATIONS ======== - */ - -#ifdef __IAR_SYSTEMS_ICC__ - #pragma data_alignment=8 -#endif -/* --> ti_sysbios_knl_Task_Instance_State_0_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_0_stack__A[2048]; -#ifdef __ti__sect - #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_0_stack__A, ".bss:taskStackSection"); -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_0_stack__A[2048] __attribute__ ((section(".bss:taskStackSection"))); -#endif -#endif -#ifdef __ti__align - #pragma DATA_ALIGN(ti_sysbios_knl_Task_Instance_State_0_stack__A, 8); -#endif -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_0_stack__A[2048] __attribute__ ((aligned(8))); -#endif -#endif - -/* --> MillisecTask */ -extern xdc_Void MillisecTask(xdc_UArg,xdc_UArg); -#ifdef __IAR_SYSTEMS_ICC__ - #pragma data_alignment=8 -#endif - -/* --> ti_sysbios_knl_Task_Instance_State_1_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_1_stack__A[2048]; -#ifdef __ti__sect - #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_1_stack__A, ".bss:taskStackSection"); -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_1_stack__A[2048] __attribute__ ((section(".bss:taskStackSection"))); -#endif -#endif -#ifdef __ti__align - #pragma DATA_ALIGN(ti_sysbios_knl_Task_Instance_State_1_stack__A, 8); -#endif -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_1_stack__A[2048] __attribute__ ((aligned(8))); -#endif -#endif - -/* --> controlTask */ -extern xdc_Void controlTask(xdc_UArg,xdc_UArg); -#ifdef __IAR_SYSTEMS_ICC__ - #pragma data_alignment=8 -#endif - -/* --> ti_sysbios_knl_Task_Instance_State_2_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_2_stack__A[1024]; -#ifdef __ti__sect - #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_2_stack__A, ".bss:taskStackSection"); -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_2_stack__A[1024] __attribute__ ((section(".bss:taskStackSection"))); -#endif -#endif -#ifdef __ti__align - #pragma DATA_ALIGN(ti_sysbios_knl_Task_Instance_State_2_stack__A, 8); -#endif -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_2_stack__A[1024] __attribute__ ((aligned(8))); -#endif -#endif - -/* --> AlarmHandlingTask */ -extern xdc_Void AlarmHandlingTask(xdc_UArg,xdc_UArg); -#ifdef __IAR_SYSTEMS_ICC__ - #pragma data_alignment=8 -#endif - -/* --> ti_sysbios_knl_Task_Instance_State_3_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_3_stack__A[4096]; -#ifdef __ti__sect - #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_3_stack__A, ".bss:taskStackSection"); -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_3_stack__A[4096] __attribute__ ((section(".bss:taskStackSection"))); -#endif -#endif -#ifdef __ti__align - #pragma DATA_ALIGN(ti_sysbios_knl_Task_Instance_State_3_stack__A, 8); -#endif -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_3_stack__A[4096] __attribute__ ((aligned(8))); -#endif -#endif - -/* --> communicationTxTask */ -extern xdc_Void communicationTxTask(xdc_UArg,xdc_UArg); -#ifdef __IAR_SYSTEMS_ICC__ - #pragma data_alignment=8 -#endif - -/* --> ti_sysbios_knl_Task_Instance_State_4_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_4_stack__A[2048]; -#ifdef __ti__sect - #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_4_stack__A, ".bss:taskStackSection"); -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_4_stack__A[2048] __attribute__ ((section(".bss:taskStackSection"))); -#endif -#endif -#ifdef __ti__align - #pragma DATA_ALIGN(ti_sysbios_knl_Task_Instance_State_4_stack__A, 8); -#endif -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_4_stack__A[2048] __attribute__ ((aligned(8))); -#endif -#endif - -/* --> jobTask */ -extern xdc_Void jobTask(xdc_UArg,xdc_UArg); -#ifdef __IAR_SYSTEMS_ICC__ - #pragma data_alignment=8 -#endif - -/* --> ti_sysbios_knl_Task_Instance_State_5_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_5_stack__A[1024]; -#ifdef __ti__sect - #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_5_stack__A, ".bss:taskStackSection"); -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_5_stack__A[1024] __attribute__ ((section(".bss:taskStackSection"))); -#endif -#endif -#ifdef __ti__align - #pragma DATA_ALIGN(ti_sysbios_knl_Task_Instance_State_5_stack__A, 8); -#endif -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_5_stack__A[1024] __attribute__ ((aligned(8))); -#endif -#endif - -/* --> HeatersControlTask */ -extern xdc_Void HeatersControlTask(xdc_UArg,xdc_UArg); -#ifdef __IAR_SYSTEMS_ICC__ - #pragma data_alignment=8 -#endif - -/* --> ti_sysbios_knl_Task_Instance_State_6_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_6_stack__A[8192]; -#ifdef __ti__sect - #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_6_stack__A, ".bss:taskStackSection"); -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_6_stack__A[8192] __attribute__ ((section(".bss:taskStackSection"))); -#endif -#endif -#ifdef __ti__align - #pragma DATA_ALIGN(ti_sysbios_knl_Task_Instance_State_6_stack__A, 8); -#endif -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_6_stack__A[8192] __attribute__ ((aligned(8))); -#endif -#endif - -/* --> communicationTask */ -extern xdc_Void communicationTask(xdc_UArg,xdc_UArg); -#ifdef __IAR_SYSTEMS_ICC__ - #pragma data_alignment=8 -#endif - -/* --> ti_sysbios_knl_Task_Instance_State_7_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_7_stack__A[2048]; -#ifdef __ti__sect - #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_7_stack__A, ".bss:taskStackSection"); -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_7_stack__A[2048] __attribute__ ((section(".bss:taskStackSection"))); -#endif -#endif -#ifdef __ti__align - #pragma DATA_ALIGN(ti_sysbios_knl_Task_Instance_State_7_stack__A, 8); -#endif -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_7_stack__A[2048] __attribute__ ((aligned(8))); -#endif -#endif - -/* --> MillisecLowTask */ -extern xdc_Void MillisecLowTask(xdc_UArg,xdc_UArg); -#ifdef __IAR_SYSTEMS_ICC__ - #pragma data_alignment=8 -#endif - -/* --> ti_sysbios_knl_Task_Instance_State_8_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_8_stack__A[2048]; -#ifdef __ti__sect - #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_8_stack__A, ".bss:taskStackSection"); -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_8_stack__A[2048] __attribute__ ((section(".bss:taskStackSection"))); -#endif -#endif -#ifdef __ti__align - #pragma DATA_ALIGN(ti_sysbios_knl_Task_Instance_State_8_stack__A, 8); -#endif -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_8_stack__A[2048] __attribute__ ((aligned(8))); -#endif -#endif - -/* --> controlLowTask */ -extern xdc_Void controlLowTask(xdc_UArg,xdc_UArg); -#ifdef __IAR_SYSTEMS_ICC__ - #pragma data_alignment=8 -#endif - -/* --> ti_sysbios_knl_Task_Instance_State_9_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_9_stack__A[8192]; -#ifdef __ti__sect - #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_9_stack__A, ".bss:taskStackSection"); -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_9_stack__A[8192] __attribute__ ((section(".bss:taskStackSection"))); -#endif -#endif -#ifdef __ti__align - #pragma DATA_ALIGN(ti_sysbios_knl_Task_Instance_State_9_stack__A, 8); -#endif -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_9_stack__A[8192] __attribute__ ((aligned(8))); -#endif -#endif - -/* --> DiagnosticsTask */ -extern xdc_Void DiagnosticsTask(xdc_UArg,xdc_UArg); -#ifdef __IAR_SYSTEMS_ICC__ - #pragma data_alignment=8 -#endif - -/* --> ti_sysbios_knl_Task_Instance_State_10_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_10_stack__A[512]; -#ifdef __ti__sect - #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_10_stack__A, ".bss:taskStackSection"); -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_10_stack__A[512] __attribute__ ((section(".bss:taskStackSection"))); -#endif -#endif -#ifdef __ti__align - #pragma DATA_ALIGN(ti_sysbios_knl_Task_Instance_State_10_stack__A, 8); -#endif -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_10_stack__A[512] __attribute__ ((aligned(8))); -#endif -#endif - -/* --> ADCProcessTask */ -extern xdc_Void ADCProcessTask(xdc_UArg,xdc_UArg); -#ifdef __IAR_SYSTEMS_ICC__ - #pragma data_alignment=8 -#endif - -/* --> ti_sysbios_knl_Task_Instance_State_11_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_11_stack__A[1024]; -#ifdef __ti__sect - #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_11_stack__A, ".bss:taskStackSection"); -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_11_stack__A[1024] __attribute__ ((section(".bss:taskStackSection"))); -#endif -#endif -#ifdef __ti__align - #pragma DATA_ALIGN(ti_sysbios_knl_Task_Instance_State_11_stack__A, 8); -#endif -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_11_stack__A[1024] __attribute__ ((aligned(8))); -#endif -#endif - -/* --> reportService */ -extern xdc_Void reportService(xdc_UArg,xdc_UArg); -#ifdef __IAR_SYSTEMS_ICC__ - #pragma data_alignment=8 -#endif - -/* --> ti_sysbios_knl_Task_Instance_State_12_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_12_stack__A[1024]; -#ifdef __ti__sect - #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_12_stack__A, ".bss:taskStackSection"); -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_12_stack__A[1024] __attribute__ ((section(".bss:taskStackSection"))); -#endif -#endif -#ifdef __ti__align - #pragma DATA_ALIGN(ti_sysbios_knl_Task_Instance_State_12_stack__A, 8); -#endif -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_12_stack__A[1024] __attribute__ ((aligned(8))); -#endif -#endif - -/* --> updateTask */ -extern xdc_Void updateTask(xdc_UArg,xdc_UArg); - -/* Object__table__V */ -ti_sysbios_knl_Task_Object__ ti_sysbios_knl_Task_Object__table__V[13]; - -/* Module_State__ */ -typedef struct ti_sysbios_knl_Task_Module_State__ { - volatile xdc_Bool locked; - volatile xdc_UInt curSet; - xdc_Bool workFlag; - xdc_UInt vitalTasks; - ti_sysbios_knl_Task_Handle curTask; - ti_sysbios_knl_Queue_Handle curQ; - __TA_ti_sysbios_knl_Task_Module_State__readyQ readyQ; - __TA_ti_sysbios_knl_Task_Module_State__smpCurSet smpCurSet; - __TA_ti_sysbios_knl_Task_Module_State__smpCurMask smpCurMask; - __TA_ti_sysbios_knl_Task_Module_State__smpCurTask smpCurTask; - __TA_ti_sysbios_knl_Task_Module_State__smpReadyQ smpReadyQ; - __TA_ti_sysbios_knl_Task_Module_State__idleTask idleTask; - __TA_ti_sysbios_knl_Task_Module_State__constructedTasks constructedTasks; - ti_sysbios_knl_Queue_Object__ Object_field_inactiveQ; - ti_sysbios_knl_Queue_Object__ Object_field_terminatedQ; -} ti_sysbios_knl_Task_Module_State__; - -/* --> ti_sysbios_knl_Task_Module_State_0_readyQ__A */ -__T1_ti_sysbios_knl_Task_Module_State__readyQ ti_sysbios_knl_Task_Module_State_0_readyQ__A[16]; - -/* --> ti_sysbios_knl_Task_Module_State_0_idleTask__A */ -__T1_ti_sysbios_knl_Task_Module_State__idleTask ti_sysbios_knl_Task_Module_State_0_idleTask__A[1]; - -/* Module__state__V */ -ti_sysbios_knl_Task_Module_State__ ti_sysbios_knl_Task_Module__state__V; - - -/* - * ======== ti.sysbios.knl.Task_SupportProxy DECLARATIONS ======== - */ - - -/* - * ======== ti.sysbios.xdcruntime.SemThreadSupport DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.Assert DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.Core DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.Defaults DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.Diags DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.Error DECLARATIONS ======== - */ - -/* Module_State__ */ -typedef struct xdc_runtime_Error_Module_State__ { - xdc_UInt16 count; -} xdc_runtime_Error_Module_State__; - -/* Module__state__V */ -xdc_runtime_Error_Module_State__ xdc_runtime_Error_Module__state__V; - - -/* - * ======== xdc.runtime.Gate DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.HeapStd DECLARATIONS ======== - */ - -/* Module_State__ */ -typedef struct xdc_runtime_HeapStd_Module_State__ { - xdc_runtime_Memory_Size remainRTSSize; -} xdc_runtime_HeapStd_Module_State__; - -/* Module__state__V */ -xdc_runtime_HeapStd_Module_State__ xdc_runtime_HeapStd_Module__state__V; - - -/* - * ======== xdc.runtime.Log DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.Main DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.Main_Module_GateProxy DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.Memory DECLARATIONS ======== - */ - -/* Module_State__ */ -typedef struct xdc_runtime_Memory_Module_State__ { - xdc_SizeT maxDefaultTypeAlign; -} xdc_runtime_Memory_Module_State__; - -/* Module__state__V */ -xdc_runtime_Memory_Module_State__ xdc_runtime_Memory_Module__state__V; - - -/* - * ======== xdc.runtime.Memory_HeapProxy DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.Registry DECLARATIONS ======== - */ - -/* Module_State__ */ -typedef struct xdc_runtime_Registry_Module_State__ { - xdc_runtime_Registry_Desc *listHead; - xdc_runtime_Types_ModuleId curId; -} xdc_runtime_Registry_Module_State__; - -/* Module__state__V */ -xdc_runtime_Registry_Module_State__ xdc_runtime_Registry_Module__state__V; - - -/* - * ======== xdc.runtime.Startup DECLARATIONS ======== - */ - -/* Module_State__ */ -typedef struct xdc_runtime_Startup_Module_State__ { - xdc_Int *stateTab; - xdc_Bool execFlag; - xdc_Bool rtsDoneFlag; -} xdc_runtime_Startup_Module_State__; - -/* Module__state__V */ -xdc_runtime_Startup_Module_State__ xdc_runtime_Startup_Module__state__V; - -/* --> ti_sysbios_hal_Hwi_initStack */ -extern xdc_Void ti_sysbios_hal_Hwi_initStack(xdc_Void); - -/* --> xdc_runtime_Startup_firstFxns__A */ -const __T1_xdc_runtime_Startup_firstFxns xdc_runtime_Startup_firstFxns__A[6]; - -/* --> xdc_runtime_System_Module_startup__E */ -extern xdc_Int xdc_runtime_System_Module_startup__E(xdc_Int); - -/* --> xdc_runtime_SysMin_Module_startup__E */ -extern xdc_Int xdc_runtime_SysMin_Module_startup__E(xdc_Int); - -/* --> ti_sysbios_family_arm_m3_Hwi_Module_startup__E */ -extern xdc_Int ti_sysbios_family_arm_m3_Hwi_Module_startup__E(xdc_Int); - -/* --> ti_sysbios_knl_Clock_Module_startup__E */ -extern xdc_Int ti_sysbios_knl_Clock_Module_startup__E(xdc_Int); - -/* --> ti_sysbios_knl_Mailbox_Module_startup__E */ -extern xdc_Int ti_sysbios_knl_Mailbox_Module_startup__E(xdc_Int); - -/* --> ti_sysbios_knl_Swi_Module_startup__E */ -extern xdc_Int ti_sysbios_knl_Swi_Module_startup__E(xdc_Int); - -/* --> ti_sysbios_knl_Task_Module_startup__E */ -extern xdc_Int ti_sysbios_knl_Task_Module_startup__E(xdc_Int); - -/* --> ti_sysbios_hal_Hwi_Module_startup__E */ -extern xdc_Int ti_sysbios_hal_Hwi_Module_startup__E(xdc_Int); - -/* --> ti_sysbios_family_arm_lm4_TimestampProvider_Module_startup__E */ -extern xdc_Int ti_sysbios_family_arm_lm4_TimestampProvider_Module_startup__E(xdc_Int); - -/* --> ti_sysbios_family_arm_lm4_Timer_Module_startup__E */ -extern xdc_Int ti_sysbios_family_arm_lm4_Timer_Module_startup__E(xdc_Int); - -/* --> ti_sysbios_io_DEV_Module_startup__E */ -extern xdc_Int ti_sysbios_io_DEV_Module_startup__E(xdc_Int); - -/* --> xdc_runtime_Startup_sfxnTab__A */ -const __T1_xdc_runtime_Startup_sfxnTab xdc_runtime_Startup_sfxnTab__A[11]; - -/* --> xdc_runtime_Startup_sfxnRts__A */ -const __T1_xdc_runtime_Startup_sfxnRts xdc_runtime_Startup_sfxnRts__A[11]; - - -/* - * ======== xdc.runtime.SysMin DECLARATIONS ======== - */ - -/* Module_State__ */ -typedef struct xdc_runtime_SysMin_Module_State__ { - __TA_xdc_runtime_SysMin_Module_State__outbuf outbuf; - xdc_UInt outidx; - xdc_Bool wrapped; -} xdc_runtime_SysMin_Module_State__; - -/* --> xdc_runtime_SysMin_Module_State_0_outbuf__A */ -__T1_xdc_runtime_SysMin_Module_State__outbuf xdc_runtime_SysMin_Module_State_0_outbuf__A[1024]; - -/* Module__state__V */ -xdc_runtime_SysMin_Module_State__ xdc_runtime_SysMin_Module__state__V; - -/* --> xdc_runtime_SysMin_output__I */ -extern xdc_Void xdc_runtime_SysMin_output__I(xdc_Char*,xdc_UInt); - - -/* - * ======== xdc.runtime.System DECLARATIONS ======== - */ - -/* Module_State__ */ -typedef struct xdc_runtime_System_Module_State__ { - __TA_xdc_runtime_System_Module_State__atexitHandlers atexitHandlers; - xdc_Int numAtexitHandlers; -} xdc_runtime_System_Module_State__; - -/* --> xdc_runtime_System_Module_State_0_atexitHandlers__A */ -__T1_xdc_runtime_System_Module_State__atexitHandlers xdc_runtime_System_Module_State_0_atexitHandlers__A[2]; - -/* Module__state__V */ -xdc_runtime_System_Module_State__ xdc_runtime_System_Module__state__V; - -/* --> xdc_runtime_System_printfExtend__I */ -extern xdc_Int xdc_runtime_System_printfExtend__I(xdc_Char**,xdc_CString*,xdc_VaList*,xdc_runtime_System_ParseData*); - - -/* - * ======== xdc.runtime.System_Module_GateProxy DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.System_SupportProxy DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.Text DECLARATIONS ======== - */ - -/* Module_State__ */ -typedef struct xdc_runtime_Text_Module_State__ { - xdc_Ptr charBase; - xdc_Ptr nodeBase; -} xdc_runtime_Text_Module_State__; - -/* Module__state__V */ -xdc_runtime_Text_Module_State__ xdc_runtime_Text_Module__state__V; - -/* --> xdc_runtime_Text_charTab__A */ -const __T1_xdc_runtime_Text_charTab xdc_runtime_Text_charTab__A[6893]; - -/* --> xdc_runtime_Text_nodeTab__A */ -const __T1_xdc_runtime_Text_nodeTab xdc_runtime_Text_nodeTab__A[65]; - - -/* - * ======== xdc.runtime.Timestamp DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.Timestamp_SupportProxy DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.knl.SemThread DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.knl.SemThread_Proxy DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.knl.Sync DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.knl.SyncGeneric DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.knl.SyncNull DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.knl.SyncSemThread DECLARATIONS ======== - */ - - -/* - * ======== xdc.runtime.knl.Sync_Proxy DECLARATIONS ======== - */ - - -/* - * ======== OBJECT OFFSETS ======== - */ - -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Instance_State_sem__O, ".const:ti_sysbios_gates_GateMutex_Instance_State_sem__O"); -__FAR__ const xdc_SizeT ti_sysbios_gates_GateMutex_Instance_State_sem__O = offsetof(ti_sysbios_gates_GateMutex_Object__, Object_field_sem); - - -/* - * ======== OBJECT OFFSETS ======== - */ - -#pragma DATA_SECTION(ti_sysbios_io_GIO_Instance_State_doneList__O, ".const:ti_sysbios_io_GIO_Instance_State_doneList__O"); -__FAR__ const xdc_SizeT ti_sysbios_io_GIO_Instance_State_doneList__O = offsetof(ti_sysbios_io_GIO_Object__, Object_field_doneList); -#pragma DATA_SECTION(ti_sysbios_io_GIO_Instance_State_freeList__O, ".const:ti_sysbios_io_GIO_Instance_State_freeList__O"); -__FAR__ const xdc_SizeT ti_sysbios_io_GIO_Instance_State_freeList__O = offsetof(ti_sysbios_io_GIO_Object__, Object_field_freeList); - - -/* - * ======== OBJECT OFFSETS ======== - */ - -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Module_State_clockQ__O, ".const:ti_sysbios_knl_Clock_Module_State_clockQ__O"); -__FAR__ const xdc_SizeT ti_sysbios_knl_Clock_Module_State_clockQ__O = offsetof(ti_sysbios_knl_Clock_Module_State__, Object_field_clockQ); - - -/* - * ======== OBJECT OFFSETS ======== - */ - -#pragma DATA_SECTION(ti_sysbios_knl_Event_Instance_State_pendQ__O, ".const:ti_sysbios_knl_Event_Instance_State_pendQ__O"); -__FAR__ const xdc_SizeT ti_sysbios_knl_Event_Instance_State_pendQ__O = offsetof(ti_sysbios_knl_Event_Object__, Object_field_pendQ); - - -/* - * ======== OBJECT OFFSETS ======== - */ - -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Instance_State_dataQue__O, ".const:ti_sysbios_knl_Mailbox_Instance_State_dataQue__O"); -__FAR__ const xdc_SizeT ti_sysbios_knl_Mailbox_Instance_State_dataQue__O = offsetof(ti_sysbios_knl_Mailbox_Object__, Object_field_dataQue); -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Instance_State_freeQue__O, ".const:ti_sysbios_knl_Mailbox_Instance_State_freeQue__O"); -__FAR__ const xdc_SizeT ti_sysbios_knl_Mailbox_Instance_State_freeQue__O = offsetof(ti_sysbios_knl_Mailbox_Object__, Object_field_freeQue); -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Instance_State_dataSem__O, ".const:ti_sysbios_knl_Mailbox_Instance_State_dataSem__O"); -__FAR__ const xdc_SizeT ti_sysbios_knl_Mailbox_Instance_State_dataSem__O = offsetof(ti_sysbios_knl_Mailbox_Object__, Object_field_dataSem); -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Instance_State_freeSem__O, ".const:ti_sysbios_knl_Mailbox_Instance_State_freeSem__O"); -__FAR__ const xdc_SizeT ti_sysbios_knl_Mailbox_Instance_State_freeSem__O = offsetof(ti_sysbios_knl_Mailbox_Object__, Object_field_freeSem); - - -/* - * ======== OBJECT OFFSETS ======== - */ - -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Instance_State_pendQ__O, ".const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O"); -__FAR__ const xdc_SizeT ti_sysbios_knl_Semaphore_Instance_State_pendQ__O = offsetof(ti_sysbios_knl_Semaphore_Object__, Object_field_pendQ); - - -/* - * ======== OBJECT OFFSETS ======== - */ - -#pragma DATA_SECTION(ti_sysbios_knl_Task_Module_State_inactiveQ__O, ".const:ti_sysbios_knl_Task_Module_State_inactiveQ__O"); -__FAR__ const xdc_SizeT ti_sysbios_knl_Task_Module_State_inactiveQ__O = offsetof(ti_sysbios_knl_Task_Module_State__, Object_field_inactiveQ); -#pragma DATA_SECTION(ti_sysbios_knl_Task_Module_State_terminatedQ__O, ".const:ti_sysbios_knl_Task_Module_State_terminatedQ__O"); -__FAR__ const xdc_SizeT ti_sysbios_knl_Task_Module_State_terminatedQ__O = offsetof(ti_sysbios_knl_Task_Module_State__, Object_field_terminatedQ); - - -/* - * ======== OBJECT OFFSETS ======== - */ - -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Instance_State_sem__O, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Instance_State_sem__O"); -__FAR__ const xdc_SizeT ti_sysbios_xdcruntime_SemThreadSupport_Instance_State_sem__O = offsetof(ti_sysbios_xdcruntime_SemThreadSupport_Object__, Object_field_sem); - - -/* - * ======== xdc.cfg.Program TEMPLATE ======== - */ - -/* - * ======== __ASM__ ======== - * Define absolute path prefix for this executable's - * configuration generated files. - */ -xdc__META(__ASM__, "@(#)__ASM__ = C:/Tango/Software/Embedded_SW/Embedded/debug_w_pmr/configPkg/package/cfg/Embedded_pem4f"); - -/* - * ======== __ISA__ ======== - * Define the ISA of this executable. This symbol is used by platform - * specific "exec" commands that support more than one ISA; e.g., gdb - */ -xdc__META(__ISA__, "@(#)__ISA__ = v7M4"); - -/* - * ======== __PLAT__ ======== - * Define the name of the platform that can run this executable. This - * symbol is used by platform independent "exec" commands - */ -xdc__META(__PLAT__, "@(#)__PLAT__ = ti.platforms.tiva"); - -/* - * ======== __TARG__ ======== - * Define the name of the target used to build this executable. - */ -xdc__META(__TARG__, "@(#)__TARG__ = ti.targets.arm.elf.M4F"); - -/* - * ======== __TRDR__ ======== - * Define the name of the class that can read/parse this executable. - */ -xdc__META(__TRDR__, "@(#)__TRDR__ = ti.targets.omf.elf.Elf32"); - - -/* - * ======== xdc.cfg.SourceDir TEMPLATE ======== - */ - - - -/* - * ======== ti.platforms.tiva.Platform TEMPLATE ======== - */ - - - -/* - * ======== xdc.runtime.Diags TEMPLATE ======== - */ - - - -/* - * ======== xdc.runtime.Startup TEMPLATE ======== - */ - -/* - * ======== MODULE STARTUP DONE FUNCTIONS ======== - */ -xdc_Bool xdc_runtime_System_Module__startupDone__F(void) { - return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[0] < 0; -} -xdc_Bool xdc_runtime_SysMin_Module__startupDone__F(void) { - return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[1] < 0; -} -xdc_Bool ti_sysbios_family_arm_m3_Hwi_Module__startupDone__F(void) { - return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[2] < 0; -} -xdc_Bool ti_sysbios_knl_Clock_Module__startupDone__F(void) { - return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[3] < 0; -} -xdc_Bool ti_sysbios_knl_Mailbox_Module__startupDone__F(void) { - return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[4] < 0; -} -xdc_Bool ti_sysbios_knl_Swi_Module__startupDone__F(void) { - return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[5] < 0; -} -xdc_Bool ti_sysbios_knl_Task_Module__startupDone__F(void) { - return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[6] < 0; -} -xdc_Bool ti_sysbios_hal_Hwi_Module__startupDone__F(void) { - return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[7] < 0; -} -xdc_Bool ti_sysbios_family_arm_lm4_TimestampProvider_Module__startupDone__F(void) { - return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[8] < 0; -} -xdc_Bool ti_sysbios_family_arm_lm4_Timer_Module__startupDone__F(void) { - return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[9] < 0; -} -xdc_Bool ti_sysbios_io_DEV_Module__startupDone__F(void) { - return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[10] < 0; -} - - -/* - * Startup_exec__I is an internal entry point called by target/platform - * boot code. Boot code is not brought into a partial-link assembly. So, - * without this pragma, whole program optimizers would otherwise optimize-out - * this function. - */ -#ifdef __ti__ -#pragma FUNC_EXT_CALLED(xdc_runtime_Startup_exec__I); -#endif - -#ifdef __GNUC__ -#if __GNUC__ >= 4 -xdc_Void xdc_runtime_Startup_exec__I(void) __attribute__ ((externally_visible)); -#endif -#endif - -/* - * ======== xdc_runtime_Startup_exec__I ======== - * Initialize all used modules that have startup functions - */ -xdc_Void xdc_runtime_Startup_exec__I(void) -{ - xdc_Int state[11]; - xdc_runtime_Startup_startModsFxn__C(state, 11); -} - -/* - * ======== xdc.runtime.Reset TEMPLATE ======== - */ - -/* - * Startup_reset__I is an internal entry point called by target/platform - * boot code. Boot code is not brought into a partial-link assembly. So, - * without this pragma, whole program optimizers would otherwise optimize-out - * this function. - */ -#ifdef __ti__ -#pragma FUNC_EXT_CALLED(xdc_runtime_Startup_reset__I); -#endif - -#ifdef __GNUC__ -#if __GNUC__ >= 4 -xdc_Void xdc_runtime_Startup_reset__I(void) __attribute__ ((externally_visible)); -#endif -#endif - - -/* - * ======== xdc_runtime_Startup_reset__I ======== - * This function is called by bootstrap initialization code as early as - * possible in the startup process. This function calls all functions in - * the Reset.fxns array _as well as_ Startup.resetFxn (if it's non-NULL) - */ -xdc_Void xdc_runtime_Startup_reset__I(void) -{ -} - -/* - * ======== xdc.runtime.System TEMPLATE ======== - */ - - -#include <xdc/std.h> -#include <limits.h> -#include <xdc/runtime/Types.h> -#include <xdc/runtime/Text.h> -#include <xdc/runtime/Assert.h> - -#include <xdc/runtime/System.h> -#include <xdc/runtime/System__internal.h> - -/* - * ======== System_printfExtend__I ======== - * This function processes optional extended formats of printf. - * - * It returns the number of characters added to the result. - * - * Precision (maximum string length) is not supported for %$S. - * - * Right-justified (which is default) minimum width is not supported - * for %$L, %$S, or %$F. - */ -xdc_Int xdc_runtime_System_printfExtend__I(xdc_Char **pbuf, xdc_CString *pfmt, - xdc_VaList *pva, xdc_runtime_System_ParseData *parse) -{ - xdc_CString fmt = *pfmt; - xdc_Int res; - xdc_Char c; - xdc_Bool found = FALSE; - - /* - * Create a local variable 'va' to ensure that the dereference of - * pva only occurs once. - */ - va_list va = *pva; - - res = 0; - - c = *fmt++; - *pfmt = *pfmt + 1; - - - if (c == '$') { - c = *fmt++; - *pfmt = *pfmt + 1; - - if (c == 'L') { - xdc_runtime_Types_Label *lab = parse->aFlag ? - (xdc_runtime_Types_Label *)xdc_iargToPtr(va_arg(va, xdc_IArg)) : - (xdc_runtime_Types_Label *)va_arg(va, void *); - - /* - * Call Text_putLab to write out the label, taking the precision - * into account. - */ - res = xdc_runtime_Text_putLab(lab, pbuf, parse->precis); - - /* - * Set the length to 0 to indicate to 'doPrint' that nothing should - * be copied from parse.ptr. - */ - parse->len = 0; - - /* Update the minimum width field. */ - parse->width -= res; - - found = TRUE; - } - - if (c == 'F') { - xdc_runtime_Types_Site site; - - /* Retrieve the file name string from the argument list */ - site.file = parse->aFlag ? (xdc_Char *) xdc_iargToPtr(va_arg(va, xdc_IArg)) : - (xdc_Char *) va_arg(va, xdc_Char *); - - /* Retrieve the line number from the argument list. */ - site.line = parse->aFlag ? (xdc_Int) va_arg(va, xdc_IArg) : - (xdc_Int) va_arg(va, xdc_Int); - - /* - * Omit the 'mod' field, set it to 0. - * '0' is a safe sentinel value - the IDs for named modules are - * 0x8000 and higher, and the IDs for unnamed modules go from 0x1 - * to 0x7fff. - */ - site.mod = 0; - - /* - * Call putSite to format the file and line number. - * If a precision was specified, it will be used as the maximum - * string lengrth. - */ - res = xdc_runtime_Text_putSite(&site, pbuf, parse->precis); - - /* - * Set the length to 0 to indicate to 'doPrint' that nothing should - * be copied from parse.ptr. - */ - parse->len = 0; - - /* Update the minimum width field */ - parse->width -= res; - - found = TRUE; - } - - if (c == 'S') { - /* Retrieve the format string from the argument list */ - parse->ptr = parse->aFlag ? - (xdc_Char *) xdc_iargToPtr(va_arg(va, xdc_IArg)) : - (xdc_Char *) va_arg(va, xdc_Char *); - - /* Update pva before passing it to doPrint. */ - *pva = va; - - /* Perform the recursive format. System_doPrint does not advance - * the buffer pointer, so it has to be done explicitly. - */ - res = xdc_runtime_System_doPrint__I(*pbuf, parse->precis, - parse->ptr, pva, parse->aFlag); - - if (*pbuf) { - *pbuf += res; - } - - /* Update the temporary variable with any changes to *pva */ - va = *pva; - - /* - * Set the length to 0 to indicate to 'doPrint' that nothing should - * be copied from parse.ptr - */ - parse->len = 0; - - /* Update the minimum width field */ - parse->width -= res; - - /* Indicate that we were able to interpret the specifier */ - found = TRUE; - } - - } - - if (c == 'f') { - /* support arguments _after_ optional float support */ - if (parse->aFlag) { - (void)va_arg(va, xdc_IArg); - } - else { - (void)va_arg(va, double); - } - } - - if (found == FALSE) { - /* other character (like %) copy to output */ - *(parse->ptr) = c; - parse->len = 1; - } - - /* - * Before returning, we must update the value of pva. We use a label here - * so that all return points will go through this update. - * The 'goto end' is here to ensure that there is always a reference to the - * label (to avoid the compiler complaining). - */ - goto end; -end: - *pva = va; - return (res); -} - -/* - * ======== xdc.runtime.SysMin TEMPLATE ======== - */ - - -#if defined(__ti__) -extern int HOSTwrite(int, const char *, unsigned); -#elif (defined(gnu_targets_STD_) && defined(xdc_target__os_undefined)) -extern int _write(int, char *, int); -#define HOSTwrite(x,y,z) _write((int)(x),(char *)(y),(int)(z)) -#elif defined(__IAR_SYSTEMS_ICC__) -#include <yfuns.h> -#define HOSTwrite(x,y,z) __write((x),(unsigned char *)(y),(z)) -#else -#include <stdio.h> -#endif - -/* - * ======== SysMin_output__I ======== - * HOSTWrite only writes a max of N chars at a time. The amount it writes - * is returned. This function loops until the entire buffer is written. - * Being a static function allows it to conditionally compile out. - */ -xdc_Void xdc_runtime_SysMin_output__I(xdc_Char *buf, xdc_UInt size) -{ -#if defined(__ti__) || (defined(gnu_targets_STD_) && defined(xdc_target__os_undefined)) || defined (__IAR_SYSTEMS_ICC__) - xdc_Int printCount; - - while (size != 0) { - printCount = HOSTwrite(1, buf, size); - if ((printCount <= 0) || (printCount > size)) { - break; /* ensure we never get stuck in an infinite loop */ - } - size -= printCount; - buf = buf + printCount; - } -#else - fwrite(buf, 1, size, stdout); -#endif -} - -/* - * ======== xdc.runtime.Text TEMPLATE ======== - */ - - -/* - * ======== xdc_runtime_Text_visitRope__I ======== - * This function is indirectly called within Text.c through - * the visitRopeFxn configuration parameter of xdc.runtime.Text. - */ -void xdc_runtime_Text_visitRope__I(xdc_runtime_Text_RopeId rope, - xdc_Fxn visFxn, xdc_Ptr visState) -{ - xdc_String stack[7]; - xdc_runtime_Text_visitRope2__I(rope, visFxn, visState, stack); -} - - -/* - * ======== ti.catalog.arm.cortexm4.tiva.ce.Boot TEMPLATE ======== - */ - -#if defined(__ti__) -#pragma CODE_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_init, ".text:.bootCodeSection") -#endif - -/* - * ======== ti_catalog_arm_cortexm4_tiva_ce_Boot_init ======== - */ -xdc_Void ti_catalog_arm_cortexm4_tiva_ce_Boot_init() -{ - ti_catalog_arm_cortexm4_tiva_ce_Boot_sysCtlClockFreqSet((xdc_ULong) - (-251656576), (xdc_ULong)(120000000)); -} - - -/* - * ======== ti.sysbios.BIOS TEMPLATE ======== - */ - - -Void ti_sysbios_BIOS_atExitFunc__I(Int); - -extern Void ti_sysbios_BIOS_registerRTSLock(); -extern Void ti_mw_fatfs_startup(); -extern Void ti_sysbios_family_arm_lm4_Timer_startup__E(); - -Void ti_sysbios_BIOS_startFunc__I() -{ - xdc_runtime_System_atexit( - (xdc_runtime_System_AtexitHandler)ti_sysbios_BIOS_atExitFunc__I); - ti_sysbios_BIOS_registerRTSLock(); - ti_mw_fatfs_startup(); - ti_sysbios_family_arm_lm4_Timer_startup__E(); - ti_sysbios_hal_Hwi_startup(); - ti_sysbios_knl_Swi_startup(); - ti_sysbios_knl_Task_startup(); -} - -#include <_lock.h> - -Void ti_sysbios_BIOS_atExitFunc__I(Int notused) -{ - ti_sysbios_knl_Swi_disable(); - ti_sysbios_knl_Task_disable(); - ti_sysbios_BIOS_setThreadType(ti_sysbios_BIOS_ThreadType_Main); - - if ((&ti_sysbios_BIOS_Module__state__V)->rtsGate != NULL) { - _register_lock(_nop); - _register_unlock(_nop); - } -} - -/* - * ======== BIOS_rtsLock ======== - * Called by rts _lock() function - */ -Void ti_sysbios_BIOS_rtsLock() -{ - IArg key; - - key = ti_sysbios_BIOS_RtsGateProxy_enter((&ti_sysbios_BIOS_Module__state__V)->rtsGate); - if ((&ti_sysbios_BIOS_Module__state__V)->rtsGateCount == 0) { - (&ti_sysbios_BIOS_Module__state__V)->rtsGateKey = key; - } - /* Increment need not be atomic */ - (&ti_sysbios_BIOS_Module__state__V)->rtsGateCount++; -} - -/* - * ======== BIOS_rtsUnLock ======== - * Called by rts _unlock() function - */ -Void ti_sysbios_BIOS_rtsUnlock() -{ - xdc_runtime_Assert_isTrue(((&ti_sysbios_BIOS_Module__state__V)->rtsGateCount), NULL); - - (&ti_sysbios_BIOS_Module__state__V)->rtsGateCount--; - - if ((&ti_sysbios_BIOS_Module__state__V)->rtsGateCount == 0) { - ti_sysbios_BIOS_RtsGateProxy_leave((&ti_sysbios_BIOS_Module__state__V)->rtsGate, (&ti_sysbios_BIOS_Module__state__V)->rtsGateKey); - } -} - -/* - * ======== BIOS_nullFunc ======== - */ -Void ti_sysbios_BIOS_nullFunc__I() -{ -} - -/* - * ======== BIOS_registerRTSLock ======== - */ -Void ti_sysbios_BIOS_registerRTSLock(Void) -{ - if ((&ti_sysbios_BIOS_Module__state__V)->rtsGate != NULL) { - _register_lock(ti_sysbios_BIOS_rtsLock); - _register_unlock(ti_sysbios_BIOS_rtsUnlock); - } -} - -/* - * ======== BIOS_removeRTSLock ======== - */ -Void ti_sysbios_BIOS_removeRTSLock(Void) -{ - if ((&ti_sysbios_BIOS_Module__state__V)->rtsGate != NULL) { - _register_lock(ti_sysbios_BIOS_nullFunc); - _register_unlock(ti_sysbios_BIOS_nullFunc); - } -} - -/* - * ======== BIOS_exitFunc ======== - */ -Void ti_sysbios_BIOS_exitFunc(Int stat) -{ - /* remove the RTS lock */ - ti_sysbios_BIOS_removeRTSLock(); - - /* force thread type to 'Main' */ - ti_sysbios_BIOS_setThreadType(ti_sysbios_BIOS_ThreadType_Main); - - xdc_runtime_System_exit(stat); -} - -/* - * ======== BIOS_errorRaiseHook ======== - */ -Void ti_sysbios_BIOS_errorRaiseHook(xdc_runtime_Error_Block *eb) -{ - /* - * If this is an Assert thread, defang Gate threadtype check - */ - if (eb->id == xdc_runtime_Assert_E_assertFailed) { - /* remove the RTS lock */ - ti_sysbios_BIOS_removeRTSLock(); - /* force thread type to 'Main' */ - ti_sysbios_BIOS_setThreadType(ti_sysbios_BIOS_ThreadType_Main); - } - - /* Call the installed Error.raiseHook */ - ti_sysbios_BIOS_installedErrorHook(eb); -} - -/* - * ======== ti.sysbios.Build TEMPLATE ======== - */ - - -/* - * ======== ti.sysbios.family.arm.m3.Hwi TEMPLATE ======== - */ - -extern Void _c_int00(); -extern Void ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I(); -extern Void ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I(); -extern Void ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I(); -extern Void ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I(); -extern Void ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I(); -extern Void ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I(); -extern Void ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I(); -extern Void ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I(); - - -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_resetVectors, ".resetVecs"); - -/* const because it is meant to be placed in ROM */ -const UInt32 ti_sysbios_family_arm_m3_Hwi_resetVectors[] = { - (UInt32)(&__TI_STACK_BASE), - (UInt32)(&_c_int00), - (UInt32)(&ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I), /* NMI */ - (UInt32)(&ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I), /* Hard Fault */ - (UInt32)(&ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I), /* Mem Fault */ - (UInt32)(&ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I), /* Bus Fault */ - (UInt32)(&ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I), /* Usage Fault */ - (UInt32)(&ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I), /* reserved */ - (UInt32)(&ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I), /* reserved */ - (UInt32)(&ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I), /* reserved */ - (UInt32)(&ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I), /* reserved */ - (UInt32)(&ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I), /* SVCall */ - (UInt32)(&ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I), /* Debug Mon */ - (UInt32)(&ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I), /* reserved */ - (UInt32)(&ti_sysbios_family_arm_m3_Hwi_pendSV__I), /* pendSV */ -}; - -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_ramVectors, ".vecs"); - -/* place holder for RAM vector table */ -UInt32 ti_sysbios_family_arm_m3_Hwi_ramVectors[216]; - -UInt32 ti_sysbios_family_arm_m3_Hwi_dispatchTable[216]; - -#if defined(__IAR_SYSTEMS_ICC__) -Void ti_sysbios_family_arm_m3_Hwi_initIsrStackSize() -{ - #pragma section = "CSTACK" - ti_sysbios_family_arm_m3_Hwi_Module__state__V.isrStackSize = (SizeT)__section_size("CSTACK"); -} -#endif - -/* - * ======== ti.sysbios.knl.Clock TEMPLATE ======== - */ - -Void ti_sysbios_knl_Clock_doTick__I(UArg arg) -{ - /* update system time */ - (&ti_sysbios_knl_Clock_Module__state__V)->ticks++; - - ti_sysbios_knl_Clock_logTick__E(); - - if (!ti_sysbios_knl_Queue_empty(ti_sysbios_knl_Clock_Module_State_clockQ())) { - (&ti_sysbios_knl_Clock_Module__state__V)->swiCount++; - - ti_sysbios_knl_Swi_post((&ti_sysbios_knl_Clock_Module__state__V)->swi); - } -} - -/* - * ======== ti.sysbios.knl.Task TEMPLATE ======== - */ - - - -/* - * ======== ti.sysbios.hal.Seconds TEMPLATE ======== - */ - - - -#if defined(__ti__) - -#pragma FUNC_EXT_CALLED(time); - -#define ATTRIBUTE - -#elif defined(__IAR_SYSTEMS_ICC__) - -#define ATTRIBUTE -#define _NO_DEFINITIONS_IN_HEADER_FILES 1 -#else - -#define ATTRIBUTE __attribute__ ((used)) - -#endif - -#include <xdc/std.h> -#include <ti/sysbios/hal/Seconds.h> - -#include <time.h> - -/* - * ======== time ======== - */ -time_t ATTRIBUTE time(time_t *tout) -{ - UInt32 t; - - /* Seconds_get() returns number of seconds since Jan 1, 1970 00:00:00 GMT. */ - t = ti_sysbios_hal_Seconds_get(); - -#if defined(__ti__) - /* - * TI time() function returns seconds since 1900, so add the number - * of seconds from 1900 to 1970 (2208988800). - */ - t += 2208988800; -#endif - - if (tout) { - *tout = t; - } - - return (t); -} - -/* - * ======== ti.mw.fatfs.FatFS TEMPLATE ======== - */ - - -#include <stdio.h> - -#ifdef __ti__ -#include <file.h> -#endif - -#include <string.h> - -#include <xdc/runtime/Error.h> - -#include <ti/mw/fatfs/ff.h> -#include <ti/mw/fatfs/ffcio.h> -#include <ti/mw/fatfs/diskio.h> - -extern DRESULT ramdisk_start(BYTE, unsigned char *, int, int); - -/* - * ======== ti_mw_fatfs_startup ======== - */ -Void ti_mw_fatfs_startup() -{ -#ifdef __ti__ - add_device("fat", _MSA, ffcio_open, ffcio_close, ffcio_read, - ffcio_write, ffcio_lseek, ffcio_unlink, ffcio_rename); -#endif -} - - -#if defined(__IAR_SYSTEMS_ICC__) -/* - * Prevent time() macro in time.h from being used instead of our - * generated time() function. - */ -#define _NO_DEFINITIONS_IN_HEADER_FILES 1 -#endif - -#include <time.h> - -#if defined(__IAR_SYSTEMS_ICC__) -#undef _NO_DEFINITIONS_IN_HEADER_FILES -#endif - -#include <ti/mw/fatfs/ff.h> - -/* - * ======== fatfs_getFatTime ======== - */ -Int32 ti_mw_fatfs_getFatTime(Void) -{ - time_t seconds; - UInt32 fatTime; - struct tm *pTime; - - seconds = time(NULL); - - pTime = localtime(&seconds); - - /* - * localtime() sets pTime->tm_year to number of years - * since 1900, so subtract 80 from tm_year to get FAT time - * offset from 1980. - */ - fatTime = ((UInt32)(pTime->tm_year - 80) << 25) | - ((UInt32)(pTime->tm_mon) << 21) | - ((UInt32)(pTime->tm_mday) << 16) | - ((UInt32)(pTime->tm_hour) << 11) | - ((UInt32)(pTime->tm_min) << 5) | - ((UInt32)(pTime->tm_sec) >> 1); - - return ((Int32)fatTime); -} - -/* - * ======== ti.sysbios.rts.MemAlloc TEMPLATE ======== - */ - - - -/* - * ======== ti.catalog.arm.cortexm4.tiva.ce.Boot INITIALIZERS ======== - */ - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__diagsEnabled__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__diagsEnabled__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__diagsEnabled ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__diagsIncluded__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__diagsIncluded__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__diagsIncluded ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__diagsMask__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__diagsMask__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__diagsMask ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__diagsMask__C = ((CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__gateObj__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__gateObj__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__gateObj ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__gateObj__C = ((CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__gatePrms__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__gatePrms__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__gatePrms ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__gatePrms__C = ((CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__id__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__id__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__id ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__id__C = (xdc_Bits16)0x8017; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerDefined__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerDefined__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerDefined ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerObj__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerObj__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerObj ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerObj__C = ((CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn0__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn0__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn0 ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn0__C = ((CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn1__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn1__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn1 ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn1__C = ((CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn2__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn2__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn2 ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn2__C = ((CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn4__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn4__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn4 ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn4__C = ((CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn8__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn8__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn8 ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn8__C = ((CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__startupDoneFxn__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__startupDoneFxn ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__startupDoneFxn__C = ((CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Object__count__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Object__count__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Object__count ti_catalog_arm_cortexm4_tiva_ce_Boot_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Object__heap__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Object__heap__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Object__heap ti_catalog_arm_cortexm4_tiva_ce_Boot_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Object__sizeof__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Object__sizeof__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Object__sizeof ti_catalog_arm_cortexm4_tiva_ce_Boot_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_Object__table__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_Object__table__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_Object__table ti_catalog_arm_cortexm4_tiva_ce_Boot_Object__table__C = 0; - -/* A_mustUseEnhancedClockMode__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_A_mustUseEnhancedClockMode__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_A_mustUseEnhancedClockMode__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_A_mustUseEnhancedClockMode ti_catalog_arm_cortexm4_tiva_ce_Boot_A_mustUseEnhancedClockMode__C = (((xdc_runtime_Assert_Id)400) << 16 | 16); - -/* A_mustNotUseEnhancedClockMode__C */ -#pragma DATA_SECTION(ti_catalog_arm_cortexm4_tiva_ce_Boot_A_mustNotUseEnhancedClockMode__C, ".const:ti_catalog_arm_cortexm4_tiva_ce_Boot_A_mustNotUseEnhancedClockMode__C"); -__FAR__ const CT__ti_catalog_arm_cortexm4_tiva_ce_Boot_A_mustNotUseEnhancedClockMode ti_catalog_arm_cortexm4_tiva_ce_Boot_A_mustNotUseEnhancedClockMode__C = (((xdc_runtime_Assert_Id)474) << 16 | 16); - - -/* - * ======== ti.sysbios.BIOS INITIALIZERS ======== - */ - -/* Module__state__V */ -#if defined (__ICCARM__) -#pragma location = ".data_ti_sysbios_BIOS_Module__state__V" -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -ti_sysbios_BIOS_Module_State__ ti_sysbios_BIOS_Module__state__V __attribute__ ((section(".data_ti_sysbios_BIOS_Module__state__V"))); -#endif -#endif -ti_sysbios_BIOS_Module_State__ ti_sysbios_BIOS_Module__state__V = { - { - (xdc_Bits32)0x0, /* hi */ - (xdc_Bits32)0x7270e00, /* lo */ - }, /* cpuFreq */ - (xdc_UInt)0x0, /* rtsGateCount */ - ((xdc_IArg)(0x0)), /* rtsGateKey */ - (ti_sysbios_BIOS_RtsGateProxy_Handle)&ti_sysbios_gates_GateMutex_Object__table__V[1], /* rtsGate */ - ti_sysbios_BIOS_ThreadType_Main, /* threadType */ - ((void*)0), /* smpThreadType */ - ((xdc_Void(*)(xdc_Void))((xdc_Fxn)ti_sysbios_BIOS_startFunc)), /* startFunc */ - ((xdc_Void(*)(xdc_Int))((xdc_Fxn)ti_sysbios_BIOS_exitFunc)), /* exitFunc */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Module__diagsEnabled__C, ".const:ti_sysbios_BIOS_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_BIOS_Module__diagsEnabled ti_sysbios_BIOS_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Module__diagsIncluded__C, ".const:ti_sysbios_BIOS_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_BIOS_Module__diagsIncluded ti_sysbios_BIOS_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Module__diagsMask__C, ".const:ti_sysbios_BIOS_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_BIOS_Module__diagsMask ti_sysbios_BIOS_Module__diagsMask__C = ((CT__ti_sysbios_BIOS_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Module__gateObj__C, ".const:ti_sysbios_BIOS_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_BIOS_Module__gateObj ti_sysbios_BIOS_Module__gateObj__C = ((CT__ti_sysbios_BIOS_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Module__gatePrms__C, ".const:ti_sysbios_BIOS_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_BIOS_Module__gatePrms ti_sysbios_BIOS_Module__gatePrms__C = ((CT__ti_sysbios_BIOS_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Module__id__C, ".const:ti_sysbios_BIOS_Module__id__C"); -__FAR__ const CT__ti_sysbios_BIOS_Module__id ti_sysbios_BIOS_Module__id__C = (xdc_Bits16)0x8019; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Module__loggerDefined__C, ".const:ti_sysbios_BIOS_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_BIOS_Module__loggerDefined ti_sysbios_BIOS_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Module__loggerObj__C, ".const:ti_sysbios_BIOS_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_BIOS_Module__loggerObj ti_sysbios_BIOS_Module__loggerObj__C = ((CT__ti_sysbios_BIOS_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Module__loggerFxn0__C, ".const:ti_sysbios_BIOS_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_BIOS_Module__loggerFxn0 ti_sysbios_BIOS_Module__loggerFxn0__C = ((CT__ti_sysbios_BIOS_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Module__loggerFxn1__C, ".const:ti_sysbios_BIOS_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_BIOS_Module__loggerFxn1 ti_sysbios_BIOS_Module__loggerFxn1__C = ((CT__ti_sysbios_BIOS_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Module__loggerFxn2__C, ".const:ti_sysbios_BIOS_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_BIOS_Module__loggerFxn2 ti_sysbios_BIOS_Module__loggerFxn2__C = ((CT__ti_sysbios_BIOS_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Module__loggerFxn4__C, ".const:ti_sysbios_BIOS_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_BIOS_Module__loggerFxn4 ti_sysbios_BIOS_Module__loggerFxn4__C = ((CT__ti_sysbios_BIOS_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Module__loggerFxn8__C, ".const:ti_sysbios_BIOS_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_BIOS_Module__loggerFxn8 ti_sysbios_BIOS_Module__loggerFxn8__C = ((CT__ti_sysbios_BIOS_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Module__startupDoneFxn__C, ".const:ti_sysbios_BIOS_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_BIOS_Module__startupDoneFxn ti_sysbios_BIOS_Module__startupDoneFxn__C = ((CT__ti_sysbios_BIOS_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Object__count__C, ".const:ti_sysbios_BIOS_Object__count__C"); -__FAR__ const CT__ti_sysbios_BIOS_Object__count ti_sysbios_BIOS_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Object__heap__C, ".const:ti_sysbios_BIOS_Object__heap__C"); -__FAR__ const CT__ti_sysbios_BIOS_Object__heap ti_sysbios_BIOS_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Object__sizeof__C, ".const:ti_sysbios_BIOS_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_BIOS_Object__sizeof ti_sysbios_BIOS_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_Object__table__C, ".const:ti_sysbios_BIOS_Object__table__C"); -__FAR__ const CT__ti_sysbios_BIOS_Object__table ti_sysbios_BIOS_Object__table__C = 0; - -/* smpEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_smpEnabled__C, ".const:ti_sysbios_BIOS_smpEnabled__C"); -__FAR__ const CT__ti_sysbios_BIOS_smpEnabled ti_sysbios_BIOS_smpEnabled__C = 0; - -/* cpuFreq__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_cpuFreq__C, ".const:ti_sysbios_BIOS_cpuFreq__C"); -__FAR__ const CT__ti_sysbios_BIOS_cpuFreq ti_sysbios_BIOS_cpuFreq__C = { - (xdc_Bits32)0x0, /* hi */ - (xdc_Bits32)0x7270e00, /* lo */ -}; - -/* runtimeCreatesEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_runtimeCreatesEnabled__C, ".const:ti_sysbios_BIOS_runtimeCreatesEnabled__C"); -__FAR__ const CT__ti_sysbios_BIOS_runtimeCreatesEnabled ti_sysbios_BIOS_runtimeCreatesEnabled__C = 1; - -/* taskEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_taskEnabled__C, ".const:ti_sysbios_BIOS_taskEnabled__C"); -__FAR__ const CT__ti_sysbios_BIOS_taskEnabled ti_sysbios_BIOS_taskEnabled__C = 1; - -/* swiEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_swiEnabled__C, ".const:ti_sysbios_BIOS_swiEnabled__C"); -__FAR__ const CT__ti_sysbios_BIOS_swiEnabled ti_sysbios_BIOS_swiEnabled__C = 1; - -/* clockEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_clockEnabled__C, ".const:ti_sysbios_BIOS_clockEnabled__C"); -__FAR__ const CT__ti_sysbios_BIOS_clockEnabled ti_sysbios_BIOS_clockEnabled__C = 1; - -/* heapSize__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_heapSize__C, ".const:ti_sysbios_BIOS_heapSize__C"); -__FAR__ const CT__ti_sysbios_BIOS_heapSize ti_sysbios_BIOS_heapSize__C = (xdc_SizeT)0x782f; - -/* heapSection__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_heapSection__C, ".const:ti_sysbios_BIOS_heapSection__C"); -__FAR__ const CT__ti_sysbios_BIOS_heapSection ti_sysbios_BIOS_heapSection__C = 0; - -/* heapTrackEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_heapTrackEnabled__C, ".const:ti_sysbios_BIOS_heapTrackEnabled__C"); -__FAR__ const CT__ti_sysbios_BIOS_heapTrackEnabled ti_sysbios_BIOS_heapTrackEnabled__C = 0; - -/* setupSecureContext__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_setupSecureContext__C, ".const:ti_sysbios_BIOS_setupSecureContext__C"); -__FAR__ const CT__ti_sysbios_BIOS_setupSecureContext ti_sysbios_BIOS_setupSecureContext__C = 0; - -/* useSK__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_useSK__C, ".const:ti_sysbios_BIOS_useSK__C"); -__FAR__ const CT__ti_sysbios_BIOS_useSK ti_sysbios_BIOS_useSK__C = 0; - -/* installedErrorHook__C */ -#pragma DATA_SECTION(ti_sysbios_BIOS_installedErrorHook__C, ".const:ti_sysbios_BIOS_installedErrorHook__C"); -__FAR__ const CT__ti_sysbios_BIOS_installedErrorHook ti_sysbios_BIOS_installedErrorHook__C = ((CT__ti_sysbios_BIOS_installedErrorHook)((xdc_Fxn)xdc_runtime_Error_print__E)); - - -/* - * ======== ti.sysbios.BIOS_RtsGateProxy INITIALIZERS ======== - */ - - -/* - * ======== ti.sysbios.family.arm.lm4.Seconds INITIALIZERS ======== - */ - -/* Module__state__V */ -#if defined (__ICCARM__) -#pragma location = ".data_ti_sysbios_family_arm_lm4_Seconds_Module__state__V" -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -ti_sysbios_family_arm_lm4_Seconds_Module_State__ ti_sysbios_family_arm_lm4_Seconds_Module__state__V __attribute__ ((section(".data_ti_sysbios_family_arm_lm4_Seconds_Module__state__V"))); -#endif -#endif -ti_sysbios_family_arm_lm4_Seconds_Module_State__ ti_sysbios_family_arm_lm4_Seconds_Module__state__V = { - (xdc_UInt32)0x0, /* setSeconds */ - (xdc_UInt32)0x0, /* refSeconds */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Module__diagsEnabled__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Module__diagsEnabled ti_sysbios_family_arm_lm4_Seconds_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Module__diagsIncluded__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Module__diagsIncluded ti_sysbios_family_arm_lm4_Seconds_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Module__diagsMask__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Module__diagsMask ti_sysbios_family_arm_lm4_Seconds_Module__diagsMask__C = ((CT__ti_sysbios_family_arm_lm4_Seconds_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Module__gateObj__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Module__gateObj ti_sysbios_family_arm_lm4_Seconds_Module__gateObj__C = ((CT__ti_sysbios_family_arm_lm4_Seconds_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Module__gatePrms__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Module__gatePrms ti_sysbios_family_arm_lm4_Seconds_Module__gatePrms__C = ((CT__ti_sysbios_family_arm_lm4_Seconds_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Module__id__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Module__id__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Module__id ti_sysbios_family_arm_lm4_Seconds_Module__id__C = (xdc_Bits16)0x802e; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Module__loggerDefined__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Module__loggerDefined ti_sysbios_family_arm_lm4_Seconds_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Module__loggerObj__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Module__loggerObj ti_sysbios_family_arm_lm4_Seconds_Module__loggerObj__C = ((CT__ti_sysbios_family_arm_lm4_Seconds_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn0__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn0 ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn0__C = ((CT__ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn1__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn1 ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn1__C = ((CT__ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn2__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn2 ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn2__C = ((CT__ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn4__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn4 ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn4__C = ((CT__ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn8__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn8 ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn8__C = ((CT__ti_sysbios_family_arm_lm4_Seconds_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Module__startupDoneFxn__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Module__startupDoneFxn ti_sysbios_family_arm_lm4_Seconds_Module__startupDoneFxn__C = ((CT__ti_sysbios_family_arm_lm4_Seconds_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Object__count__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Object__count__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Object__count ti_sysbios_family_arm_lm4_Seconds_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Object__heap__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Object__heap__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Object__heap ti_sysbios_family_arm_lm4_Seconds_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Object__sizeof__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Object__sizeof ti_sysbios_family_arm_lm4_Seconds_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Seconds_Object__table__C, ".const:ti_sysbios_family_arm_lm4_Seconds_Object__table__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Seconds_Object__table ti_sysbios_family_arm_lm4_Seconds_Object__table__C = 0; - - -/* - * ======== ti.sysbios.family.arm.lm4.Timer INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_family_arm_lm4_Timer_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Object__PARAMS__C, ".const:ti_sysbios_family_arm_lm4_Timer_Object__PARAMS__C"); -__FAR__ const ti_sysbios_family_arm_lm4_Timer_Params ti_sysbios_family_arm_lm4_Timer_Object__PARAMS__C = { - sizeof (ti_sysbios_family_arm_lm4_Timer_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&ti_sysbios_family_arm_lm4_Timer_Object__PARAMS__C.__iprms, /* instance */ - ti_sysbios_interfaces_ITimer_RunMode_CONTINUOUS, /* runMode */ - ti_sysbios_interfaces_ITimer_StartMode_AUTO, /* startMode */ - ((xdc_UArg)0), /* arg */ - (xdc_UInt32)0x0, /* period */ - ti_sysbios_interfaces_ITimer_PeriodType_MICROSECS, /* periodType */ - { - (xdc_Bits32)0x0, /* hi */ - (xdc_Bits32)0x0, /* lo */ - }, /* extFreq */ - ((ti_sysbios_family_arm_m3_Hwi_Params*)0), /* hwiParams */ - (xdc_UInt)0xffffffff, /* prevThreshold */ - 0, /* altclk */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -ti_sysbios_family_arm_lm4_Timer_Module__ ti_sysbios_family_arm_lm4_Timer_Module__root__V = { - {&ti_sysbios_family_arm_lm4_Timer_Module__root__V.link, /* link.next */ - &ti_sysbios_family_arm_lm4_Timer_Module__root__V.link}, /* link.prev */ -}; - -/* Object__table__V */ -ti_sysbios_family_arm_lm4_Timer_Object__ ti_sysbios_family_arm_lm4_Timer_Object__table__V[1] = { - {/* instance#0 */ - 0, - 1, /* staticInst */ - (xdc_Int)0x7, /* id */ - ti_sysbios_interfaces_ITimer_RunMode_CONTINUOUS, /* runMode */ - ti_sysbios_interfaces_ITimer_StartMode_AUTO, /* startMode */ - (xdc_UInt)0x1d4c0, /* period */ - ti_sysbios_interfaces_ITimer_PeriodType_COUNTS, /* periodType */ - (xdc_UInt)0x74, /* intNum */ - ((xdc_UArg)0), /* arg */ - ((xdc_Void(*)(xdc_UArg))((xdc_Fxn)ti_sysbios_knl_Clock_doTick__I)), /* tickFxn */ - { - (xdc_Bits32)0x0, /* hi */ - (xdc_Bits32)0x0, /* lo */ - }, /* extFreq */ - (ti_sysbios_family_arm_m3_Hwi_Handle)&ti_sysbios_family_arm_m3_Hwi_Object__table__V[8], /* hwi */ - (xdc_UInt)0xffffffff, /* prevThreshold */ - (xdc_UInt)0x0, /* rollovers */ - (xdc_UInt)0x0, /* savedCurrCount */ - 0, /* altclk */ - }, -}; - -/* --> ti_sysbios_family_arm_lm4_Timer_Module_State_0_device__A */ -__T1_ti_sysbios_family_arm_lm4_Timer_Module_State__device ti_sysbios_family_arm_lm4_Timer_Module_State_0_device__A[8] = { - { - (xdc_UInt)0x23, /* intNum */ - ((xdc_Ptr)(0x40030000)), /* baseAddr */ - }, /* [0] */ - { - (xdc_UInt)0x25, /* intNum */ - ((xdc_Ptr)(0x40031000)), /* baseAddr */ - }, /* [1] */ - { - (xdc_UInt)0x27, /* intNum */ - ((xdc_Ptr)(0x40032000)), /* baseAddr */ - }, /* [2] */ - { - (xdc_UInt)0x33, /* intNum */ - ((xdc_Ptr)(0x40033000)), /* baseAddr */ - }, /* [3] */ - { - (xdc_UInt)0x4f, /* intNum */ - ((xdc_Ptr)(0x40034000)), /* baseAddr */ - }, /* [4] */ - { - (xdc_UInt)0x51, /* intNum */ - ((xdc_Ptr)(0x40035000)), /* baseAddr */ - }, /* [5] */ - { - (xdc_UInt)0x72, /* intNum */ - ((xdc_Ptr)(0x400e0000)), /* baseAddr */ - }, /* [6] */ - { - (xdc_UInt)0x74, /* intNum */ - ((xdc_Ptr)(0x400e1000)), /* baseAddr */ - }, /* [7] */ -}; - -/* --> ti_sysbios_family_arm_lm4_Timer_Module_State_0_handles__A */ -__T1_ti_sysbios_family_arm_lm4_Timer_Module_State__handles ti_sysbios_family_arm_lm4_Timer_Module_State_0_handles__A[8] = { - 0, /* [0] */ - 0, /* [1] */ - 0, /* [2] */ - 0, /* [3] */ - 0, /* [4] */ - 0, /* [5] */ - 0, /* [6] */ - (ti_sysbios_family_arm_lm4_Timer_Handle)&ti_sysbios_family_arm_lm4_Timer_Object__table__V[0], /* [7] */ -}; - -/* Module__state__V */ -#if defined (__ICCARM__) -#pragma location = ".data_ti_sysbios_family_arm_lm4_Timer_Module__state__V" -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -ti_sysbios_family_arm_lm4_Timer_Module_State__ ti_sysbios_family_arm_lm4_Timer_Module__state__V __attribute__ ((section(".data_ti_sysbios_family_arm_lm4_Timer_Module__state__V"))); -#endif -#endif -ti_sysbios_family_arm_lm4_Timer_Module_State__ ti_sysbios_family_arm_lm4_Timer_Module__state__V = { - (xdc_UInt)0x7f, /* availMask */ - ((void*)ti_sysbios_family_arm_lm4_Timer_Module_State_0_device__A), /* device */ - ((void*)ti_sysbios_family_arm_lm4_Timer_Module_State_0_handles__A), /* handles */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Module__diagsEnabled__C, ".const:ti_sysbios_family_arm_lm4_Timer_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Module__diagsEnabled ti_sysbios_family_arm_lm4_Timer_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Module__diagsIncluded__C, ".const:ti_sysbios_family_arm_lm4_Timer_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Module__diagsIncluded ti_sysbios_family_arm_lm4_Timer_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Module__diagsMask__C, ".const:ti_sysbios_family_arm_lm4_Timer_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Module__diagsMask ti_sysbios_family_arm_lm4_Timer_Module__diagsMask__C = ((CT__ti_sysbios_family_arm_lm4_Timer_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Module__gateObj__C, ".const:ti_sysbios_family_arm_lm4_Timer_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Module__gateObj ti_sysbios_family_arm_lm4_Timer_Module__gateObj__C = ((CT__ti_sysbios_family_arm_lm4_Timer_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Module__gatePrms__C, ".const:ti_sysbios_family_arm_lm4_Timer_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Module__gatePrms ti_sysbios_family_arm_lm4_Timer_Module__gatePrms__C = ((CT__ti_sysbios_family_arm_lm4_Timer_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Module__id__C, ".const:ti_sysbios_family_arm_lm4_Timer_Module__id__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Module__id ti_sysbios_family_arm_lm4_Timer_Module__id__C = (xdc_Bits16)0x8030; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Module__loggerDefined__C, ".const:ti_sysbios_family_arm_lm4_Timer_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Module__loggerDefined ti_sysbios_family_arm_lm4_Timer_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Module__loggerObj__C, ".const:ti_sysbios_family_arm_lm4_Timer_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Module__loggerObj ti_sysbios_family_arm_lm4_Timer_Module__loggerObj__C = ((CT__ti_sysbios_family_arm_lm4_Timer_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn0__C, ".const:ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn0 ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn0__C = ((CT__ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn1__C, ".const:ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn1 ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn1__C = ((CT__ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn2__C, ".const:ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn2 ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn2__C = ((CT__ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn4__C, ".const:ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn4 ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn4__C = ((CT__ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn8__C, ".const:ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn8 ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn8__C = ((CT__ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Module__startupDoneFxn__C, ".const:ti_sysbios_family_arm_lm4_Timer_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Module__startupDoneFxn ti_sysbios_family_arm_lm4_Timer_Module__startupDoneFxn__C = ((CT__ti_sysbios_family_arm_lm4_Timer_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Object__count__C, ".const:ti_sysbios_family_arm_lm4_Timer_Object__count__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Object__count ti_sysbios_family_arm_lm4_Timer_Object__count__C = 1; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Object__heap__C, ".const:ti_sysbios_family_arm_lm4_Timer_Object__heap__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Object__heap ti_sysbios_family_arm_lm4_Timer_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Object__sizeof__C, ".const:ti_sysbios_family_arm_lm4_Timer_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Object__sizeof ti_sysbios_family_arm_lm4_Timer_Object__sizeof__C = sizeof(ti_sysbios_family_arm_lm4_Timer_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Object__table__C, ".const:ti_sysbios_family_arm_lm4_Timer_Object__table__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_Object__table ti_sysbios_family_arm_lm4_Timer_Object__table__C = ti_sysbios_family_arm_lm4_Timer_Object__table__V; - -/* E_invalidTimer__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_E_invalidTimer__C, ".const:ti_sysbios_family_arm_lm4_Timer_E_invalidTimer__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_E_invalidTimer ti_sysbios_family_arm_lm4_Timer_E_invalidTimer__C = (((xdc_runtime_Error_Id)4413) << 16 | 0); - -/* E_notAvailable__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_E_notAvailable__C, ".const:ti_sysbios_family_arm_lm4_Timer_E_notAvailable__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_E_notAvailable ti_sysbios_family_arm_lm4_Timer_E_notAvailable__C = (((xdc_runtime_Error_Id)4449) << 16 | 0); - -/* E_cannotSupport__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_E_cannotSupport__C, ".const:ti_sysbios_family_arm_lm4_Timer_E_cannotSupport__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_E_cannotSupport ti_sysbios_family_arm_lm4_Timer_E_cannotSupport__C = (((xdc_runtime_Error_Id)4488) << 16 | 0); - -/* E_noaltclk__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_E_noaltclk__C, ".const:ti_sysbios_family_arm_lm4_Timer_E_noaltclk__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_E_noaltclk ti_sysbios_family_arm_lm4_Timer_E_noaltclk__C = (((xdc_runtime_Error_Id)4708) << 16 | 0); - -/* anyMask__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_anyMask__C, ".const:ti_sysbios_family_arm_lm4_Timer_anyMask__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_anyMask ti_sysbios_family_arm_lm4_Timer_anyMask__C = (xdc_UInt)0xff; - -/* supportsAltclk__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_supportsAltclk__C, ".const:ti_sysbios_family_arm_lm4_Timer_supportsAltclk__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_supportsAltclk ti_sysbios_family_arm_lm4_Timer_supportsAltclk__C = 1; - -/* enableFunc__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_enableFunc__C, ".const:ti_sysbios_family_arm_lm4_Timer_enableFunc__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_enableFunc ti_sysbios_family_arm_lm4_Timer_enableFunc__C = ((CT__ti_sysbios_family_arm_lm4_Timer_enableFunc)((xdc_Fxn)ti_sysbios_family_arm_lm4_Timer_enableTiva)); - -/* disableFunc__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_disableFunc__C, ".const:ti_sysbios_family_arm_lm4_Timer_disableFunc__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_disableFunc ti_sysbios_family_arm_lm4_Timer_disableFunc__C = ((CT__ti_sysbios_family_arm_lm4_Timer_disableFunc)((xdc_Fxn)ti_sysbios_family_arm_lm4_Timer_disableTiva)); - -/* startupNeeded__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_startupNeeded__C, ".const:ti_sysbios_family_arm_lm4_Timer_startupNeeded__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_startupNeeded ti_sysbios_family_arm_lm4_Timer_startupNeeded__C = (xdc_UInt)0x1; - -/* numTimerDevices__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_numTimerDevices__C, ".const:ti_sysbios_family_arm_lm4_Timer_numTimerDevices__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_Timer_numTimerDevices ti_sysbios_family_arm_lm4_Timer_numTimerDevices__C = (xdc_Int)0x8; - - -/* - * ======== ti.sysbios.family.arm.lm4.TimestampProvider INITIALIZERS ======== - */ - -/* Module__state__V */ -#if defined (__ICCARM__) -#pragma location = ".data_ti_sysbios_family_arm_lm4_TimestampProvider_Module__state__V" -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -ti_sysbios_family_arm_lm4_TimestampProvider_Module_State__ ti_sysbios_family_arm_lm4_TimestampProvider_Module__state__V __attribute__ ((section(".data_ti_sysbios_family_arm_lm4_TimestampProvider_Module__state__V"))); -#endif -#endif -ti_sysbios_family_arm_lm4_TimestampProvider_Module_State__ ti_sysbios_family_arm_lm4_TimestampProvider_Module__state__V = { - 0, /* timer */ - (xdc_UInt32)0x0, /* hi */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Module__diagsEnabled__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__diagsEnabled ti_sysbios_family_arm_lm4_TimestampProvider_Module__diagsEnabled__C = (xdc_Bits32)0x10; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Module__diagsIncluded__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__diagsIncluded ti_sysbios_family_arm_lm4_TimestampProvider_Module__diagsIncluded__C = (xdc_Bits32)0x10; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Module__diagsMask__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__diagsMask ti_sysbios_family_arm_lm4_TimestampProvider_Module__diagsMask__C = ((CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Module__gateObj__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__gateObj ti_sysbios_family_arm_lm4_TimestampProvider_Module__gateObj__C = ((CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Module__gatePrms__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__gatePrms ti_sysbios_family_arm_lm4_TimestampProvider_Module__gatePrms__C = ((CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Module__id__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Module__id__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__id ti_sysbios_family_arm_lm4_TimestampProvider_Module__id__C = (xdc_Bits16)0x802f; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerDefined__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerDefined ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerObj__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerObj ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerObj__C = ((CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn0__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn0 ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn0__C = ((CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn1__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn1 ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn1__C = ((CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn2__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn2 ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn2__C = ((CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn4__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn4 ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn4__C = ((CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn8__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn8 ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn8__C = ((CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Module__startupDoneFxn__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__startupDoneFxn ti_sysbios_family_arm_lm4_TimestampProvider_Module__startupDoneFxn__C = ((CT__ti_sysbios_family_arm_lm4_TimestampProvider_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Object__count__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Object__count__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Object__count ti_sysbios_family_arm_lm4_TimestampProvider_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Object__heap__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Object__heap__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Object__heap ti_sysbios_family_arm_lm4_TimestampProvider_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Object__sizeof__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Object__sizeof ti_sysbios_family_arm_lm4_TimestampProvider_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_Object__table__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_Object__table__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_Object__table ti_sysbios_family_arm_lm4_TimestampProvider_Object__table__C = 0; - -/* useClockTimer__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_useClockTimer__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_useClockTimer__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_useClockTimer ti_sysbios_family_arm_lm4_TimestampProvider_useClockTimer__C = 1; - -/* timerId__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_TimestampProvider_timerId__C, ".const:ti_sysbios_family_arm_lm4_TimestampProvider_timerId__C"); -__FAR__ const CT__ti_sysbios_family_arm_lm4_TimestampProvider_timerId ti_sysbios_family_arm_lm4_TimestampProvider_timerId__C = (xdc_UInt)0x3; - - -/* - * ======== ti.sysbios.family.arm.m3.Hwi INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_family_arm_m3_Hwi_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C, ".const:ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C"); -__FAR__ const ti_sysbios_family_arm_m3_Hwi_Params ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C = { - sizeof (ti_sysbios_family_arm_m3_Hwi_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C.__iprms, /* instance */ - ti_sysbios_interfaces_IHwi_MaskingOption_LOWER, /* maskSetting */ - ((xdc_UArg)(0x0)), /* arg */ - 1, /* enableInt */ - (xdc_Int)(-0x0 - 1), /* eventId */ - (xdc_Int)0xff, /* priority */ - 1, /* useDispatcher */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -ti_sysbios_family_arm_m3_Hwi_Module__ ti_sysbios_family_arm_m3_Hwi_Module__root__V = { - {&ti_sysbios_family_arm_m3_Hwi_Module__root__V.link, /* link.next */ - &ti_sysbios_family_arm_m3_Hwi_Module__root__V.link}, /* link.prev */ -}; - -/* Object__table__V */ -ti_sysbios_family_arm_m3_Hwi_Object__ ti_sysbios_family_arm_m3_Hwi_Object__table__V[9] = { - {/* instance#0 */ - 0, - ((xdc_UArg)(0x0)), /* arg */ - ((xdc_Void(*)(xdc_UArg))((xdc_Fxn)ADC0SS0Handler)), /* fxn */ - ((xdc_UArg)(0x3)), /* irp */ - (xdc_UInt8)0xff, /* priority */ - (xdc_Int16)0x1e, /* intNum */ - ((void*)0), /* hookEnv */ - }, - {/* instance#1 */ - 0, - ((xdc_UArg)(0x0)), /* arg */ - ((xdc_Void(*)(xdc_UArg))((xdc_Fxn)SysTickHandler)), /* fxn */ - ((xdc_UArg)(0x3)), /* irp */ - (xdc_UInt8)0xff, /* priority */ - (xdc_Int16)0xf, /* intNum */ - ((void*)0), /* hookEnv */ - }, - {/* instance#2 */ - 0, - ((xdc_UArg)(0x0)), /* arg */ - ((xdc_Void(*)(xdc_UArg))((xdc_Fxn)PortPIntHandler)), /* fxn */ - ((xdc_UArg)(0x3)), /* irp */ - (xdc_UInt8)0xff, /* priority */ - (xdc_Int16)0x5c, /* intNum */ - ((void*)0), /* hookEnv */ - }, - {/* instance#3 */ - 0, - ((xdc_UArg)(0x0)), /* arg */ - ((xdc_Void(*)(xdc_UArg))((xdc_Fxn)OneMilliSecondControlInterrupt)), /* fxn */ - ((xdc_UArg)(0x3)), /* irp */ - (xdc_UInt8)0xff, /* priority */ - (xdc_Int16)0x23, /* intNum */ - ((void*)0), /* hookEnv */ - }, - {/* instance#4 */ - 0, - ((xdc_UArg)(0x0)), /* arg */ - ((xdc_Void(*)(xdc_UArg))((xdc_Fxn)WatchdogIntHandler)), /* fxn */ - ((xdc_UArg)(0x3)), /* irp */ - (xdc_UInt8)0xff, /* priority */ - (xdc_Int16)0x22, /* intNum */ - ((void*)0), /* hookEnv */ - }, - {/* instance#5 */ - 0, - ((xdc_UArg)(0x2)), /* arg */ - ((xdc_Void(*)(xdc_UArg))((xdc_Fxn)EightMilliSecondHeatersInterrupt)), /* fxn */ - ((xdc_UArg)(0x3)), /* irp */ - (xdc_UInt8)0xff, /* priority */ - (xdc_Int16)0x27, /* intNum */ - ((void*)0), /* hookEnv */ - }, - {/* instance#6 */ - 0, - ((xdc_UArg)(0x0)), /* arg */ - ((xdc_Void(*)(xdc_UArg))((xdc_Fxn)OneMilliSecondMillisecInterrupt)), /* fxn */ - ((xdc_UArg)(0x3)), /* irp */ - (xdc_UInt8)0xff, /* priority */ - (xdc_Int16)0x25, /* intNum */ - ((void*)0), /* hookEnv */ - }, - {/* instance#7 */ - 0, - ((xdc_UArg)(0x3)), /* arg */ - ((xdc_Void(*)(xdc_UArg))((xdc_Fxn)ScrewTimerInterrupt)), /* fxn */ - ((xdc_UArg)(0x3)), /* irp */ - (xdc_UInt8)0xff, /* priority */ - (xdc_Int16)0x33, /* intNum */ - ((void*)0), /* hookEnv */ - }, - {/* instance#8 */ - 0, - ((xdc_UArg)((void*)(ti_sysbios_family_arm_lm4_Timer_Handle)&ti_sysbios_family_arm_lm4_Timer_Object__table__V[0])), /* arg */ - ((xdc_Void(*)(xdc_UArg))((xdc_Fxn)ti_sysbios_family_arm_lm4_Timer_isrStub__E)), /* fxn */ - ((xdc_UArg)(0x3)), /* irp */ - (xdc_UInt8)0xff, /* priority */ - (xdc_Int16)0x74, /* intNum */ - ((void*)0), /* hookEnv */ - }, -}; - -/* --> ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A */ -__T1_ti_sysbios_family_arm_m3_Hwi_Module_State__excActive ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A[1] = { - 0, /* [0] */ -}; - -/* --> ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A */ -__T1_ti_sysbios_family_arm_m3_Hwi_Module_State__excContext ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A[1] = { - ((ti_sysbios_family_arm_m3_Hwi_ExcContext*)0), /* [0] */ -}; - -/* --> ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A */ -__T1_ti_sysbios_family_arm_m3_Hwi_Module_State__excStack ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A[1] = { - ((xdc_Ptr)0), /* [0] */ -}; - -/* Module__state__V */ -#if defined (__ICCARM__) -#pragma location = ".data_ti_sysbios_family_arm_m3_Hwi_Module__state__V" -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -ti_sysbios_family_arm_m3_Hwi_Module_State__ ti_sysbios_family_arm_m3_Hwi_Module__state__V __attribute__ ((section(".data_ti_sysbios_family_arm_m3_Hwi_Module__state__V"))); -#endif -#endif -ti_sysbios_family_arm_m3_Hwi_Module_State__ ti_sysbios_family_arm_m3_Hwi_Module__state__V = { - ((xdc_Char*)0), /* taskSP */ - ((void*)ti_sysbios_family_arm_m3_Hwi_Module_State_0_excActive__A), /* excActive */ - ((void*)ti_sysbios_family_arm_m3_Hwi_Module_State_0_excContext__A), /* excContext */ - ((void*)ti_sysbios_family_arm_m3_Hwi_Module_State_0_excStack__A), /* excStack */ - ((xdc_Ptr)0), /* isrStack */ - ((xdc_Ptr)((void*)&__TI_STACK_BASE)), /* isrStackBase */ - (xdc_SizeT)0x1000, /* isrStackSize */ - ((xdc_Ptr)(0x20000000)), /* vectorTableBase */ - (xdc_UInt)0x101, /* swiTaskKeys */ - ((xdc_Ptr)((void*)&ti_sysbios_family_arm_m3_Hwi_dispatchTable[0])), /* dispatchTable */ - 0, /* vnvicFlushRequired */ - ((void*)0), /* intAffinity */ - ((void*)0), /* intAffinityMasks */ -}; - -/* --> ti_sysbios_family_arm_m3_Hwi_excHookFuncs__A */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_excHookFuncs__A, ".const:ti_sysbios_family_arm_m3_Hwi_excHookFuncs__A"); -const __T1_ti_sysbios_family_arm_m3_Hwi_excHookFuncs ti_sysbios_family_arm_m3_Hwi_excHookFuncs__A[2] = { - ((xdc_Void(*)(ti_sysbios_family_arm_m3_Hwi_ExcContext*))0), /* [0] */ - ((xdc_Void(*)(ti_sysbios_family_arm_m3_Hwi_ExcContext*))0), /* [1] */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Module__diagsEnabled__C, ".const:ti_sysbios_family_arm_m3_Hwi_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Module__diagsEnabled ti_sysbios_family_arm_m3_Hwi_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Module__diagsIncluded__C, ".const:ti_sysbios_family_arm_m3_Hwi_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Module__diagsIncluded ti_sysbios_family_arm_m3_Hwi_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Module__diagsMask__C, ".const:ti_sysbios_family_arm_m3_Hwi_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Module__diagsMask ti_sysbios_family_arm_m3_Hwi_Module__diagsMask__C = ((CT__ti_sysbios_family_arm_m3_Hwi_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Module__gateObj__C, ".const:ti_sysbios_family_arm_m3_Hwi_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Module__gateObj ti_sysbios_family_arm_m3_Hwi_Module__gateObj__C = ((CT__ti_sysbios_family_arm_m3_Hwi_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Module__gatePrms__C, ".const:ti_sysbios_family_arm_m3_Hwi_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Module__gatePrms ti_sysbios_family_arm_m3_Hwi_Module__gatePrms__C = ((CT__ti_sysbios_family_arm_m3_Hwi_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Module__id__C, ".const:ti_sysbios_family_arm_m3_Hwi_Module__id__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Module__id ti_sysbios_family_arm_m3_Hwi_Module__id__C = (xdc_Bits16)0x801d; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Module__loggerDefined__C, ".const:ti_sysbios_family_arm_m3_Hwi_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Module__loggerDefined ti_sysbios_family_arm_m3_Hwi_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Module__loggerObj__C, ".const:ti_sysbios_family_arm_m3_Hwi_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Module__loggerObj ti_sysbios_family_arm_m3_Hwi_Module__loggerObj__C = ((CT__ti_sysbios_family_arm_m3_Hwi_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn0__C, ".const:ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn0 ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn0__C = ((CT__ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn1__C, ".const:ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn1 ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn1__C = ((CT__ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn2__C, ".const:ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn2 ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn2__C = ((CT__ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn4__C, ".const:ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn4 ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn4__C = ((CT__ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn8__C, ".const:ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn8 ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn8__C = ((CT__ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Module__startupDoneFxn__C, ".const:ti_sysbios_family_arm_m3_Hwi_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Module__startupDoneFxn ti_sysbios_family_arm_m3_Hwi_Module__startupDoneFxn__C = ((CT__ti_sysbios_family_arm_m3_Hwi_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Object__count__C, ".const:ti_sysbios_family_arm_m3_Hwi_Object__count__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Object__count ti_sysbios_family_arm_m3_Hwi_Object__count__C = 9; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Object__heap__C, ".const:ti_sysbios_family_arm_m3_Hwi_Object__heap__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Object__heap ti_sysbios_family_arm_m3_Hwi_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Object__sizeof__C, ".const:ti_sysbios_family_arm_m3_Hwi_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Object__sizeof ti_sysbios_family_arm_m3_Hwi_Object__sizeof__C = sizeof(ti_sysbios_family_arm_m3_Hwi_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Object__table__C, ".const:ti_sysbios_family_arm_m3_Hwi_Object__table__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_Object__table ti_sysbios_family_arm_m3_Hwi_Object__table__C = ti_sysbios_family_arm_m3_Hwi_Object__table__V; - -/* dispatcherAutoNestingSupport__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_dispatcherAutoNestingSupport__C, ".const:ti_sysbios_family_arm_m3_Hwi_dispatcherAutoNestingSupport__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_dispatcherAutoNestingSupport ti_sysbios_family_arm_m3_Hwi_dispatcherAutoNestingSupport__C = 1; - -/* dispatcherSwiSupport__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_dispatcherSwiSupport__C, ".const:ti_sysbios_family_arm_m3_Hwi_dispatcherSwiSupport__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_dispatcherSwiSupport ti_sysbios_family_arm_m3_Hwi_dispatcherSwiSupport__C = 1; - -/* dispatcherTaskSupport__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_dispatcherTaskSupport__C, ".const:ti_sysbios_family_arm_m3_Hwi_dispatcherTaskSupport__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_dispatcherTaskSupport ti_sysbios_family_arm_m3_Hwi_dispatcherTaskSupport__C = 1; - -/* dispatcherIrpTrackingSupport__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_dispatcherIrpTrackingSupport__C, ".const:ti_sysbios_family_arm_m3_Hwi_dispatcherIrpTrackingSupport__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_dispatcherIrpTrackingSupport ti_sysbios_family_arm_m3_Hwi_dispatcherIrpTrackingSupport__C = 1; - -/* NUM_INTERRUPTS__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C, ".const:ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS ti_sysbios_family_arm_m3_Hwi_NUM_INTERRUPTS__C = (xdc_Int)0xd8; - -/* NUM_PRIORITIES__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_NUM_PRIORITIES__C, ".const:ti_sysbios_family_arm_m3_Hwi_NUM_PRIORITIES__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_NUM_PRIORITIES ti_sysbios_family_arm_m3_Hwi_NUM_PRIORITIES__C = (xdc_Int)0x8; - -/* LM_begin__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_LM_begin__C, ".const:ti_sysbios_family_arm_m3_Hwi_LM_begin__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_LM_begin ti_sysbios_family_arm_m3_Hwi_LM_begin__C = (((xdc_runtime_Log_Event)5129) << 16 | 768); - -/* LD_end__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_LD_end__C, ".const:ti_sysbios_family_arm_m3_Hwi_LD_end__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_LD_end ti_sysbios_family_arm_m3_Hwi_LD_end__C = (((xdc_runtime_Log_Event)5199) << 16 | 512); - -/* A_unsupportedMaskingOption__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_A_unsupportedMaskingOption__C, ".const:ti_sysbios_family_arm_m3_Hwi_A_unsupportedMaskingOption__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_A_unsupportedMaskingOption ti_sysbios_family_arm_m3_Hwi_A_unsupportedMaskingOption__C = (((xdc_runtime_Assert_Id)712) << 16 | 16); - -/* E_alreadyDefined__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C, ".const:ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined ti_sysbios_family_arm_m3_Hwi_E_alreadyDefined__C = (((xdc_runtime_Error_Id)3927) << 16 | 0); - -/* E_hwiLimitExceeded__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C, ".const:ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded ti_sysbios_family_arm_m3_Hwi_E_hwiLimitExceeded__C = (((xdc_runtime_Error_Id)3975) << 16 | 0); - -/* E_exception__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_E_exception__C, ".const:ti_sysbios_family_arm_m3_Hwi_E_exception__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_E_exception ti_sysbios_family_arm_m3_Hwi_E_exception__C = (((xdc_runtime_Error_Id)4023) << 16 | 0); - -/* E_noIsr__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_E_noIsr__C, ".const:ti_sysbios_family_arm_m3_Hwi_E_noIsr__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_E_noIsr ti_sysbios_family_arm_m3_Hwi_E_noIsr__C = (((xdc_runtime_Error_Id)4228) << 16 | 0); - -/* E_NMI__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_E_NMI__C, ".const:ti_sysbios_family_arm_m3_Hwi_E_NMI__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_E_NMI ti_sysbios_family_arm_m3_Hwi_E_NMI__C = (((xdc_runtime_Error_Id)4256) << 16 | 0); - -/* E_hardFault__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_E_hardFault__C, ".const:ti_sysbios_family_arm_m3_Hwi_E_hardFault__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_E_hardFault ti_sysbios_family_arm_m3_Hwi_E_hardFault__C = (((xdc_runtime_Error_Id)4266) << 16 | 0); - -/* E_memFault__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_E_memFault__C, ".const:ti_sysbios_family_arm_m3_Hwi_E_memFault__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_E_memFault ti_sysbios_family_arm_m3_Hwi_E_memFault__C = (((xdc_runtime_Error_Id)4282) << 16 | 0); - -/* E_busFault__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_E_busFault__C, ".const:ti_sysbios_family_arm_m3_Hwi_E_busFault__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_E_busFault ti_sysbios_family_arm_m3_Hwi_E_busFault__C = (((xdc_runtime_Error_Id)4312) << 16 | 0); - -/* E_usageFault__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_E_usageFault__C, ".const:ti_sysbios_family_arm_m3_Hwi_E_usageFault__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_E_usageFault ti_sysbios_family_arm_m3_Hwi_E_usageFault__C = (((xdc_runtime_Error_Id)4342) << 16 | 0); - -/* E_svCall__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_E_svCall__C, ".const:ti_sysbios_family_arm_m3_Hwi_E_svCall__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_E_svCall ti_sysbios_family_arm_m3_Hwi_E_svCall__C = (((xdc_runtime_Error_Id)4359) << 16 | 0); - -/* E_debugMon__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_E_debugMon__C, ".const:ti_sysbios_family_arm_m3_Hwi_E_debugMon__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_E_debugMon ti_sysbios_family_arm_m3_Hwi_E_debugMon__C = (((xdc_runtime_Error_Id)4380) << 16 | 0); - -/* E_reserved__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_E_reserved__C, ".const:ti_sysbios_family_arm_m3_Hwi_E_reserved__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_E_reserved ti_sysbios_family_arm_m3_Hwi_E_reserved__C = (((xdc_runtime_Error_Id)4395) << 16 | 0); - -/* nullIsrFunc__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C, ".const:ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_nullIsrFunc ti_sysbios_family_arm_m3_Hwi_nullIsrFunc__C = ((CT__ti_sysbios_family_arm_m3_Hwi_nullIsrFunc)((xdc_Fxn)ti_sysbios_family_arm_m3_Hwi_excHandlerAsm__I)); - -/* excHandlerFunc__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C, ".const:ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_excHandlerFunc ti_sysbios_family_arm_m3_Hwi_excHandlerFunc__C = ((CT__ti_sysbios_family_arm_m3_Hwi_excHandlerFunc)((xdc_Fxn)ti_sysbios_family_arm_m3_Hwi_excHandlerMax__I)); - -/* excHookFunc__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_excHookFunc__C, ".const:ti_sysbios_family_arm_m3_Hwi_excHookFunc__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_excHookFunc ti_sysbios_family_arm_m3_Hwi_excHookFunc__C = ((CT__ti_sysbios_family_arm_m3_Hwi_excHookFunc)0); - -/* excHookFuncs__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_excHookFuncs__C, ".const:ti_sysbios_family_arm_m3_Hwi_excHookFuncs__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_excHookFuncs ti_sysbios_family_arm_m3_Hwi_excHookFuncs__C = ((CT__ti_sysbios_family_arm_m3_Hwi_excHookFuncs)ti_sysbios_family_arm_m3_Hwi_excHookFuncs__A); - -/* disablePriority__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_disablePriority__C, ".const:ti_sysbios_family_arm_m3_Hwi_disablePriority__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_disablePriority ti_sysbios_family_arm_m3_Hwi_disablePriority__C = (xdc_UInt)0x20; - -/* priGroup__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_priGroup__C, ".const:ti_sysbios_family_arm_m3_Hwi_priGroup__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_priGroup ti_sysbios_family_arm_m3_Hwi_priGroup__C = (xdc_UInt)0x0; - -/* numSparseInterrupts__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C, ".const:ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts ti_sysbios_family_arm_m3_Hwi_numSparseInterrupts__C = (xdc_UInt)0x0; - -/* swiDisable__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_swiDisable__C, ".const:ti_sysbios_family_arm_m3_Hwi_swiDisable__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_swiDisable ti_sysbios_family_arm_m3_Hwi_swiDisable__C = ((CT__ti_sysbios_family_arm_m3_Hwi_swiDisable)((xdc_Fxn)ti_sysbios_knl_Swi_disable__E)); - -/* swiRestoreHwi__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_swiRestoreHwi__C, ".const:ti_sysbios_family_arm_m3_Hwi_swiRestoreHwi__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_swiRestoreHwi ti_sysbios_family_arm_m3_Hwi_swiRestoreHwi__C = ((CT__ti_sysbios_family_arm_m3_Hwi_swiRestoreHwi)((xdc_Fxn)ti_sysbios_knl_Swi_restoreHwi__E)); - -/* taskDisable__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_taskDisable__C, ".const:ti_sysbios_family_arm_m3_Hwi_taskDisable__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_taskDisable ti_sysbios_family_arm_m3_Hwi_taskDisable__C = ((CT__ti_sysbios_family_arm_m3_Hwi_taskDisable)((xdc_Fxn)ti_sysbios_knl_Task_disable__E)); - -/* taskRestoreHwi__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_taskRestoreHwi__C, ".const:ti_sysbios_family_arm_m3_Hwi_taskRestoreHwi__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_taskRestoreHwi ti_sysbios_family_arm_m3_Hwi_taskRestoreHwi__C = ((CT__ti_sysbios_family_arm_m3_Hwi_taskRestoreHwi)((xdc_Fxn)ti_sysbios_knl_Task_restoreHwi__E)); - -/* ccr__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_ccr__C, ".const:ti_sysbios_family_arm_m3_Hwi_ccr__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_ccr ti_sysbios_family_arm_m3_Hwi_ccr__C = (xdc_UInt32)0x200; - -/* hooks__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_hooks__C, ".const:ti_sysbios_family_arm_m3_Hwi_hooks__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_Hwi_hooks ti_sysbios_family_arm_m3_Hwi_hooks__C = {0, 0}; - - -/* - * ======== ti.sysbios.family.arm.m3.IntrinsicsSupport INITIALIZERS ======== - */ - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__diagsEnabled__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__diagsEnabled ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__diagsIncluded__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__diagsIncluded ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__diagsMask__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__diagsMask ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__diagsMask__C = ((CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__gateObj__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__gateObj ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__gateObj__C = ((CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__gatePrms__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__gatePrms ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__gatePrms__C = ((CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__id__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__id__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__id ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__id__C = (xdc_Bits16)0x801e; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerDefined__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerDefined ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerObj__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerObj ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerObj__C = ((CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn0__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn0 ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn0__C = ((CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn1__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn1 ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn1__C = ((CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn2__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn2 ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn2__C = ((CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn4__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn4 ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn4__C = ((CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn8__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn8 ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn8__C = ((CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__startupDoneFxn__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__startupDoneFxn ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__startupDoneFxn__C = ((CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Object__count__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Object__count__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Object__count ti_sysbios_family_arm_m3_IntrinsicsSupport_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Object__heap__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Object__heap__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Object__heap ti_sysbios_family_arm_m3_IntrinsicsSupport_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Object__sizeof__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Object__sizeof ti_sysbios_family_arm_m3_IntrinsicsSupport_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_IntrinsicsSupport_Object__table__C, ".const:ti_sysbios_family_arm_m3_IntrinsicsSupport_Object__table__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_IntrinsicsSupport_Object__table ti_sysbios_family_arm_m3_IntrinsicsSupport_Object__table__C = 0; - - -/* - * ======== ti.sysbios.family.arm.m3.TaskSupport INITIALIZERS ======== - */ - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Module__diagsEnabled__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Module__diagsEnabled ti_sysbios_family_arm_m3_TaskSupport_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Module__diagsIncluded__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Module__diagsIncluded ti_sysbios_family_arm_m3_TaskSupport_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Module__diagsMask__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Module__diagsMask ti_sysbios_family_arm_m3_TaskSupport_Module__diagsMask__C = ((CT__ti_sysbios_family_arm_m3_TaskSupport_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Module__gateObj__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Module__gateObj ti_sysbios_family_arm_m3_TaskSupport_Module__gateObj__C = ((CT__ti_sysbios_family_arm_m3_TaskSupport_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Module__gatePrms__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Module__gatePrms ti_sysbios_family_arm_m3_TaskSupport_Module__gatePrms__C = ((CT__ti_sysbios_family_arm_m3_TaskSupport_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Module__id__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Module__id__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Module__id ti_sysbios_family_arm_m3_TaskSupport_Module__id__C = (xdc_Bits16)0x801f; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Module__loggerDefined__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Module__loggerDefined ti_sysbios_family_arm_m3_TaskSupport_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Module__loggerObj__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Module__loggerObj ti_sysbios_family_arm_m3_TaskSupport_Module__loggerObj__C = ((CT__ti_sysbios_family_arm_m3_TaskSupport_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn0__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn0 ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn0__C = ((CT__ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn1__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn1 ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn1__C = ((CT__ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn2__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn2 ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn2__C = ((CT__ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn4__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn4 ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn4__C = ((CT__ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn8__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn8 ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn8__C = ((CT__ti_sysbios_family_arm_m3_TaskSupport_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Module__startupDoneFxn__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Module__startupDoneFxn ti_sysbios_family_arm_m3_TaskSupport_Module__startupDoneFxn__C = ((CT__ti_sysbios_family_arm_m3_TaskSupport_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Object__count__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Object__count__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Object__count ti_sysbios_family_arm_m3_TaskSupport_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Object__heap__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Object__heap__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Object__heap ti_sysbios_family_arm_m3_TaskSupport_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Object__sizeof__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Object__sizeof ti_sysbios_family_arm_m3_TaskSupport_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_Object__table__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_Object__table__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_Object__table ti_sysbios_family_arm_m3_TaskSupport_Object__table__C = 0; - -/* defaultStackSize__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_defaultStackSize__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_defaultStackSize__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_defaultStackSize ti_sysbios_family_arm_m3_TaskSupport_defaultStackSize__C = (xdc_SizeT)0x800; - -/* stackAlignment__C */ -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C, ".const:ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C"); -__FAR__ const CT__ti_sysbios_family_arm_m3_TaskSupport_stackAlignment ti_sysbios_family_arm_m3_TaskSupport_stackAlignment__C = (xdc_UInt)0x8; - - -/* - * ======== ti.sysbios.gates.GateHwi INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_gates_GateHwi_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Object__PARAMS__C, ".const:ti_sysbios_gates_GateHwi_Object__PARAMS__C"); -__FAR__ const ti_sysbios_gates_GateHwi_Params ti_sysbios_gates_GateHwi_Object__PARAMS__C = { - sizeof (ti_sysbios_gates_GateHwi_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&ti_sysbios_gates_GateHwi_Object__PARAMS__C.__iprms, /* instance */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -ti_sysbios_gates_GateHwi_Module__ ti_sysbios_gates_GateHwi_Module__root__V = { - {&ti_sysbios_gates_GateHwi_Module__root__V.link, /* link.next */ - &ti_sysbios_gates_GateHwi_Module__root__V.link}, /* link.prev */ -}; - -/* Object__table__V */ -ti_sysbios_gates_GateHwi_Object__ ti_sysbios_gates_GateHwi_Object__table__V[1] = { - {/* instance#0 */ - &ti_sysbios_gates_GateHwi_Module__FXNS__C, - }, -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__diagsEnabled__C, ".const:ti_sysbios_gates_GateHwi_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Module__diagsEnabled ti_sysbios_gates_GateHwi_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__diagsIncluded__C, ".const:ti_sysbios_gates_GateHwi_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Module__diagsIncluded ti_sysbios_gates_GateHwi_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__diagsMask__C, ".const:ti_sysbios_gates_GateHwi_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Module__diagsMask ti_sysbios_gates_GateHwi_Module__diagsMask__C = ((CT__ti_sysbios_gates_GateHwi_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__gateObj__C, ".const:ti_sysbios_gates_GateHwi_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Module__gateObj ti_sysbios_gates_GateHwi_Module__gateObj__C = ((CT__ti_sysbios_gates_GateHwi_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__gatePrms__C, ".const:ti_sysbios_gates_GateHwi_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Module__gatePrms ti_sysbios_gates_GateHwi_Module__gatePrms__C = ((CT__ti_sysbios_gates_GateHwi_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__id__C, ".const:ti_sysbios_gates_GateHwi_Module__id__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Module__id ti_sysbios_gates_GateHwi_Module__id__C = (xdc_Bits16)0x803b; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__loggerDefined__C, ".const:ti_sysbios_gates_GateHwi_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Module__loggerDefined ti_sysbios_gates_GateHwi_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__loggerObj__C, ".const:ti_sysbios_gates_GateHwi_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Module__loggerObj ti_sysbios_gates_GateHwi_Module__loggerObj__C = ((CT__ti_sysbios_gates_GateHwi_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__loggerFxn0__C, ".const:ti_sysbios_gates_GateHwi_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Module__loggerFxn0 ti_sysbios_gates_GateHwi_Module__loggerFxn0__C = ((CT__ti_sysbios_gates_GateHwi_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__loggerFxn1__C, ".const:ti_sysbios_gates_GateHwi_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Module__loggerFxn1 ti_sysbios_gates_GateHwi_Module__loggerFxn1__C = ((CT__ti_sysbios_gates_GateHwi_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__loggerFxn2__C, ".const:ti_sysbios_gates_GateHwi_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Module__loggerFxn2 ti_sysbios_gates_GateHwi_Module__loggerFxn2__C = ((CT__ti_sysbios_gates_GateHwi_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__loggerFxn4__C, ".const:ti_sysbios_gates_GateHwi_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Module__loggerFxn4 ti_sysbios_gates_GateHwi_Module__loggerFxn4__C = ((CT__ti_sysbios_gates_GateHwi_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__loggerFxn8__C, ".const:ti_sysbios_gates_GateHwi_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Module__loggerFxn8 ti_sysbios_gates_GateHwi_Module__loggerFxn8__C = ((CT__ti_sysbios_gates_GateHwi_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__startupDoneFxn__C, ".const:ti_sysbios_gates_GateHwi_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Module__startupDoneFxn ti_sysbios_gates_GateHwi_Module__startupDoneFxn__C = ((CT__ti_sysbios_gates_GateHwi_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Object__count__C, ".const:ti_sysbios_gates_GateHwi_Object__count__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Object__count ti_sysbios_gates_GateHwi_Object__count__C = 1; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Object__heap__C, ".const:ti_sysbios_gates_GateHwi_Object__heap__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Object__heap ti_sysbios_gates_GateHwi_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Object__sizeof__C, ".const:ti_sysbios_gates_GateHwi_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Object__sizeof ti_sysbios_gates_GateHwi_Object__sizeof__C = sizeof(ti_sysbios_gates_GateHwi_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Object__table__C, ".const:ti_sysbios_gates_GateHwi_Object__table__C"); -__FAR__ const CT__ti_sysbios_gates_GateHwi_Object__table ti_sysbios_gates_GateHwi_Object__table__C = ti_sysbios_gates_GateHwi_Object__table__V; - - -/* - * ======== ti.sysbios.gates.GateMutex INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_gates_GateMutex_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Object__PARAMS__C, ".const:ti_sysbios_gates_GateMutex_Object__PARAMS__C"); -__FAR__ const ti_sysbios_gates_GateMutex_Params ti_sysbios_gates_GateMutex_Object__PARAMS__C = { - sizeof (ti_sysbios_gates_GateMutex_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&ti_sysbios_gates_GateMutex_Object__PARAMS__C.__iprms, /* instance */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -ti_sysbios_gates_GateMutex_Module__ ti_sysbios_gates_GateMutex_Module__root__V = { - {&ti_sysbios_gates_GateMutex_Module__root__V.link, /* link.next */ - &ti_sysbios_gates_GateMutex_Module__root__V.link}, /* link.prev */ -}; - -/* Object__table__V */ -ti_sysbios_gates_GateMutex_Object__ ti_sysbios_gates_GateMutex_Object__table__V[2] = { - {/* instance#0 */ - &ti_sysbios_gates_GateMutex_Module__FXNS__C, - 0, /* owner */ - { - 0, /* event */ - (xdc_UInt)0x1, /* eventId */ - ti_sysbios_knl_Semaphore_Mode_COUNTING, /* mode */ - (xdc_UInt16)0x1, /* count */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_gates_GateMutex_Object__table__V[0].Object_field_sem.Object_field_pendQ.elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_gates_GateMutex_Object__table__V[0].Object_field_sem.Object_field_pendQ.elem)), /* prev */ - }, /* elem */ - }, /* Object_field_pendQ */ - }, /* Object_field_sem */ - }, - {/* instance#1 */ - &ti_sysbios_gates_GateMutex_Module__FXNS__C, - 0, /* owner */ - { - 0, /* event */ - (xdc_UInt)0x1, /* eventId */ - ti_sysbios_knl_Semaphore_Mode_COUNTING, /* mode */ - (xdc_UInt16)0x1, /* count */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_gates_GateMutex_Object__table__V[1].Object_field_sem.Object_field_pendQ.elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_gates_GateMutex_Object__table__V[1].Object_field_sem.Object_field_pendQ.elem)), /* prev */ - }, /* elem */ - }, /* Object_field_pendQ */ - }, /* Object_field_sem */ - }, -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__diagsEnabled__C, ".const:ti_sysbios_gates_GateMutex_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Module__diagsEnabled ti_sysbios_gates_GateMutex_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__diagsIncluded__C, ".const:ti_sysbios_gates_GateMutex_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Module__diagsIncluded ti_sysbios_gates_GateMutex_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__diagsMask__C, ".const:ti_sysbios_gates_GateMutex_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Module__diagsMask ti_sysbios_gates_GateMutex_Module__diagsMask__C = ((CT__ti_sysbios_gates_GateMutex_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__gateObj__C, ".const:ti_sysbios_gates_GateMutex_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Module__gateObj ti_sysbios_gates_GateMutex_Module__gateObj__C = ((CT__ti_sysbios_gates_GateMutex_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__gatePrms__C, ".const:ti_sysbios_gates_GateMutex_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Module__gatePrms ti_sysbios_gates_GateMutex_Module__gatePrms__C = ((CT__ti_sysbios_gates_GateMutex_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__id__C, ".const:ti_sysbios_gates_GateMutex_Module__id__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Module__id ti_sysbios_gates_GateMutex_Module__id__C = (xdc_Bits16)0x803c; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__loggerDefined__C, ".const:ti_sysbios_gates_GateMutex_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Module__loggerDefined ti_sysbios_gates_GateMutex_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__loggerObj__C, ".const:ti_sysbios_gates_GateMutex_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Module__loggerObj ti_sysbios_gates_GateMutex_Module__loggerObj__C = ((CT__ti_sysbios_gates_GateMutex_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__loggerFxn0__C, ".const:ti_sysbios_gates_GateMutex_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Module__loggerFxn0 ti_sysbios_gates_GateMutex_Module__loggerFxn0__C = ((CT__ti_sysbios_gates_GateMutex_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__loggerFxn1__C, ".const:ti_sysbios_gates_GateMutex_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Module__loggerFxn1 ti_sysbios_gates_GateMutex_Module__loggerFxn1__C = ((CT__ti_sysbios_gates_GateMutex_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__loggerFxn2__C, ".const:ti_sysbios_gates_GateMutex_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Module__loggerFxn2 ti_sysbios_gates_GateMutex_Module__loggerFxn2__C = ((CT__ti_sysbios_gates_GateMutex_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__loggerFxn4__C, ".const:ti_sysbios_gates_GateMutex_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Module__loggerFxn4 ti_sysbios_gates_GateMutex_Module__loggerFxn4__C = ((CT__ti_sysbios_gates_GateMutex_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__loggerFxn8__C, ".const:ti_sysbios_gates_GateMutex_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Module__loggerFxn8 ti_sysbios_gates_GateMutex_Module__loggerFxn8__C = ((CT__ti_sysbios_gates_GateMutex_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__startupDoneFxn__C, ".const:ti_sysbios_gates_GateMutex_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Module__startupDoneFxn ti_sysbios_gates_GateMutex_Module__startupDoneFxn__C = ((CT__ti_sysbios_gates_GateMutex_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Object__count__C, ".const:ti_sysbios_gates_GateMutex_Object__count__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Object__count ti_sysbios_gates_GateMutex_Object__count__C = 2; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Object__heap__C, ".const:ti_sysbios_gates_GateMutex_Object__heap__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Object__heap ti_sysbios_gates_GateMutex_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Object__sizeof__C, ".const:ti_sysbios_gates_GateMutex_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Object__sizeof ti_sysbios_gates_GateMutex_Object__sizeof__C = sizeof(ti_sysbios_gates_GateMutex_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Object__table__C, ".const:ti_sysbios_gates_GateMutex_Object__table__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_Object__table ti_sysbios_gates_GateMutex_Object__table__C = ti_sysbios_gates_GateMutex_Object__table__V; - -/* A_badContext__C */ -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_A_badContext__C, ".const:ti_sysbios_gates_GateMutex_A_badContext__C"); -__FAR__ const CT__ti_sysbios_gates_GateMutex_A_badContext ti_sysbios_gates_GateMutex_A_badContext__C = (((xdc_runtime_Assert_Id)2658) << 16 | 16); - - -/* - * ======== ti.sysbios.hal.Hwi INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_hal_Hwi_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Object__PARAMS__C, ".const:ti_sysbios_hal_Hwi_Object__PARAMS__C"); -__FAR__ const ti_sysbios_hal_Hwi_Params ti_sysbios_hal_Hwi_Object__PARAMS__C = { - sizeof (ti_sysbios_hal_Hwi_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&ti_sysbios_hal_Hwi_Object__PARAMS__C.__iprms, /* instance */ - ti_sysbios_interfaces_IHwi_MaskingOption_LOWER, /* maskSetting */ - ((xdc_UArg)(0x0)), /* arg */ - 1, /* enableInt */ - (xdc_Int)(-0x0 - 1), /* eventId */ - (xdc_Int)(-0x0 - 1), /* priority */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -ti_sysbios_hal_Hwi_Module__ ti_sysbios_hal_Hwi_Module__root__V = { - {&ti_sysbios_hal_Hwi_Module__root__V.link, /* link.next */ - &ti_sysbios_hal_Hwi_Module__root__V.link}, /* link.prev */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__diagsEnabled__C, ".const:ti_sysbios_hal_Hwi_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Module__diagsEnabled ti_sysbios_hal_Hwi_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__diagsIncluded__C, ".const:ti_sysbios_hal_Hwi_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Module__diagsIncluded ti_sysbios_hal_Hwi_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__diagsMask__C, ".const:ti_sysbios_hal_Hwi_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Module__diagsMask ti_sysbios_hal_Hwi_Module__diagsMask__C = ((CT__ti_sysbios_hal_Hwi_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__gateObj__C, ".const:ti_sysbios_hal_Hwi_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Module__gateObj ti_sysbios_hal_Hwi_Module__gateObj__C = ((CT__ti_sysbios_hal_Hwi_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__gatePrms__C, ".const:ti_sysbios_hal_Hwi_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Module__gatePrms ti_sysbios_hal_Hwi_Module__gatePrms__C = ((CT__ti_sysbios_hal_Hwi_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__id__C, ".const:ti_sysbios_hal_Hwi_Module__id__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Module__id ti_sysbios_hal_Hwi_Module__id__C = (xdc_Bits16)0x802b; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__loggerDefined__C, ".const:ti_sysbios_hal_Hwi_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Module__loggerDefined ti_sysbios_hal_Hwi_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__loggerObj__C, ".const:ti_sysbios_hal_Hwi_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Module__loggerObj ti_sysbios_hal_Hwi_Module__loggerObj__C = ((CT__ti_sysbios_hal_Hwi_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__loggerFxn0__C, ".const:ti_sysbios_hal_Hwi_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Module__loggerFxn0 ti_sysbios_hal_Hwi_Module__loggerFxn0__C = ((CT__ti_sysbios_hal_Hwi_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__loggerFxn1__C, ".const:ti_sysbios_hal_Hwi_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Module__loggerFxn1 ti_sysbios_hal_Hwi_Module__loggerFxn1__C = ((CT__ti_sysbios_hal_Hwi_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__loggerFxn2__C, ".const:ti_sysbios_hal_Hwi_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Module__loggerFxn2 ti_sysbios_hal_Hwi_Module__loggerFxn2__C = ((CT__ti_sysbios_hal_Hwi_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__loggerFxn4__C, ".const:ti_sysbios_hal_Hwi_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Module__loggerFxn4 ti_sysbios_hal_Hwi_Module__loggerFxn4__C = ((CT__ti_sysbios_hal_Hwi_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__loggerFxn8__C, ".const:ti_sysbios_hal_Hwi_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Module__loggerFxn8 ti_sysbios_hal_Hwi_Module__loggerFxn8__C = ((CT__ti_sysbios_hal_Hwi_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__startupDoneFxn__C, ".const:ti_sysbios_hal_Hwi_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Module__startupDoneFxn ti_sysbios_hal_Hwi_Module__startupDoneFxn__C = ((CT__ti_sysbios_hal_Hwi_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Object__count__C, ".const:ti_sysbios_hal_Hwi_Object__count__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Object__count ti_sysbios_hal_Hwi_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Object__heap__C, ".const:ti_sysbios_hal_Hwi_Object__heap__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Object__heap ti_sysbios_hal_Hwi_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Object__sizeof__C, ".const:ti_sysbios_hal_Hwi_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Object__sizeof ti_sysbios_hal_Hwi_Object__sizeof__C = sizeof(ti_sysbios_hal_Hwi_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Object__table__C, ".const:ti_sysbios_hal_Hwi_Object__table__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_Object__table ti_sysbios_hal_Hwi_Object__table__C = 0; - -/* dispatcherAutoNestingSupport__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_dispatcherAutoNestingSupport__C, ".const:ti_sysbios_hal_Hwi_dispatcherAutoNestingSupport__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_dispatcherAutoNestingSupport ti_sysbios_hal_Hwi_dispatcherAutoNestingSupport__C = 1; - -/* dispatcherSwiSupport__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_dispatcherSwiSupport__C, ".const:ti_sysbios_hal_Hwi_dispatcherSwiSupport__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_dispatcherSwiSupport ti_sysbios_hal_Hwi_dispatcherSwiSupport__C = 1; - -/* dispatcherTaskSupport__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_dispatcherTaskSupport__C, ".const:ti_sysbios_hal_Hwi_dispatcherTaskSupport__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_dispatcherTaskSupport ti_sysbios_hal_Hwi_dispatcherTaskSupport__C = 1; - -/* dispatcherIrpTrackingSupport__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_dispatcherIrpTrackingSupport__C, ".const:ti_sysbios_hal_Hwi_dispatcherIrpTrackingSupport__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_dispatcherIrpTrackingSupport ti_sysbios_hal_Hwi_dispatcherIrpTrackingSupport__C = 1; - -/* E_stackOverflow__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_E_stackOverflow__C, ".const:ti_sysbios_hal_Hwi_E_stackOverflow__C"); -__FAR__ const CT__ti_sysbios_hal_Hwi_E_stackOverflow ti_sysbios_hal_Hwi_E_stackOverflow__C = (((xdc_runtime_Error_Id)4671) << 16 | 0); - - -/* - * ======== ti.sysbios.hal.Hwi_HwiProxy INITIALIZERS ======== - */ - - -/* - * ======== ti.sysbios.hal.Seconds INITIALIZERS ======== - */ - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Module__diagsEnabled__C, ".const:ti_sysbios_hal_Seconds_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Module__diagsEnabled ti_sysbios_hal_Seconds_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Module__diagsIncluded__C, ".const:ti_sysbios_hal_Seconds_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Module__diagsIncluded ti_sysbios_hal_Seconds_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Module__diagsMask__C, ".const:ti_sysbios_hal_Seconds_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Module__diagsMask ti_sysbios_hal_Seconds_Module__diagsMask__C = ((CT__ti_sysbios_hal_Seconds_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Module__gateObj__C, ".const:ti_sysbios_hal_Seconds_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Module__gateObj ti_sysbios_hal_Seconds_Module__gateObj__C = ((CT__ti_sysbios_hal_Seconds_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Module__gatePrms__C, ".const:ti_sysbios_hal_Seconds_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Module__gatePrms ti_sysbios_hal_Seconds_Module__gatePrms__C = ((CT__ti_sysbios_hal_Seconds_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Module__id__C, ".const:ti_sysbios_hal_Seconds_Module__id__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Module__id ti_sysbios_hal_Seconds_Module__id__C = (xdc_Bits16)0x802c; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Module__loggerDefined__C, ".const:ti_sysbios_hal_Seconds_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Module__loggerDefined ti_sysbios_hal_Seconds_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Module__loggerObj__C, ".const:ti_sysbios_hal_Seconds_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Module__loggerObj ti_sysbios_hal_Seconds_Module__loggerObj__C = ((CT__ti_sysbios_hal_Seconds_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Module__loggerFxn0__C, ".const:ti_sysbios_hal_Seconds_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Module__loggerFxn0 ti_sysbios_hal_Seconds_Module__loggerFxn0__C = ((CT__ti_sysbios_hal_Seconds_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Module__loggerFxn1__C, ".const:ti_sysbios_hal_Seconds_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Module__loggerFxn1 ti_sysbios_hal_Seconds_Module__loggerFxn1__C = ((CT__ti_sysbios_hal_Seconds_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Module__loggerFxn2__C, ".const:ti_sysbios_hal_Seconds_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Module__loggerFxn2 ti_sysbios_hal_Seconds_Module__loggerFxn2__C = ((CT__ti_sysbios_hal_Seconds_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Module__loggerFxn4__C, ".const:ti_sysbios_hal_Seconds_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Module__loggerFxn4 ti_sysbios_hal_Seconds_Module__loggerFxn4__C = ((CT__ti_sysbios_hal_Seconds_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Module__loggerFxn8__C, ".const:ti_sysbios_hal_Seconds_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Module__loggerFxn8 ti_sysbios_hal_Seconds_Module__loggerFxn8__C = ((CT__ti_sysbios_hal_Seconds_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Module__startupDoneFxn__C, ".const:ti_sysbios_hal_Seconds_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Module__startupDoneFxn ti_sysbios_hal_Seconds_Module__startupDoneFxn__C = ((CT__ti_sysbios_hal_Seconds_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Object__count__C, ".const:ti_sysbios_hal_Seconds_Object__count__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Object__count ti_sysbios_hal_Seconds_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Object__heap__C, ".const:ti_sysbios_hal_Seconds_Object__heap__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Object__heap ti_sysbios_hal_Seconds_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Object__sizeof__C, ".const:ti_sysbios_hal_Seconds_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Object__sizeof ti_sysbios_hal_Seconds_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_hal_Seconds_Object__table__C, ".const:ti_sysbios_hal_Seconds_Object__table__C"); -__FAR__ const CT__ti_sysbios_hal_Seconds_Object__table ti_sysbios_hal_Seconds_Object__table__C = 0; - - -/* - * ======== ti.sysbios.hal.Seconds_SecondsProxy INITIALIZERS ======== - */ - - -/* - * ======== ti.sysbios.heaps.HeapMem INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_heaps_HeapMem_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Object__PARAMS__C, ".const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C"); -__FAR__ const ti_sysbios_heaps_HeapMem_Params ti_sysbios_heaps_HeapMem_Object__PARAMS__C = { - sizeof (ti_sysbios_heaps_HeapMem_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&ti_sysbios_heaps_HeapMem_Object__PARAMS__C.__iprms, /* instance */ - (xdc_SizeT)0x0, /* minBlockAlign */ - ((xdc_Ptr)(0x0)), /* buf */ - ((xdc_UArg)(0x0)), /* size */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* --> ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A */ -__T1_ti_sysbios_heaps_HeapMem_Instance_State__buf ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A[30760]; - -/* Module__root__V */ -ti_sysbios_heaps_HeapMem_Module__ ti_sysbios_heaps_HeapMem_Module__root__V = { - {&ti_sysbios_heaps_HeapMem_Module__root__V.link, /* link.next */ - &ti_sysbios_heaps_HeapMem_Module__root__V.link}, /* link.prev */ -}; - -/* Object__table__V */ -ti_sysbios_heaps_HeapMem_Object__ ti_sysbios_heaps_HeapMem_Object__table__V[1] = { - {/* instance#0 */ - &ti_sysbios_heaps_HeapMem_Module__FXNS__C, - ((xdc_UArg)(0x8)), /* align */ - ((void*)ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A), /* buf */ - { - ((ti_sysbios_heaps_HeapMem_Header*)0), /* next */ - ((xdc_UArg)(0x7828)), /* size */ - }, /* head */ - (xdc_SizeT)0x8, /* minBlockAlign */ - }, -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C, ".const:ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Module__diagsEnabled ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C, ".const:ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Module__diagsIncluded ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__diagsMask__C, ".const:ti_sysbios_heaps_HeapMem_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Module__diagsMask ti_sysbios_heaps_HeapMem_Module__diagsMask__C = ((CT__ti_sysbios_heaps_HeapMem_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__gateObj__C, ".const:ti_sysbios_heaps_HeapMem_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Module__gateObj ti_sysbios_heaps_HeapMem_Module__gateObj__C = ((CT__ti_sysbios_heaps_HeapMem_Module__gateObj)((void*)(xdc_runtime_IGateProvider_Handle)&ti_sysbios_gates_GateMutex_Object__table__V[0])); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__gatePrms__C, ".const:ti_sysbios_heaps_HeapMem_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Module__gatePrms ti_sysbios_heaps_HeapMem_Module__gatePrms__C = ((CT__ti_sysbios_heaps_HeapMem_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__id__C, ".const:ti_sysbios_heaps_HeapMem_Module__id__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Module__id ti_sysbios_heaps_HeapMem_Module__id__C = (xdc_Bits16)0x8040; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__loggerDefined__C, ".const:ti_sysbios_heaps_HeapMem_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Module__loggerDefined ti_sysbios_heaps_HeapMem_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__loggerObj__C, ".const:ti_sysbios_heaps_HeapMem_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Module__loggerObj ti_sysbios_heaps_HeapMem_Module__loggerObj__C = ((CT__ti_sysbios_heaps_HeapMem_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__loggerFxn0__C, ".const:ti_sysbios_heaps_HeapMem_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn0 ti_sysbios_heaps_HeapMem_Module__loggerFxn0__C = ((CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__loggerFxn1__C, ".const:ti_sysbios_heaps_HeapMem_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn1 ti_sysbios_heaps_HeapMem_Module__loggerFxn1__C = ((CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__loggerFxn2__C, ".const:ti_sysbios_heaps_HeapMem_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn2 ti_sysbios_heaps_HeapMem_Module__loggerFxn2__C = ((CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__loggerFxn4__C, ".const:ti_sysbios_heaps_HeapMem_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn4 ti_sysbios_heaps_HeapMem_Module__loggerFxn4__C = ((CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__loggerFxn8__C, ".const:ti_sysbios_heaps_HeapMem_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn8 ti_sysbios_heaps_HeapMem_Module__loggerFxn8__C = ((CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__startupDoneFxn__C, ".const:ti_sysbios_heaps_HeapMem_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Module__startupDoneFxn ti_sysbios_heaps_HeapMem_Module__startupDoneFxn__C = ((CT__ti_sysbios_heaps_HeapMem_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Object__count__C, ".const:ti_sysbios_heaps_HeapMem_Object__count__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Object__count ti_sysbios_heaps_HeapMem_Object__count__C = 1; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Object__heap__C, ".const:ti_sysbios_heaps_HeapMem_Object__heap__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Object__heap ti_sysbios_heaps_HeapMem_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Object__sizeof__C, ".const:ti_sysbios_heaps_HeapMem_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Object__sizeof ti_sysbios_heaps_HeapMem_Object__sizeof__C = sizeof(ti_sysbios_heaps_HeapMem_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Object__table__C, ".const:ti_sysbios_heaps_HeapMem_Object__table__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_Object__table ti_sysbios_heaps_HeapMem_Object__table__C = ti_sysbios_heaps_HeapMem_Object__table__V; - -/* A_zeroBlock__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_A_zeroBlock__C, ".const:ti_sysbios_heaps_HeapMem_A_zeroBlock__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_A_zeroBlock ti_sysbios_heaps_HeapMem_A_zeroBlock__C = (((xdc_runtime_Assert_Id)3344) << 16 | 16); - -/* A_heapSize__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_A_heapSize__C, ".const:ti_sysbios_heaps_HeapMem_A_heapSize__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_A_heapSize ti_sysbios_heaps_HeapMem_A_heapSize__C = (((xdc_runtime_Assert_Id)3380) << 16 | 16); - -/* A_align__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_A_align__C, ".const:ti_sysbios_heaps_HeapMem_A_align__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_A_align ti_sysbios_heaps_HeapMem_A_align__C = (((xdc_runtime_Assert_Id)3425) << 16 | 16); - -/* E_memory__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_E_memory__C, ".const:ti_sysbios_heaps_HeapMem_E_memory__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_E_memory ti_sysbios_heaps_HeapMem_E_memory__C = (((xdc_runtime_Error_Id)4917) << 16 | 0); - -/* A_invalidFree__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_A_invalidFree__C, ".const:ti_sysbios_heaps_HeapMem_A_invalidFree__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_A_invalidFree ti_sysbios_heaps_HeapMem_A_invalidFree__C = (((xdc_runtime_Assert_Id)3316) << 16 | 16); - -/* primaryHeapBaseAddr__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr__C, ".const:ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr__C = ((CT__ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr)0); - -/* primaryHeapEndAddr__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_primaryHeapEndAddr__C, ".const:ti_sysbios_heaps_HeapMem_primaryHeapEndAddr__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_primaryHeapEndAddr ti_sysbios_heaps_HeapMem_primaryHeapEndAddr__C = ((CT__ti_sysbios_heaps_HeapMem_primaryHeapEndAddr)0); - -/* reqAlign__C */ -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_reqAlign__C, ".const:ti_sysbios_heaps_HeapMem_reqAlign__C"); -__FAR__ const CT__ti_sysbios_heaps_HeapMem_reqAlign ti_sysbios_heaps_HeapMem_reqAlign__C = (xdc_SizeT)0x8; - - -/* - * ======== ti.sysbios.heaps.HeapMem_Module_GateProxy INITIALIZERS ======== - */ - - -/* - * ======== ti.sysbios.io.DEV INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_io_DEV_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Object__PARAMS__C, ".const:ti_sysbios_io_DEV_Object__PARAMS__C"); -__FAR__ const ti_sysbios_io_DEV_Params ti_sysbios_io_DEV_Object__PARAMS__C = { - sizeof (ti_sysbios_io_DEV_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&ti_sysbios_io_DEV_Object__PARAMS__C.__iprms, /* instance */ - ((xdc_Ptr)0), /* deviceParams */ - ((xdc_Void(*)(xdc_Void))0), /* initFxn */ - (xdc_Int)0x0, /* devid */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -ti_sysbios_io_DEV_Module__ ti_sysbios_io_DEV_Module__root__V = { - {&ti_sysbios_io_DEV_Module__root__V.link, /* link.next */ - &ti_sysbios_io_DEV_Module__root__V.link}, /* link.prev */ -}; - -/* --> ti_sysbios_io_DEV_Module_State_0_table__A */ -__T1_ti_sysbios_io_DEV_Module_State__table ti_sysbios_io_DEV_Module_State_0_table__A[8] = { - 0, /* [0] */ - 0, /* [1] */ - 0, /* [2] */ - 0, /* [3] */ - 0, /* [4] */ - 0, /* [5] */ - 0, /* [6] */ - 0, /* [7] */ -}; - -/* Module__state__V */ -#if defined (__ICCARM__) -#pragma location = ".data_ti_sysbios_io_DEV_Module__state__V" -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -ti_sysbios_io_DEV_Module_State__ ti_sysbios_io_DEV_Module__state__V __attribute__ ((section(".data_ti_sysbios_io_DEV_Module__state__V"))); -#endif -#endif -ti_sysbios_io_DEV_Module_State__ ti_sysbios_io_DEV_Module__state__V = { - ((void*)ti_sysbios_io_DEV_Module_State_0_table__A), /* table */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Module__diagsEnabled__C, ".const:ti_sysbios_io_DEV_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Module__diagsEnabled ti_sysbios_io_DEV_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Module__diagsIncluded__C, ".const:ti_sysbios_io_DEV_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Module__diagsIncluded ti_sysbios_io_DEV_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Module__diagsMask__C, ".const:ti_sysbios_io_DEV_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Module__diagsMask ti_sysbios_io_DEV_Module__diagsMask__C = ((CT__ti_sysbios_io_DEV_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Module__gateObj__C, ".const:ti_sysbios_io_DEV_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Module__gateObj ti_sysbios_io_DEV_Module__gateObj__C = ((CT__ti_sysbios_io_DEV_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Module__gatePrms__C, ".const:ti_sysbios_io_DEV_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Module__gatePrms ti_sysbios_io_DEV_Module__gatePrms__C = ((CT__ti_sysbios_io_DEV_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Module__id__C, ".const:ti_sysbios_io_DEV_Module__id__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Module__id ti_sysbios_io_DEV_Module__id__C = (xdc_Bits16)0x8038; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Module__loggerDefined__C, ".const:ti_sysbios_io_DEV_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Module__loggerDefined ti_sysbios_io_DEV_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Module__loggerObj__C, ".const:ti_sysbios_io_DEV_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Module__loggerObj ti_sysbios_io_DEV_Module__loggerObj__C = ((CT__ti_sysbios_io_DEV_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Module__loggerFxn0__C, ".const:ti_sysbios_io_DEV_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Module__loggerFxn0 ti_sysbios_io_DEV_Module__loggerFxn0__C = ((CT__ti_sysbios_io_DEV_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Module__loggerFxn1__C, ".const:ti_sysbios_io_DEV_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Module__loggerFxn1 ti_sysbios_io_DEV_Module__loggerFxn1__C = ((CT__ti_sysbios_io_DEV_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Module__loggerFxn2__C, ".const:ti_sysbios_io_DEV_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Module__loggerFxn2 ti_sysbios_io_DEV_Module__loggerFxn2__C = ((CT__ti_sysbios_io_DEV_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Module__loggerFxn4__C, ".const:ti_sysbios_io_DEV_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Module__loggerFxn4 ti_sysbios_io_DEV_Module__loggerFxn4__C = ((CT__ti_sysbios_io_DEV_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Module__loggerFxn8__C, ".const:ti_sysbios_io_DEV_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Module__loggerFxn8 ti_sysbios_io_DEV_Module__loggerFxn8__C = ((CT__ti_sysbios_io_DEV_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Module__startupDoneFxn__C, ".const:ti_sysbios_io_DEV_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Module__startupDoneFxn ti_sysbios_io_DEV_Module__startupDoneFxn__C = ((CT__ti_sysbios_io_DEV_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Object__count__C, ".const:ti_sysbios_io_DEV_Object__count__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Object__count ti_sysbios_io_DEV_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Object__heap__C, ".const:ti_sysbios_io_DEV_Object__heap__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Object__heap ti_sysbios_io_DEV_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Object__sizeof__C, ".const:ti_sysbios_io_DEV_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Object__sizeof ti_sysbios_io_DEV_Object__sizeof__C = sizeof(ti_sysbios_io_DEV_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_Object__table__C, ".const:ti_sysbios_io_DEV_Object__table__C"); -__FAR__ const CT__ti_sysbios_io_DEV_Object__table ti_sysbios_io_DEV_Object__table__C = 0; - -/* tableSize__C */ -#pragma DATA_SECTION(ti_sysbios_io_DEV_tableSize__C, ".const:ti_sysbios_io_DEV_tableSize__C"); -__FAR__ const CT__ti_sysbios_io_DEV_tableSize ti_sysbios_io_DEV_tableSize__C = (xdc_UInt)0x8; - - -/* - * ======== ti.sysbios.io.GIO INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_io_GIO_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Object__PARAMS__C, ".const:ti_sysbios_io_GIO_Object__PARAMS__C"); -__FAR__ const ti_sysbios_io_GIO_Params ti_sysbios_io_GIO_Object__PARAMS__C = { - sizeof (ti_sysbios_io_GIO_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&ti_sysbios_io_GIO_Object__PARAMS__C.__iprms, /* instance */ - ti_sysbios_io_GIO_Model_STANDARD, /* model */ - (xdc_Int)0x2, /* numPackets */ - (xdc_UInt)(-0x0 - 1), /* timeout */ - 0, /* sync */ - ((xdc_Ptr)0), /* chanParams */ - ((xdc_Ptr)0), /* packets */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -ti_sysbios_io_GIO_Module__ ti_sysbios_io_GIO_Module__root__V = { - {&ti_sysbios_io_GIO_Module__root__V.link, /* link.next */ - &ti_sysbios_io_GIO_Module__root__V.link}, /* link.prev */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Module__diagsEnabled__C, ".const:ti_sysbios_io_GIO_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Module__diagsEnabled ti_sysbios_io_GIO_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Module__diagsIncluded__C, ".const:ti_sysbios_io_GIO_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Module__diagsIncluded ti_sysbios_io_GIO_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Module__diagsMask__C, ".const:ti_sysbios_io_GIO_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Module__diagsMask ti_sysbios_io_GIO_Module__diagsMask__C = ((CT__ti_sysbios_io_GIO_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Module__gateObj__C, ".const:ti_sysbios_io_GIO_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Module__gateObj ti_sysbios_io_GIO_Module__gateObj__C = ((CT__ti_sysbios_io_GIO_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Module__gatePrms__C, ".const:ti_sysbios_io_GIO_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Module__gatePrms ti_sysbios_io_GIO_Module__gatePrms__C = ((CT__ti_sysbios_io_GIO_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Module__id__C, ".const:ti_sysbios_io_GIO_Module__id__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Module__id ti_sysbios_io_GIO_Module__id__C = (xdc_Bits16)0x8039; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Module__loggerDefined__C, ".const:ti_sysbios_io_GIO_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Module__loggerDefined ti_sysbios_io_GIO_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Module__loggerObj__C, ".const:ti_sysbios_io_GIO_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Module__loggerObj ti_sysbios_io_GIO_Module__loggerObj__C = ((CT__ti_sysbios_io_GIO_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Module__loggerFxn0__C, ".const:ti_sysbios_io_GIO_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Module__loggerFxn0 ti_sysbios_io_GIO_Module__loggerFxn0__C = ((CT__ti_sysbios_io_GIO_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Module__loggerFxn1__C, ".const:ti_sysbios_io_GIO_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Module__loggerFxn1 ti_sysbios_io_GIO_Module__loggerFxn1__C = ((CT__ti_sysbios_io_GIO_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Module__loggerFxn2__C, ".const:ti_sysbios_io_GIO_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Module__loggerFxn2 ti_sysbios_io_GIO_Module__loggerFxn2__C = ((CT__ti_sysbios_io_GIO_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Module__loggerFxn4__C, ".const:ti_sysbios_io_GIO_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Module__loggerFxn4 ti_sysbios_io_GIO_Module__loggerFxn4__C = ((CT__ti_sysbios_io_GIO_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Module__loggerFxn8__C, ".const:ti_sysbios_io_GIO_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Module__loggerFxn8 ti_sysbios_io_GIO_Module__loggerFxn8__C = ((CT__ti_sysbios_io_GIO_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Module__startupDoneFxn__C, ".const:ti_sysbios_io_GIO_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Module__startupDoneFxn ti_sysbios_io_GIO_Module__startupDoneFxn__C = ((CT__ti_sysbios_io_GIO_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Object__count__C, ".const:ti_sysbios_io_GIO_Object__count__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Object__count ti_sysbios_io_GIO_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Object__heap__C, ".const:ti_sysbios_io_GIO_Object__heap__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Object__heap ti_sysbios_io_GIO_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Object__sizeof__C, ".const:ti_sysbios_io_GIO_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Object__sizeof ti_sysbios_io_GIO_Object__sizeof__C = sizeof(ti_sysbios_io_GIO_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_Object__table__C, ".const:ti_sysbios_io_GIO_Object__table__C"); -__FAR__ const CT__ti_sysbios_io_GIO_Object__table ti_sysbios_io_GIO_Object__table__C = 0; - -/* E_notFound__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_E_notFound__C, ".const:ti_sysbios_io_GIO_E_notFound__C"); -__FAR__ const CT__ti_sysbios_io_GIO_E_notFound ti_sysbios_io_GIO_E_notFound__C = (((xdc_runtime_Error_Id)4750) << 16 | 0); - -/* E_createFailed__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_E_createFailed__C, ".const:ti_sysbios_io_GIO_E_createFailed__C"); -__FAR__ const CT__ti_sysbios_io_GIO_E_createFailed ti_sysbios_io_GIO_E_createFailed__C = (((xdc_runtime_Error_Id)4780) << 16 | 0); - -/* A_badModel__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_A_badModel__C, ".const:ti_sysbios_io_GIO_A_badModel__C"); -__FAR__ const CT__ti_sysbios_io_GIO_A_badModel ti_sysbios_io_GIO_A_badModel__C = (((xdc_runtime_Assert_Id)2245) << 16 | 16); - -/* deviceTableSize__C */ -#pragma DATA_SECTION(ti_sysbios_io_GIO_deviceTableSize__C, ".const:ti_sysbios_io_GIO_deviceTableSize__C"); -__FAR__ const CT__ti_sysbios_io_GIO_deviceTableSize ti_sysbios_io_GIO_deviceTableSize__C = (xdc_Int)0x8; - - -/* - * ======== ti.sysbios.knl.Clock INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Clock_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Object__PARAMS__C, ".const:ti_sysbios_knl_Clock_Object__PARAMS__C"); -__FAR__ const ti_sysbios_knl_Clock_Params ti_sysbios_knl_Clock_Object__PARAMS__C = { - sizeof (ti_sysbios_knl_Clock_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&ti_sysbios_knl_Clock_Object__PARAMS__C.__iprms, /* instance */ - 0, /* startFlag */ - (xdc_UInt32)0x0, /* period */ - ((xdc_UArg)0), /* arg */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -ti_sysbios_knl_Clock_Module__ ti_sysbios_knl_Clock_Module__root__V = { - {&ti_sysbios_knl_Clock_Module__root__V.link, /* link.next */ - &ti_sysbios_knl_Clock_Module__root__V.link}, /* link.prev */ -}; - -/* Module__state__V */ -#if defined (__ICCARM__) -#pragma location = ".data_ti_sysbios_knl_Clock_Module__state__V" -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -ti_sysbios_knl_Clock_Module_State__ ti_sysbios_knl_Clock_Module__state__V __attribute__ ((section(".data_ti_sysbios_knl_Clock_Module__state__V"))); -#endif -#endif -ti_sysbios_knl_Clock_Module_State__ ti_sysbios_knl_Clock_Module__state__V = { - (xdc_UInt32)0x0, /* ticks */ - (xdc_UInt)0x0, /* swiCount */ - (ti_sysbios_knl_Clock_TimerProxy_Handle)&ti_sysbios_family_arm_lm4_Timer_Object__table__V[0], /* timer */ - (ti_sysbios_knl_Swi_Handle)&ti_sysbios_knl_Swi_Object__table__V[0], /* swi */ - (xdc_UInt)0x1, /* numTickSkip */ - (xdc_UInt32)0x1, /* nextScheduledTick */ - (xdc_UInt32)0x0, /* maxSkippable */ - 0, /* inWorkFunc */ - 0, /* startDuringWorkFunc */ - 0, /* ticking */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Clock_Module__state__V.Object_field_clockQ.elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Clock_Module__state__V.Object_field_clockQ.elem)), /* prev */ - }, /* elem */ - }, /* Object_field_clockQ */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__diagsEnabled__C, ".const:ti_sysbios_knl_Clock_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Module__diagsEnabled ti_sysbios_knl_Clock_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__diagsIncluded__C, ".const:ti_sysbios_knl_Clock_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Module__diagsIncluded ti_sysbios_knl_Clock_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__diagsMask__C, ".const:ti_sysbios_knl_Clock_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Module__diagsMask ti_sysbios_knl_Clock_Module__diagsMask__C = ((CT__ti_sysbios_knl_Clock_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__gateObj__C, ".const:ti_sysbios_knl_Clock_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Module__gateObj ti_sysbios_knl_Clock_Module__gateObj__C = ((CT__ti_sysbios_knl_Clock_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__gatePrms__C, ".const:ti_sysbios_knl_Clock_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Module__gatePrms ti_sysbios_knl_Clock_Module__gatePrms__C = ((CT__ti_sysbios_knl_Clock_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__id__C, ".const:ti_sysbios_knl_Clock_Module__id__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Module__id ti_sysbios_knl_Clock_Module__id__C = (xdc_Bits16)0x8021; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__loggerDefined__C, ".const:ti_sysbios_knl_Clock_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Module__loggerDefined ti_sysbios_knl_Clock_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__loggerObj__C, ".const:ti_sysbios_knl_Clock_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Module__loggerObj ti_sysbios_knl_Clock_Module__loggerObj__C = ((CT__ti_sysbios_knl_Clock_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__loggerFxn0__C, ".const:ti_sysbios_knl_Clock_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Module__loggerFxn0 ti_sysbios_knl_Clock_Module__loggerFxn0__C = ((CT__ti_sysbios_knl_Clock_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__loggerFxn1__C, ".const:ti_sysbios_knl_Clock_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Module__loggerFxn1 ti_sysbios_knl_Clock_Module__loggerFxn1__C = ((CT__ti_sysbios_knl_Clock_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__loggerFxn2__C, ".const:ti_sysbios_knl_Clock_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Module__loggerFxn2 ti_sysbios_knl_Clock_Module__loggerFxn2__C = ((CT__ti_sysbios_knl_Clock_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__loggerFxn4__C, ".const:ti_sysbios_knl_Clock_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Module__loggerFxn4 ti_sysbios_knl_Clock_Module__loggerFxn4__C = ((CT__ti_sysbios_knl_Clock_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__loggerFxn8__C, ".const:ti_sysbios_knl_Clock_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Module__loggerFxn8 ti_sysbios_knl_Clock_Module__loggerFxn8__C = ((CT__ti_sysbios_knl_Clock_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__startupDoneFxn__C, ".const:ti_sysbios_knl_Clock_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Module__startupDoneFxn ti_sysbios_knl_Clock_Module__startupDoneFxn__C = ((CT__ti_sysbios_knl_Clock_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Object__count__C, ".const:ti_sysbios_knl_Clock_Object__count__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Object__count ti_sysbios_knl_Clock_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Object__heap__C, ".const:ti_sysbios_knl_Clock_Object__heap__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Object__heap ti_sysbios_knl_Clock_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Object__sizeof__C, ".const:ti_sysbios_knl_Clock_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Object__sizeof ti_sysbios_knl_Clock_Object__sizeof__C = sizeof(ti_sysbios_knl_Clock_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Object__table__C, ".const:ti_sysbios_knl_Clock_Object__table__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_Object__table ti_sysbios_knl_Clock_Object__table__C = 0; - -/* LW_delayed__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_LW_delayed__C, ".const:ti_sysbios_knl_Clock_LW_delayed__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_LW_delayed ti_sysbios_knl_Clock_LW_delayed__C = (((xdc_runtime_Log_Event)5217) << 16 | 1024); - -/* LM_tick__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_LM_tick__C, ".const:ti_sysbios_knl_Clock_LM_tick__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_LM_tick ti_sysbios_knl_Clock_LM_tick__C = (((xdc_runtime_Log_Event)5239) << 16 | 768); - -/* LM_begin__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_LM_begin__C, ".const:ti_sysbios_knl_Clock_LM_begin__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_LM_begin ti_sysbios_knl_Clock_LM_begin__C = (((xdc_runtime_Log_Event)5257) << 16 | 768); - -/* A_clockDisabled__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_A_clockDisabled__C, ".const:ti_sysbios_knl_Clock_A_clockDisabled__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_A_clockDisabled ti_sysbios_knl_Clock_A_clockDisabled__C = (((xdc_runtime_Assert_Id)765) << 16 | 16); - -/* A_badThreadType__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_A_badThreadType__C, ".const:ti_sysbios_knl_Clock_A_badThreadType__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_A_badThreadType ti_sysbios_knl_Clock_A_badThreadType__C = (((xdc_runtime_Assert_Id)846) << 16 | 16); - -/* serviceMargin__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_serviceMargin__C, ".const:ti_sysbios_knl_Clock_serviceMargin__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_serviceMargin ti_sysbios_knl_Clock_serviceMargin__C = (xdc_UInt32)0x0; - -/* tickSource__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_tickSource__C, ".const:ti_sysbios_knl_Clock_tickSource__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_tickSource ti_sysbios_knl_Clock_tickSource__C = ti_sysbios_knl_Clock_TickSource_TIMER; - -/* tickMode__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_tickMode__C, ".const:ti_sysbios_knl_Clock_tickMode__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_tickMode ti_sysbios_knl_Clock_tickMode__C = ti_sysbios_knl_Clock_TickMode_PERIODIC; - -/* timerId__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_timerId__C, ".const:ti_sysbios_knl_Clock_timerId__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_timerId ti_sysbios_knl_Clock_timerId__C = (xdc_UInt)0x7; - -/* tickPeriod__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_tickPeriod__C, ".const:ti_sysbios_knl_Clock_tickPeriod__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_tickPeriod ti_sysbios_knl_Clock_tickPeriod__C = (xdc_UInt32)0x3e8; - -/* doTickFunc__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_doTickFunc__C, ".const:ti_sysbios_knl_Clock_doTickFunc__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_doTickFunc ti_sysbios_knl_Clock_doTickFunc__C = ((CT__ti_sysbios_knl_Clock_doTickFunc)((xdc_Fxn)ti_sysbios_knl_Clock_doTick__I)); - -/* triggerClock__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Clock_triggerClock__C, ".const:ti_sysbios_knl_Clock_triggerClock__C"); -__FAR__ const CT__ti_sysbios_knl_Clock_triggerClock ti_sysbios_knl_Clock_triggerClock__C = 0; - - -/* - * ======== ti.sysbios.knl.Clock_TimerProxy INITIALIZERS ======== - */ - - -/* - * ======== ti.sysbios.knl.Event INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Event_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Object__PARAMS__C, ".const:ti_sysbios_knl_Event_Object__PARAMS__C"); -__FAR__ const ti_sysbios_knl_Event_Params ti_sysbios_knl_Event_Object__PARAMS__C = { - sizeof (ti_sysbios_knl_Event_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&ti_sysbios_knl_Event_Object__PARAMS__C.__iprms, /* instance */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -ti_sysbios_knl_Event_Module__ ti_sysbios_knl_Event_Module__root__V = { - {&ti_sysbios_knl_Event_Module__root__V.link, /* link.next */ - &ti_sysbios_knl_Event_Module__root__V.link}, /* link.prev */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Module__diagsEnabled__C, ".const:ti_sysbios_knl_Event_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Module__diagsEnabled ti_sysbios_knl_Event_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Module__diagsIncluded__C, ".const:ti_sysbios_knl_Event_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Module__diagsIncluded ti_sysbios_knl_Event_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Module__diagsMask__C, ".const:ti_sysbios_knl_Event_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Module__diagsMask ti_sysbios_knl_Event_Module__diagsMask__C = ((CT__ti_sysbios_knl_Event_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Module__gateObj__C, ".const:ti_sysbios_knl_Event_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Module__gateObj ti_sysbios_knl_Event_Module__gateObj__C = ((CT__ti_sysbios_knl_Event_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Module__gatePrms__C, ".const:ti_sysbios_knl_Event_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Module__gatePrms ti_sysbios_knl_Event_Module__gatePrms__C = ((CT__ti_sysbios_knl_Event_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Module__id__C, ".const:ti_sysbios_knl_Event_Module__id__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Module__id ti_sysbios_knl_Event_Module__id__C = (xdc_Bits16)0x8024; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Module__loggerDefined__C, ".const:ti_sysbios_knl_Event_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Module__loggerDefined ti_sysbios_knl_Event_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Module__loggerObj__C, ".const:ti_sysbios_knl_Event_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Module__loggerObj ti_sysbios_knl_Event_Module__loggerObj__C = ((CT__ti_sysbios_knl_Event_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Module__loggerFxn0__C, ".const:ti_sysbios_knl_Event_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Module__loggerFxn0 ti_sysbios_knl_Event_Module__loggerFxn0__C = ((CT__ti_sysbios_knl_Event_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Module__loggerFxn1__C, ".const:ti_sysbios_knl_Event_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Module__loggerFxn1 ti_sysbios_knl_Event_Module__loggerFxn1__C = ((CT__ti_sysbios_knl_Event_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Module__loggerFxn2__C, ".const:ti_sysbios_knl_Event_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Module__loggerFxn2 ti_sysbios_knl_Event_Module__loggerFxn2__C = ((CT__ti_sysbios_knl_Event_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Module__loggerFxn4__C, ".const:ti_sysbios_knl_Event_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Module__loggerFxn4 ti_sysbios_knl_Event_Module__loggerFxn4__C = ((CT__ti_sysbios_knl_Event_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Module__loggerFxn8__C, ".const:ti_sysbios_knl_Event_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Module__loggerFxn8 ti_sysbios_knl_Event_Module__loggerFxn8__C = ((CT__ti_sysbios_knl_Event_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Module__startupDoneFxn__C, ".const:ti_sysbios_knl_Event_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Module__startupDoneFxn ti_sysbios_knl_Event_Module__startupDoneFxn__C = ((CT__ti_sysbios_knl_Event_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Object__count__C, ".const:ti_sysbios_knl_Event_Object__count__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Object__count ti_sysbios_knl_Event_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Object__heap__C, ".const:ti_sysbios_knl_Event_Object__heap__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Object__heap ti_sysbios_knl_Event_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Object__sizeof__C, ".const:ti_sysbios_knl_Event_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Object__sizeof ti_sysbios_knl_Event_Object__sizeof__C = sizeof(ti_sysbios_knl_Event_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_Object__table__C, ".const:ti_sysbios_knl_Event_Object__table__C"); -__FAR__ const CT__ti_sysbios_knl_Event_Object__table ti_sysbios_knl_Event_Object__table__C = 0; - -/* LM_post__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_LM_post__C, ".const:ti_sysbios_knl_Event_LM_post__C"); -__FAR__ const CT__ti_sysbios_knl_Event_LM_post ti_sysbios_knl_Event_LM_post__C = (((xdc_runtime_Log_Event)5289) << 16 | 768); - -/* LM_pend__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_LM_pend__C, ".const:ti_sysbios_knl_Event_LM_pend__C"); -__FAR__ const CT__ti_sysbios_knl_Event_LM_pend ti_sysbios_knl_Event_LM_pend__C = (((xdc_runtime_Log_Event)5343) << 16 | 768); - -/* A_nullEventMasks__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_A_nullEventMasks__C, ".const:ti_sysbios_knl_Event_A_nullEventMasks__C"); -__FAR__ const CT__ti_sysbios_knl_Event_A_nullEventMasks ti_sysbios_knl_Event_A_nullEventMasks__C = (((xdc_runtime_Assert_Id)916) << 16 | 16); - -/* A_nullEventId__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_A_nullEventId__C, ".const:ti_sysbios_knl_Event_A_nullEventId__C"); -__FAR__ const CT__ti_sysbios_knl_Event_A_nullEventId ti_sysbios_knl_Event_A_nullEventId__C = (((xdc_runtime_Assert_Id)963) << 16 | 16); - -/* A_eventInUse__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_A_eventInUse__C, ".const:ti_sysbios_knl_Event_A_eventInUse__C"); -__FAR__ const CT__ti_sysbios_knl_Event_A_eventInUse ti_sysbios_knl_Event_A_eventInUse__C = (((xdc_runtime_Assert_Id)1002) << 16 | 16); - -/* A_badContext__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_A_badContext__C, ".const:ti_sysbios_knl_Event_A_badContext__C"); -__FAR__ const CT__ti_sysbios_knl_Event_A_badContext ti_sysbios_knl_Event_A_badContext__C = (((xdc_runtime_Assert_Id)1045) << 16 | 16); - -/* A_pendTaskDisabled__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Event_A_pendTaskDisabled__C, ".const:ti_sysbios_knl_Event_A_pendTaskDisabled__C"); -__FAR__ const CT__ti_sysbios_knl_Event_A_pendTaskDisabled ti_sysbios_knl_Event_A_pendTaskDisabled__C = (((xdc_runtime_Assert_Id)1108) << 16 | 16); - - -/* - * ======== ti.sysbios.knl.Idle INITIALIZERS ======== - */ - -/* --> ti_sysbios_knl_Idle_funcList__A */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_funcList__A, ".const:ti_sysbios_knl_Idle_funcList__A"); -const __T1_ti_sysbios_knl_Idle_funcList ti_sysbios_knl_Idle_funcList__A[1] = { - ((xdc_Void(*)(xdc_Void))((xdc_Fxn)ti_sysbios_hal_Hwi_checkStack)), /* [0] */ -}; - -/* --> ti_sysbios_knl_Idle_coreList__A */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_coreList__A, ".const:ti_sysbios_knl_Idle_coreList__A"); -const __T1_ti_sysbios_knl_Idle_coreList ti_sysbios_knl_Idle_coreList__A[1] = { - (xdc_UInt)0x0, /* [0] */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__diagsEnabled__C, ".const:ti_sysbios_knl_Idle_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Module__diagsEnabled ti_sysbios_knl_Idle_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__diagsIncluded__C, ".const:ti_sysbios_knl_Idle_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Module__diagsIncluded ti_sysbios_knl_Idle_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__diagsMask__C, ".const:ti_sysbios_knl_Idle_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Module__diagsMask ti_sysbios_knl_Idle_Module__diagsMask__C = ((CT__ti_sysbios_knl_Idle_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__gateObj__C, ".const:ti_sysbios_knl_Idle_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Module__gateObj ti_sysbios_knl_Idle_Module__gateObj__C = ((CT__ti_sysbios_knl_Idle_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__gatePrms__C, ".const:ti_sysbios_knl_Idle_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Module__gatePrms ti_sysbios_knl_Idle_Module__gatePrms__C = ((CT__ti_sysbios_knl_Idle_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__id__C, ".const:ti_sysbios_knl_Idle_Module__id__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Module__id ti_sysbios_knl_Idle_Module__id__C = (xdc_Bits16)0x8022; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__loggerDefined__C, ".const:ti_sysbios_knl_Idle_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Module__loggerDefined ti_sysbios_knl_Idle_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__loggerObj__C, ".const:ti_sysbios_knl_Idle_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Module__loggerObj ti_sysbios_knl_Idle_Module__loggerObj__C = ((CT__ti_sysbios_knl_Idle_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__loggerFxn0__C, ".const:ti_sysbios_knl_Idle_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Module__loggerFxn0 ti_sysbios_knl_Idle_Module__loggerFxn0__C = ((CT__ti_sysbios_knl_Idle_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__loggerFxn1__C, ".const:ti_sysbios_knl_Idle_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Module__loggerFxn1 ti_sysbios_knl_Idle_Module__loggerFxn1__C = ((CT__ti_sysbios_knl_Idle_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__loggerFxn2__C, ".const:ti_sysbios_knl_Idle_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Module__loggerFxn2 ti_sysbios_knl_Idle_Module__loggerFxn2__C = ((CT__ti_sysbios_knl_Idle_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__loggerFxn4__C, ".const:ti_sysbios_knl_Idle_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Module__loggerFxn4 ti_sysbios_knl_Idle_Module__loggerFxn4__C = ((CT__ti_sysbios_knl_Idle_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__loggerFxn8__C, ".const:ti_sysbios_knl_Idle_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Module__loggerFxn8 ti_sysbios_knl_Idle_Module__loggerFxn8__C = ((CT__ti_sysbios_knl_Idle_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__startupDoneFxn__C, ".const:ti_sysbios_knl_Idle_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Module__startupDoneFxn ti_sysbios_knl_Idle_Module__startupDoneFxn__C = ((CT__ti_sysbios_knl_Idle_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Object__count__C, ".const:ti_sysbios_knl_Idle_Object__count__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Object__count ti_sysbios_knl_Idle_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Object__heap__C, ".const:ti_sysbios_knl_Idle_Object__heap__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Object__heap ti_sysbios_knl_Idle_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Object__sizeof__C, ".const:ti_sysbios_knl_Idle_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Object__sizeof ti_sysbios_knl_Idle_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_Object__table__C, ".const:ti_sysbios_knl_Idle_Object__table__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_Object__table ti_sysbios_knl_Idle_Object__table__C = 0; - -/* funcList__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_funcList__C, ".const:ti_sysbios_knl_Idle_funcList__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_funcList ti_sysbios_knl_Idle_funcList__C = {1, ((__T1_ti_sysbios_knl_Idle_funcList*)ti_sysbios_knl_Idle_funcList__A)}; - -/* coreList__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Idle_coreList__C, ".const:ti_sysbios_knl_Idle_coreList__C"); -__FAR__ const CT__ti_sysbios_knl_Idle_coreList ti_sysbios_knl_Idle_coreList__C = {1, ((__T1_ti_sysbios_knl_Idle_coreList*)ti_sysbios_knl_Idle_coreList__A)}; - - -/* - * ======== ti.sysbios.knl.Intrinsics INITIALIZERS ======== - */ - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__diagsEnabled__C, ".const:ti_sysbios_knl_Intrinsics_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Module__diagsEnabled ti_sysbios_knl_Intrinsics_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__diagsIncluded__C, ".const:ti_sysbios_knl_Intrinsics_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Module__diagsIncluded ti_sysbios_knl_Intrinsics_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__diagsMask__C, ".const:ti_sysbios_knl_Intrinsics_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Module__diagsMask ti_sysbios_knl_Intrinsics_Module__diagsMask__C = ((CT__ti_sysbios_knl_Intrinsics_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__gateObj__C, ".const:ti_sysbios_knl_Intrinsics_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Module__gateObj ti_sysbios_knl_Intrinsics_Module__gateObj__C = ((CT__ti_sysbios_knl_Intrinsics_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__gatePrms__C, ".const:ti_sysbios_knl_Intrinsics_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Module__gatePrms ti_sysbios_knl_Intrinsics_Module__gatePrms__C = ((CT__ti_sysbios_knl_Intrinsics_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__id__C, ".const:ti_sysbios_knl_Intrinsics_Module__id__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Module__id ti_sysbios_knl_Intrinsics_Module__id__C = (xdc_Bits16)0x8023; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__loggerDefined__C, ".const:ti_sysbios_knl_Intrinsics_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Module__loggerDefined ti_sysbios_knl_Intrinsics_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__loggerObj__C, ".const:ti_sysbios_knl_Intrinsics_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Module__loggerObj ti_sysbios_knl_Intrinsics_Module__loggerObj__C = ((CT__ti_sysbios_knl_Intrinsics_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__loggerFxn0__C, ".const:ti_sysbios_knl_Intrinsics_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn0 ti_sysbios_knl_Intrinsics_Module__loggerFxn0__C = ((CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__loggerFxn1__C, ".const:ti_sysbios_knl_Intrinsics_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn1 ti_sysbios_knl_Intrinsics_Module__loggerFxn1__C = ((CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__loggerFxn2__C, ".const:ti_sysbios_knl_Intrinsics_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn2 ti_sysbios_knl_Intrinsics_Module__loggerFxn2__C = ((CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__loggerFxn4__C, ".const:ti_sysbios_knl_Intrinsics_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn4 ti_sysbios_knl_Intrinsics_Module__loggerFxn4__C = ((CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__loggerFxn8__C, ".const:ti_sysbios_knl_Intrinsics_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn8 ti_sysbios_knl_Intrinsics_Module__loggerFxn8__C = ((CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__startupDoneFxn__C, ".const:ti_sysbios_knl_Intrinsics_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Module__startupDoneFxn ti_sysbios_knl_Intrinsics_Module__startupDoneFxn__C = ((CT__ti_sysbios_knl_Intrinsics_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Object__count__C, ".const:ti_sysbios_knl_Intrinsics_Object__count__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Object__count ti_sysbios_knl_Intrinsics_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Object__heap__C, ".const:ti_sysbios_knl_Intrinsics_Object__heap__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Object__heap ti_sysbios_knl_Intrinsics_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Object__sizeof__C, ".const:ti_sysbios_knl_Intrinsics_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Object__sizeof ti_sysbios_knl_Intrinsics_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Object__table__C, ".const:ti_sysbios_knl_Intrinsics_Object__table__C"); -__FAR__ const CT__ti_sysbios_knl_Intrinsics_Object__table ti_sysbios_knl_Intrinsics_Object__table__C = 0; - - -/* - * ======== ti.sysbios.knl.Intrinsics_SupportProxy INITIALIZERS ======== - */ - - -/* - * ======== ti.sysbios.knl.Mailbox INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Mailbox_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Object__PARAMS__C, ".const:ti_sysbios_knl_Mailbox_Object__PARAMS__C"); -__FAR__ const ti_sysbios_knl_Mailbox_Params ti_sysbios_knl_Mailbox_Object__PARAMS__C = { - sizeof (ti_sysbios_knl_Mailbox_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&ti_sysbios_knl_Mailbox_Object__PARAMS__C.__iprms, /* instance */ - 0, /* heap */ - 0, /* readerEvent */ - (xdc_UInt)0x1, /* readerEventId */ - 0, /* writerEvent */ - (xdc_UInt)0x1, /* writerEventId */ - ((xdc_Ptr)0), /* buf */ - (xdc_UInt)0x0, /* bufSize */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -ti_sysbios_knl_Mailbox_Module__ ti_sysbios_knl_Mailbox_Module__root__V = { - {&ti_sysbios_knl_Mailbox_Module__root__V.link, /* link.next */ - &ti_sysbios_knl_Mailbox_Module__root__V.link}, /* link.prev */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Module__diagsEnabled__C, ".const:ti_sysbios_knl_Mailbox_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Module__diagsEnabled ti_sysbios_knl_Mailbox_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Module__diagsIncluded__C, ".const:ti_sysbios_knl_Mailbox_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Module__diagsIncluded ti_sysbios_knl_Mailbox_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Module__diagsMask__C, ".const:ti_sysbios_knl_Mailbox_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Module__diagsMask ti_sysbios_knl_Mailbox_Module__diagsMask__C = ((CT__ti_sysbios_knl_Mailbox_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Module__gateObj__C, ".const:ti_sysbios_knl_Mailbox_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Module__gateObj ti_sysbios_knl_Mailbox_Module__gateObj__C = ((CT__ti_sysbios_knl_Mailbox_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Module__gatePrms__C, ".const:ti_sysbios_knl_Mailbox_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Module__gatePrms ti_sysbios_knl_Mailbox_Module__gatePrms__C = ((CT__ti_sysbios_knl_Mailbox_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Module__id__C, ".const:ti_sysbios_knl_Mailbox_Module__id__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Module__id ti_sysbios_knl_Mailbox_Module__id__C = (xdc_Bits16)0x8025; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Module__loggerDefined__C, ".const:ti_sysbios_knl_Mailbox_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Module__loggerDefined ti_sysbios_knl_Mailbox_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Module__loggerObj__C, ".const:ti_sysbios_knl_Mailbox_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Module__loggerObj ti_sysbios_knl_Mailbox_Module__loggerObj__C = ((CT__ti_sysbios_knl_Mailbox_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Module__loggerFxn0__C, ".const:ti_sysbios_knl_Mailbox_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Module__loggerFxn0 ti_sysbios_knl_Mailbox_Module__loggerFxn0__C = ((CT__ti_sysbios_knl_Mailbox_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Module__loggerFxn1__C, ".const:ti_sysbios_knl_Mailbox_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Module__loggerFxn1 ti_sysbios_knl_Mailbox_Module__loggerFxn1__C = ((CT__ti_sysbios_knl_Mailbox_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Module__loggerFxn2__C, ".const:ti_sysbios_knl_Mailbox_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Module__loggerFxn2 ti_sysbios_knl_Mailbox_Module__loggerFxn2__C = ((CT__ti_sysbios_knl_Mailbox_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Module__loggerFxn4__C, ".const:ti_sysbios_knl_Mailbox_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Module__loggerFxn4 ti_sysbios_knl_Mailbox_Module__loggerFxn4__C = ((CT__ti_sysbios_knl_Mailbox_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Module__loggerFxn8__C, ".const:ti_sysbios_knl_Mailbox_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Module__loggerFxn8 ti_sysbios_knl_Mailbox_Module__loggerFxn8__C = ((CT__ti_sysbios_knl_Mailbox_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Module__startupDoneFxn__C, ".const:ti_sysbios_knl_Mailbox_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Module__startupDoneFxn ti_sysbios_knl_Mailbox_Module__startupDoneFxn__C = ((CT__ti_sysbios_knl_Mailbox_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Object__count__C, ".const:ti_sysbios_knl_Mailbox_Object__count__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Object__count ti_sysbios_knl_Mailbox_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Object__heap__C, ".const:ti_sysbios_knl_Mailbox_Object__heap__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Object__heap ti_sysbios_knl_Mailbox_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Object__sizeof__C, ".const:ti_sysbios_knl_Mailbox_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Object__sizeof ti_sysbios_knl_Mailbox_Object__sizeof__C = sizeof(ti_sysbios_knl_Mailbox_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Object__table__C, ".const:ti_sysbios_knl_Mailbox_Object__table__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_Object__table ti_sysbios_knl_Mailbox_Object__table__C = 0; - -/* A_invalidBufSize__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_A_invalidBufSize__C, ".const:ti_sysbios_knl_Mailbox_A_invalidBufSize__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_A_invalidBufSize ti_sysbios_knl_Mailbox_A_invalidBufSize__C = (((xdc_runtime_Assert_Id)1198) << 16 | 16); - -/* maxTypeAlign__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_maxTypeAlign__C, ".const:ti_sysbios_knl_Mailbox_maxTypeAlign__C"); -__FAR__ const CT__ti_sysbios_knl_Mailbox_maxTypeAlign ti_sysbios_knl_Mailbox_maxTypeAlign__C = (xdc_UInt)0x8; - - -/* - * ======== ti.sysbios.knl.Queue INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Queue_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Object__PARAMS__C, ".const:ti_sysbios_knl_Queue_Object__PARAMS__C"); -__FAR__ const ti_sysbios_knl_Queue_Params ti_sysbios_knl_Queue_Object__PARAMS__C = { - sizeof (ti_sysbios_knl_Queue_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&ti_sysbios_knl_Queue_Object__PARAMS__C.__iprms, /* instance */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -ti_sysbios_knl_Queue_Module__ ti_sysbios_knl_Queue_Module__root__V = { - {&ti_sysbios_knl_Queue_Module__root__V.link, /* link.next */ - &ti_sysbios_knl_Queue_Module__root__V.link}, /* link.prev */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__diagsEnabled__C, ".const:ti_sysbios_knl_Queue_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Module__diagsEnabled ti_sysbios_knl_Queue_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__diagsIncluded__C, ".const:ti_sysbios_knl_Queue_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Module__diagsIncluded ti_sysbios_knl_Queue_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__diagsMask__C, ".const:ti_sysbios_knl_Queue_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Module__diagsMask ti_sysbios_knl_Queue_Module__diagsMask__C = ((CT__ti_sysbios_knl_Queue_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__gateObj__C, ".const:ti_sysbios_knl_Queue_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Module__gateObj ti_sysbios_knl_Queue_Module__gateObj__C = ((CT__ti_sysbios_knl_Queue_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__gatePrms__C, ".const:ti_sysbios_knl_Queue_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Module__gatePrms ti_sysbios_knl_Queue_Module__gatePrms__C = ((CT__ti_sysbios_knl_Queue_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__id__C, ".const:ti_sysbios_knl_Queue_Module__id__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Module__id ti_sysbios_knl_Queue_Module__id__C = (xdc_Bits16)0x8026; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__loggerDefined__C, ".const:ti_sysbios_knl_Queue_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Module__loggerDefined ti_sysbios_knl_Queue_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__loggerObj__C, ".const:ti_sysbios_knl_Queue_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Module__loggerObj ti_sysbios_knl_Queue_Module__loggerObj__C = ((CT__ti_sysbios_knl_Queue_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__loggerFxn0__C, ".const:ti_sysbios_knl_Queue_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Module__loggerFxn0 ti_sysbios_knl_Queue_Module__loggerFxn0__C = ((CT__ti_sysbios_knl_Queue_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__loggerFxn1__C, ".const:ti_sysbios_knl_Queue_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Module__loggerFxn1 ti_sysbios_knl_Queue_Module__loggerFxn1__C = ((CT__ti_sysbios_knl_Queue_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__loggerFxn2__C, ".const:ti_sysbios_knl_Queue_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Module__loggerFxn2 ti_sysbios_knl_Queue_Module__loggerFxn2__C = ((CT__ti_sysbios_knl_Queue_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__loggerFxn4__C, ".const:ti_sysbios_knl_Queue_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Module__loggerFxn4 ti_sysbios_knl_Queue_Module__loggerFxn4__C = ((CT__ti_sysbios_knl_Queue_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__loggerFxn8__C, ".const:ti_sysbios_knl_Queue_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Module__loggerFxn8 ti_sysbios_knl_Queue_Module__loggerFxn8__C = ((CT__ti_sysbios_knl_Queue_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__startupDoneFxn__C, ".const:ti_sysbios_knl_Queue_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Module__startupDoneFxn ti_sysbios_knl_Queue_Module__startupDoneFxn__C = ((CT__ti_sysbios_knl_Queue_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Object__count__C, ".const:ti_sysbios_knl_Queue_Object__count__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Object__count ti_sysbios_knl_Queue_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Object__heap__C, ".const:ti_sysbios_knl_Queue_Object__heap__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Object__heap ti_sysbios_knl_Queue_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Object__sizeof__C, ".const:ti_sysbios_knl_Queue_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Object__sizeof ti_sysbios_knl_Queue_Object__sizeof__C = sizeof(ti_sysbios_knl_Queue_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Object__table__C, ".const:ti_sysbios_knl_Queue_Object__table__C"); -__FAR__ const CT__ti_sysbios_knl_Queue_Object__table ti_sysbios_knl_Queue_Object__table__C = 0; - - -/* - * ======== ti.sysbios.knl.Semaphore INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Semaphore_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Object__PARAMS__C, ".const:ti_sysbios_knl_Semaphore_Object__PARAMS__C"); -__FAR__ const ti_sysbios_knl_Semaphore_Params ti_sysbios_knl_Semaphore_Object__PARAMS__C = { - sizeof (ti_sysbios_knl_Semaphore_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&ti_sysbios_knl_Semaphore_Object__PARAMS__C.__iprms, /* instance */ - 0, /* event */ - (xdc_UInt)0x1, /* eventId */ - ti_sysbios_knl_Semaphore_Mode_COUNTING, /* mode */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -ti_sysbios_knl_Semaphore_Module__ ti_sysbios_knl_Semaphore_Module__root__V = { - {&ti_sysbios_knl_Semaphore_Module__root__V.link, /* link.next */ - &ti_sysbios_knl_Semaphore_Module__root__V.link}, /* link.prev */ -}; - -/* Object__table__V */ -ti_sysbios_knl_Semaphore_Object__ ti_sysbios_knl_Semaphore_Object__table__V[4] = { - {/* instance#0 */ - 0, /* event */ - (xdc_UInt)0x1, /* eventId */ - ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ - (xdc_UInt16)0x0, /* count */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[0].Object_field_pendQ.elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[0].Object_field_pendQ.elem)), /* prev */ - }, /* elem */ - }, /* Object_field_pendQ */ - }, - {/* instance#1 */ - 0, /* event */ - (xdc_UInt)0x1, /* eventId */ - ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ - (xdc_UInt16)0x0, /* count */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[1].Object_field_pendQ.elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[1].Object_field_pendQ.elem)), /* prev */ - }, /* elem */ - }, /* Object_field_pendQ */ - }, - {/* instance#2 */ - 0, /* event */ - (xdc_UInt)0x1, /* eventId */ - ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ - (xdc_UInt16)0x0, /* count */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[2].Object_field_pendQ.elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[2].Object_field_pendQ.elem)), /* prev */ - }, /* elem */ - }, /* Object_field_pendQ */ - }, - {/* instance#3 */ - 0, /* event */ - (xdc_UInt)0x1, /* eventId */ - ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ - (xdc_UInt16)0x0, /* count */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[3].Object_field_pendQ.elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[3].Object_field_pendQ.elem)), /* prev */ - }, /* elem */ - }, /* Object_field_pendQ */ - }, -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__diagsEnabled__C, ".const:ti_sysbios_knl_Semaphore_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Module__diagsEnabled ti_sysbios_knl_Semaphore_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__diagsIncluded__C, ".const:ti_sysbios_knl_Semaphore_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Module__diagsIncluded ti_sysbios_knl_Semaphore_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__diagsMask__C, ".const:ti_sysbios_knl_Semaphore_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Module__diagsMask ti_sysbios_knl_Semaphore_Module__diagsMask__C = ((CT__ti_sysbios_knl_Semaphore_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__gateObj__C, ".const:ti_sysbios_knl_Semaphore_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Module__gateObj ti_sysbios_knl_Semaphore_Module__gateObj__C = ((CT__ti_sysbios_knl_Semaphore_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__gatePrms__C, ".const:ti_sysbios_knl_Semaphore_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Module__gatePrms ti_sysbios_knl_Semaphore_Module__gatePrms__C = ((CT__ti_sysbios_knl_Semaphore_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__id__C, ".const:ti_sysbios_knl_Semaphore_Module__id__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Module__id ti_sysbios_knl_Semaphore_Module__id__C = (xdc_Bits16)0x8027; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__loggerDefined__C, ".const:ti_sysbios_knl_Semaphore_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Module__loggerDefined ti_sysbios_knl_Semaphore_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__loggerObj__C, ".const:ti_sysbios_knl_Semaphore_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Module__loggerObj ti_sysbios_knl_Semaphore_Module__loggerObj__C = ((CT__ti_sysbios_knl_Semaphore_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__loggerFxn0__C, ".const:ti_sysbios_knl_Semaphore_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Module__loggerFxn0 ti_sysbios_knl_Semaphore_Module__loggerFxn0__C = ((CT__ti_sysbios_knl_Semaphore_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__loggerFxn1__C, ".const:ti_sysbios_knl_Semaphore_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Module__loggerFxn1 ti_sysbios_knl_Semaphore_Module__loggerFxn1__C = ((CT__ti_sysbios_knl_Semaphore_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__loggerFxn2__C, ".const:ti_sysbios_knl_Semaphore_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Module__loggerFxn2 ti_sysbios_knl_Semaphore_Module__loggerFxn2__C = ((CT__ti_sysbios_knl_Semaphore_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__loggerFxn4__C, ".const:ti_sysbios_knl_Semaphore_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Module__loggerFxn4 ti_sysbios_knl_Semaphore_Module__loggerFxn4__C = ((CT__ti_sysbios_knl_Semaphore_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__loggerFxn8__C, ".const:ti_sysbios_knl_Semaphore_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Module__loggerFxn8 ti_sysbios_knl_Semaphore_Module__loggerFxn8__C = ((CT__ti_sysbios_knl_Semaphore_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__startupDoneFxn__C, ".const:ti_sysbios_knl_Semaphore_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Module__startupDoneFxn ti_sysbios_knl_Semaphore_Module__startupDoneFxn__C = ((CT__ti_sysbios_knl_Semaphore_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Object__count__C, ".const:ti_sysbios_knl_Semaphore_Object__count__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Object__count ti_sysbios_knl_Semaphore_Object__count__C = 4; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Object__heap__C, ".const:ti_sysbios_knl_Semaphore_Object__heap__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Object__heap ti_sysbios_knl_Semaphore_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Object__sizeof__C, ".const:ti_sysbios_knl_Semaphore_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Object__sizeof ti_sysbios_knl_Semaphore_Object__sizeof__C = sizeof(ti_sysbios_knl_Semaphore_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Object__table__C, ".const:ti_sysbios_knl_Semaphore_Object__table__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_Object__table ti_sysbios_knl_Semaphore_Object__table__C = ti_sysbios_knl_Semaphore_Object__table__V; - -/* LM_post__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_LM_post__C, ".const:ti_sysbios_knl_Semaphore_LM_post__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_LM_post ti_sysbios_knl_Semaphore_LM_post__C = (((xdc_runtime_Log_Event)5424) << 16 | 768); - -/* LM_pend__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_LM_pend__C, ".const:ti_sysbios_knl_Semaphore_LM_pend__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_LM_pend ti_sysbios_knl_Semaphore_LM_pend__C = (((xdc_runtime_Log_Event)5454) << 16 | 768); - -/* A_noEvents__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_A_noEvents__C, ".const:ti_sysbios_knl_Semaphore_A_noEvents__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_A_noEvents ti_sysbios_knl_Semaphore_A_noEvents__C = (((xdc_runtime_Assert_Id)1256) << 16 | 16); - -/* A_invTimeout__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_A_invTimeout__C, ".const:ti_sysbios_knl_Semaphore_A_invTimeout__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_A_invTimeout ti_sysbios_knl_Semaphore_A_invTimeout__C = (((xdc_runtime_Assert_Id)1311) << 16 | 16); - -/* A_badContext__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_A_badContext__C, ".const:ti_sysbios_knl_Semaphore_A_badContext__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_A_badContext ti_sysbios_knl_Semaphore_A_badContext__C = (((xdc_runtime_Assert_Id)1045) << 16 | 16); - -/* A_overflow__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_A_overflow__C, ".const:ti_sysbios_knl_Semaphore_A_overflow__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_A_overflow ti_sysbios_knl_Semaphore_A_overflow__C = (((xdc_runtime_Assert_Id)1376) << 16 | 16); - -/* A_pendTaskDisabled__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C, ".const:ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_A_pendTaskDisabled ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C = (((xdc_runtime_Assert_Id)1430) << 16 | 16); - -/* supportsEvents__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_supportsEvents__C, ".const:ti_sysbios_knl_Semaphore_supportsEvents__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_supportsEvents ti_sysbios_knl_Semaphore_supportsEvents__C = 0; - -/* supportsPriority__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_supportsPriority__C, ".const:ti_sysbios_knl_Semaphore_supportsPriority__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_supportsPriority ti_sysbios_knl_Semaphore_supportsPriority__C = 1; - -/* eventPost__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_eventPost__C, ".const:ti_sysbios_knl_Semaphore_eventPost__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_eventPost ti_sysbios_knl_Semaphore_eventPost__C = ((CT__ti_sysbios_knl_Semaphore_eventPost)0); - -/* eventSync__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_eventSync__C, ".const:ti_sysbios_knl_Semaphore_eventSync__C"); -__FAR__ const CT__ti_sysbios_knl_Semaphore_eventSync ti_sysbios_knl_Semaphore_eventSync__C = ((CT__ti_sysbios_knl_Semaphore_eventSync)0); - - -/* - * ======== ti.sysbios.knl.Swi INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Swi_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Object__PARAMS__C, ".const:ti_sysbios_knl_Swi_Object__PARAMS__C"); -__FAR__ const ti_sysbios_knl_Swi_Params ti_sysbios_knl_Swi_Object__PARAMS__C = { - sizeof (ti_sysbios_knl_Swi_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&ti_sysbios_knl_Swi_Object__PARAMS__C.__iprms, /* instance */ - ((xdc_UArg)(0x0)), /* arg0 */ - ((xdc_UArg)(0x0)), /* arg1 */ - (xdc_UInt)(-0x0 - 1), /* priority */ - (xdc_UInt)0x0, /* trigger */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -ti_sysbios_knl_Swi_Module__ ti_sysbios_knl_Swi_Module__root__V = { - {&ti_sysbios_knl_Swi_Module__root__V.link, /* link.next */ - &ti_sysbios_knl_Swi_Module__root__V.link}, /* link.prev */ -}; - -/* Object__table__V */ -ti_sysbios_knl_Swi_Object__ ti_sysbios_knl_Swi_Object__table__V[1] = { - {/* instance#0 */ - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Object__table__V[0].qElem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Object__table__V[0].qElem)), /* prev */ - }, /* qElem */ - ((xdc_Void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)ti_sysbios_knl_Clock_workFunc__E)), /* fxn */ - ((xdc_UArg)(0x0)), /* arg0 */ - ((xdc_UArg)(0x0)), /* arg1 */ - (xdc_UInt)0xf, /* priority */ - (xdc_UInt)0x8000, /* mask */ - 0, /* posted */ - (xdc_UInt)0x0, /* initTrigger */ - (xdc_UInt)0x0, /* trigger */ - (ti_sysbios_knl_Queue_Handle)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[15], /* readyQ */ - ((void*)0), /* hookEnv */ - }, -}; - -/* --> ti_sysbios_knl_Swi_Module_State_0_readyQ__A */ -__T1_ti_sysbios_knl_Swi_Module_State__readyQ ti_sysbios_knl_Swi_Module_State_0_readyQ__A[16] = { - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[0].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[0].elem)), /* prev */ - }, /* elem */ - }, /* [0] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[1].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[1].elem)), /* prev */ - }, /* elem */ - }, /* [1] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[2].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[2].elem)), /* prev */ - }, /* elem */ - }, /* [2] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[3].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[3].elem)), /* prev */ - }, /* elem */ - }, /* [3] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[4].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[4].elem)), /* prev */ - }, /* elem */ - }, /* [4] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[5].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[5].elem)), /* prev */ - }, /* elem */ - }, /* [5] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[6].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[6].elem)), /* prev */ - }, /* elem */ - }, /* [6] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[7].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[7].elem)), /* prev */ - }, /* elem */ - }, /* [7] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[8].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[8].elem)), /* prev */ - }, /* elem */ - }, /* [8] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[9].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[9].elem)), /* prev */ - }, /* elem */ - }, /* [9] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[10].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[10].elem)), /* prev */ - }, /* elem */ - }, /* [10] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[11].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[11].elem)), /* prev */ - }, /* elem */ - }, /* [11] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[12].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[12].elem)), /* prev */ - }, /* elem */ - }, /* [12] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[13].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[13].elem)), /* prev */ - }, /* elem */ - }, /* [13] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[14].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[14].elem)), /* prev */ - }, /* elem */ - }, /* [14] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[15].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[15].elem)), /* prev */ - }, /* elem */ - }, /* [15] */ -}; - -/* Module__state__V */ -#if defined (__ICCARM__) -#pragma location = ".data_ti_sysbios_knl_Swi_Module__state__V" -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -ti_sysbios_knl_Swi_Module_State__ ti_sysbios_knl_Swi_Module__state__V __attribute__ ((section(".data_ti_sysbios_knl_Swi_Module__state__V"))); -#endif -#endif -ti_sysbios_knl_Swi_Module_State__ ti_sysbios_knl_Swi_Module__state__V = { - 1, /* locked */ - (xdc_UInt)0x0, /* curSet */ - (xdc_UInt)0x0, /* curTrigger */ - 0, /* curSwi */ - 0, /* curQ */ - ((void*)ti_sysbios_knl_Swi_Module_State_0_readyQ__A), /* readyQ */ - ((void*)0), /* constructedSwis */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__diagsEnabled__C, ".const:ti_sysbios_knl_Swi_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Module__diagsEnabled ti_sysbios_knl_Swi_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__diagsIncluded__C, ".const:ti_sysbios_knl_Swi_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Module__diagsIncluded ti_sysbios_knl_Swi_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__diagsMask__C, ".const:ti_sysbios_knl_Swi_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Module__diagsMask ti_sysbios_knl_Swi_Module__diagsMask__C = ((CT__ti_sysbios_knl_Swi_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__gateObj__C, ".const:ti_sysbios_knl_Swi_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Module__gateObj ti_sysbios_knl_Swi_Module__gateObj__C = ((CT__ti_sysbios_knl_Swi_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__gatePrms__C, ".const:ti_sysbios_knl_Swi_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Module__gatePrms ti_sysbios_knl_Swi_Module__gatePrms__C = ((CT__ti_sysbios_knl_Swi_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__id__C, ".const:ti_sysbios_knl_Swi_Module__id__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Module__id ti_sysbios_knl_Swi_Module__id__C = (xdc_Bits16)0x8028; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__loggerDefined__C, ".const:ti_sysbios_knl_Swi_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Module__loggerDefined ti_sysbios_knl_Swi_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__loggerObj__C, ".const:ti_sysbios_knl_Swi_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Module__loggerObj ti_sysbios_knl_Swi_Module__loggerObj__C = ((CT__ti_sysbios_knl_Swi_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__loggerFxn0__C, ".const:ti_sysbios_knl_Swi_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Module__loggerFxn0 ti_sysbios_knl_Swi_Module__loggerFxn0__C = ((CT__ti_sysbios_knl_Swi_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__loggerFxn1__C, ".const:ti_sysbios_knl_Swi_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Module__loggerFxn1 ti_sysbios_knl_Swi_Module__loggerFxn1__C = ((CT__ti_sysbios_knl_Swi_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__loggerFxn2__C, ".const:ti_sysbios_knl_Swi_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Module__loggerFxn2 ti_sysbios_knl_Swi_Module__loggerFxn2__C = ((CT__ti_sysbios_knl_Swi_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__loggerFxn4__C, ".const:ti_sysbios_knl_Swi_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Module__loggerFxn4 ti_sysbios_knl_Swi_Module__loggerFxn4__C = ((CT__ti_sysbios_knl_Swi_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__loggerFxn8__C, ".const:ti_sysbios_knl_Swi_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Module__loggerFxn8 ti_sysbios_knl_Swi_Module__loggerFxn8__C = ((CT__ti_sysbios_knl_Swi_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__startupDoneFxn__C, ".const:ti_sysbios_knl_Swi_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Module__startupDoneFxn ti_sysbios_knl_Swi_Module__startupDoneFxn__C = ((CT__ti_sysbios_knl_Swi_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Object__count__C, ".const:ti_sysbios_knl_Swi_Object__count__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Object__count ti_sysbios_knl_Swi_Object__count__C = 1; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Object__heap__C, ".const:ti_sysbios_knl_Swi_Object__heap__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Object__heap ti_sysbios_knl_Swi_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Object__sizeof__C, ".const:ti_sysbios_knl_Swi_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Object__sizeof ti_sysbios_knl_Swi_Object__sizeof__C = sizeof(ti_sysbios_knl_Swi_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Object__table__C, ".const:ti_sysbios_knl_Swi_Object__table__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_Object__table ti_sysbios_knl_Swi_Object__table__C = ti_sysbios_knl_Swi_Object__table__V; - -/* LM_begin__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_LM_begin__C, ".const:ti_sysbios_knl_Swi_LM_begin__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_LM_begin ti_sysbios_knl_Swi_LM_begin__C = (((xdc_runtime_Log_Event)5497) << 16 | 768); - -/* LD_end__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_LD_end__C, ".const:ti_sysbios_knl_Swi_LD_end__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_LD_end ti_sysbios_knl_Swi_LD_end__C = (((xdc_runtime_Log_Event)5544) << 16 | 512); - -/* LM_post__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_LM_post__C, ".const:ti_sysbios_knl_Swi_LM_post__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_LM_post ti_sysbios_knl_Swi_LM_post__C = (((xdc_runtime_Log_Event)5562) << 16 | 768); - -/* A_swiDisabled__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_A_swiDisabled__C, ".const:ti_sysbios_knl_Swi_A_swiDisabled__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_A_swiDisabled ti_sysbios_knl_Swi_A_swiDisabled__C = (((xdc_runtime_Assert_Id)1524) << 16 | 16); - -/* A_badPriority__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_A_badPriority__C, ".const:ti_sysbios_knl_Swi_A_badPriority__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_A_badPriority ti_sysbios_knl_Swi_A_badPriority__C = (((xdc_runtime_Assert_Id)1581) << 16 | 16); - -/* numPriorities__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_numPriorities__C, ".const:ti_sysbios_knl_Swi_numPriorities__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_numPriorities ti_sysbios_knl_Swi_numPriorities__C = (xdc_UInt)0x10; - -/* hooks__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_hooks__C, ".const:ti_sysbios_knl_Swi_hooks__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_hooks ti_sysbios_knl_Swi_hooks__C = {0, 0}; - -/* taskDisable__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_taskDisable__C, ".const:ti_sysbios_knl_Swi_taskDisable__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_taskDisable ti_sysbios_knl_Swi_taskDisable__C = ((CT__ti_sysbios_knl_Swi_taskDisable)((xdc_Fxn)ti_sysbios_knl_Task_disable__E)); - -/* taskRestore__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_taskRestore__C, ".const:ti_sysbios_knl_Swi_taskRestore__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_taskRestore ti_sysbios_knl_Swi_taskRestore__C = ((CT__ti_sysbios_knl_Swi_taskRestore)((xdc_Fxn)ti_sysbios_knl_Task_restore__E)); - -/* numConstructedSwis__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Swi_numConstructedSwis__C, ".const:ti_sysbios_knl_Swi_numConstructedSwis__C"); -__FAR__ const CT__ti_sysbios_knl_Swi_numConstructedSwis ti_sysbios_knl_Swi_numConstructedSwis__C = (xdc_UInt)0x0; - - -/* - * ======== ti.sysbios.knl.Task INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Task_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Object__PARAMS__C, ".const:ti_sysbios_knl_Task_Object__PARAMS__C"); -__FAR__ const ti_sysbios_knl_Task_Params ti_sysbios_knl_Task_Object__PARAMS__C = { - sizeof (ti_sysbios_knl_Task_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&ti_sysbios_knl_Task_Object__PARAMS__C.__iprms, /* instance */ - ((xdc_UArg)(0x0)), /* arg0 */ - ((xdc_UArg)(0x0)), /* arg1 */ - (xdc_Int)0x1, /* priority */ - ((xdc_Ptr)0), /* stack */ - (xdc_SizeT)0x0, /* stackSize */ - 0, /* stackHeap */ - ((xdc_Ptr)0), /* env */ - 1, /* vitalTaskFlag */ - (xdc_UInt)0x0, /* affinity */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* --> ti_sysbios_knl_Task_Instance_State_0_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_0_stack__A[2048]; - -/* --> ti_sysbios_knl_Task_Instance_State_1_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_1_stack__A[2048]; - -/* --> ti_sysbios_knl_Task_Instance_State_2_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_2_stack__A[1024]; - -/* --> ti_sysbios_knl_Task_Instance_State_3_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_3_stack__A[4096]; - -/* --> ti_sysbios_knl_Task_Instance_State_4_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_4_stack__A[2048]; - -/* --> ti_sysbios_knl_Task_Instance_State_5_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_5_stack__A[1024]; - -/* --> ti_sysbios_knl_Task_Instance_State_6_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_6_stack__A[8192]; - -/* --> ti_sysbios_knl_Task_Instance_State_7_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_7_stack__A[2048]; - -/* --> ti_sysbios_knl_Task_Instance_State_8_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_8_stack__A[2048]; - -/* --> ti_sysbios_knl_Task_Instance_State_9_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_9_stack__A[8192]; - -/* --> ti_sysbios_knl_Task_Instance_State_10_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_10_stack__A[512]; - -/* --> ti_sysbios_knl_Task_Instance_State_11_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_11_stack__A[1024]; - -/* --> ti_sysbios_knl_Task_Instance_State_12_stack__A */ -__T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_12_stack__A[1024]; - -/* Module__root__V */ -ti_sysbios_knl_Task_Module__ ti_sysbios_knl_Task_Module__root__V = { - {&ti_sysbios_knl_Task_Module__root__V.link, /* link.next */ - &ti_sysbios_knl_Task_Module__root__V.link}, /* link.prev */ -}; - -/* Object__table__V */ -ti_sysbios_knl_Task_Object__ ti_sysbios_knl_Task_Object__table__V[13] = { - {/* instance#0 */ - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[0].qElem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[0].qElem)), /* prev */ - }, /* qElem */ - (xdc_Int)0xc, /* priority */ - (xdc_UInt)0x1000, /* mask */ - ((xdc_Ptr)0), /* context */ - ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ - ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ - (xdc_SizeT)0x800, /* stackSize */ - ((void*)ti_sysbios_knl_Task_Instance_State_0_stack__A), /* stack */ - 0, /* stackHeap */ - ((xdc_Void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)MillisecTask)), /* fxn */ - ((xdc_UArg)(0x0)), /* arg0 */ - ((xdc_UArg)(0x0)), /* arg1 */ - ((xdc_Ptr)0), /* env */ - ((void*)0), /* hookEnv */ - 1, /* vitalTaskFlag */ - 0, /* readyQ */ - (xdc_UInt)0x0, /* curCoreId */ - (xdc_UInt)0x0, /* affinity */ - }, - {/* instance#1 */ - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[1].qElem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[1].qElem)), /* prev */ - }, /* qElem */ - (xdc_Int)0xb, /* priority */ - (xdc_UInt)0x800, /* mask */ - ((xdc_Ptr)0), /* context */ - ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ - ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ - (xdc_SizeT)0x800, /* stackSize */ - ((void*)ti_sysbios_knl_Task_Instance_State_1_stack__A), /* stack */ - 0, /* stackHeap */ - ((xdc_Void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)controlTask)), /* fxn */ - ((xdc_UArg)(0x0)), /* arg0 */ - ((xdc_UArg)(0x0)), /* arg1 */ - ((xdc_Ptr)0), /* env */ - ((void*)0), /* hookEnv */ - 1, /* vitalTaskFlag */ - 0, /* readyQ */ - (xdc_UInt)0x0, /* curCoreId */ - (xdc_UInt)0x0, /* affinity */ - }, - {/* instance#2 */ - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[2].qElem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[2].qElem)), /* prev */ - }, /* qElem */ - (xdc_Int)0xa, /* priority */ - (xdc_UInt)0x400, /* mask */ - ((xdc_Ptr)0), /* context */ - ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ - ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ - (xdc_SizeT)0x400, /* stackSize */ - ((void*)ti_sysbios_knl_Task_Instance_State_2_stack__A), /* stack */ - 0, /* stackHeap */ - ((xdc_Void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)AlarmHandlingTask)), /* fxn */ - ((xdc_UArg)(0x0)), /* arg0 */ - ((xdc_UArg)(0x0)), /* arg1 */ - ((xdc_Ptr)0), /* env */ - ((void*)0), /* hookEnv */ - 1, /* vitalTaskFlag */ - 0, /* readyQ */ - (xdc_UInt)0x0, /* curCoreId */ - (xdc_UInt)0x0, /* affinity */ - }, - {/* instance#3 */ - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[3].qElem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[3].qElem)), /* prev */ - }, /* qElem */ - (xdc_Int)0x9, /* priority */ - (xdc_UInt)0x200, /* mask */ - ((xdc_Ptr)0), /* context */ - ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ - ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ - (xdc_SizeT)0x1000, /* stackSize */ - ((void*)ti_sysbios_knl_Task_Instance_State_3_stack__A), /* stack */ - 0, /* stackHeap */ - ((xdc_Void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)communicationTxTask)), /* fxn */ - ((xdc_UArg)(0x0)), /* arg0 */ - ((xdc_UArg)(0x0)), /* arg1 */ - ((xdc_Ptr)0), /* env */ - ((void*)0), /* hookEnv */ - 1, /* vitalTaskFlag */ - 0, /* readyQ */ - (xdc_UInt)0x0, /* curCoreId */ - (xdc_UInt)0x0, /* affinity */ - }, - {/* instance#4 */ - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[4].qElem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[4].qElem)), /* prev */ - }, /* qElem */ - (xdc_Int)0x8, /* priority */ - (xdc_UInt)0x100, /* mask */ - ((xdc_Ptr)0), /* context */ - ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ - ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ - (xdc_SizeT)0x800, /* stackSize */ - ((void*)ti_sysbios_knl_Task_Instance_State_4_stack__A), /* stack */ - 0, /* stackHeap */ - ((xdc_Void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)jobTask)), /* fxn */ - ((xdc_UArg)(0x0)), /* arg0 */ - ((xdc_UArg)(0x0)), /* arg1 */ - ((xdc_Ptr)0), /* env */ - ((void*)0), /* hookEnv */ - 1, /* vitalTaskFlag */ - 0, /* readyQ */ - (xdc_UInt)0x0, /* curCoreId */ - (xdc_UInt)0x0, /* affinity */ - }, - {/* instance#5 */ - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[5].qElem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[5].qElem)), /* prev */ - }, /* qElem */ - (xdc_Int)0x7, /* priority */ - (xdc_UInt)0x80, /* mask */ - ((xdc_Ptr)0), /* context */ - ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ - ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ - (xdc_SizeT)0x400, /* stackSize */ - ((void*)ti_sysbios_knl_Task_Instance_State_5_stack__A), /* stack */ - 0, /* stackHeap */ - ((xdc_Void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)HeatersControlTask)), /* fxn */ - ((xdc_UArg)(0x0)), /* arg0 */ - ((xdc_UArg)(0x0)), /* arg1 */ - ((xdc_Ptr)0), /* env */ - ((void*)0), /* hookEnv */ - 1, /* vitalTaskFlag */ - 0, /* readyQ */ - (xdc_UInt)0x0, /* curCoreId */ - (xdc_UInt)0x0, /* affinity */ - }, - {/* instance#6 */ - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[6].qElem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[6].qElem)), /* prev */ - }, /* qElem */ - (xdc_Int)0x6, /* priority */ - (xdc_UInt)0x40, /* mask */ - ((xdc_Ptr)0), /* context */ - ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ - ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ - (xdc_SizeT)0x2000, /* stackSize */ - ((void*)ti_sysbios_knl_Task_Instance_State_6_stack__A), /* stack */ - 0, /* stackHeap */ - ((xdc_Void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)communicationTask)), /* fxn */ - ((xdc_UArg)(0x0)), /* arg0 */ - ((xdc_UArg)(0x0)), /* arg1 */ - ((xdc_Ptr)0), /* env */ - ((void*)0), /* hookEnv */ - 1, /* vitalTaskFlag */ - 0, /* readyQ */ - (xdc_UInt)0x0, /* curCoreId */ - (xdc_UInt)0x0, /* affinity */ - }, - {/* instance#7 */ - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[7].qElem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[7].qElem)), /* prev */ - }, /* qElem */ - (xdc_Int)0x5, /* priority */ - (xdc_UInt)0x20, /* mask */ - ((xdc_Ptr)0), /* context */ - ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ - ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ - (xdc_SizeT)0x800, /* stackSize */ - ((void*)ti_sysbios_knl_Task_Instance_State_7_stack__A), /* stack */ - 0, /* stackHeap */ - ((xdc_Void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)MillisecLowTask)), /* fxn */ - ((xdc_UArg)(0x0)), /* arg0 */ - ((xdc_UArg)(0x0)), /* arg1 */ - ((xdc_Ptr)0), /* env */ - ((void*)0), /* hookEnv */ - 1, /* vitalTaskFlag */ - 0, /* readyQ */ - (xdc_UInt)0x0, /* curCoreId */ - (xdc_UInt)0x0, /* affinity */ - }, - {/* instance#8 */ - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[8].qElem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[8].qElem)), /* prev */ - }, /* qElem */ - (xdc_Int)0x5, /* priority */ - (xdc_UInt)0x20, /* mask */ - ((xdc_Ptr)0), /* context */ - ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ - ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ - (xdc_SizeT)0x800, /* stackSize */ - ((void*)ti_sysbios_knl_Task_Instance_State_8_stack__A), /* stack */ - 0, /* stackHeap */ - ((xdc_Void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)controlLowTask)), /* fxn */ - ((xdc_UArg)(0x0)), /* arg0 */ - ((xdc_UArg)(0x0)), /* arg1 */ - ((xdc_Ptr)0), /* env */ - ((void*)0), /* hookEnv */ - 1, /* vitalTaskFlag */ - 0, /* readyQ */ - (xdc_UInt)0x0, /* curCoreId */ - (xdc_UInt)0x0, /* affinity */ - }, - {/* instance#9 */ - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[9].qElem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[9].qElem)), /* prev */ - }, /* qElem */ - (xdc_Int)0x4, /* priority */ - (xdc_UInt)0x10, /* mask */ - ((xdc_Ptr)0), /* context */ - ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ - ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ - (xdc_SizeT)0x2000, /* stackSize */ - ((void*)ti_sysbios_knl_Task_Instance_State_9_stack__A), /* stack */ - 0, /* stackHeap */ - ((xdc_Void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)DiagnosticsTask)), /* fxn */ - ((xdc_UArg)(0x0)), /* arg0 */ - ((xdc_UArg)(0x0)), /* arg1 */ - ((xdc_Ptr)0), /* env */ - ((void*)0), /* hookEnv */ - 1, /* vitalTaskFlag */ - 0, /* readyQ */ - (xdc_UInt)0x0, /* curCoreId */ - (xdc_UInt)0x0, /* affinity */ - }, - {/* instance#10 */ - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[10].qElem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[10].qElem)), /* prev */ - }, /* qElem */ - (xdc_Int)0x3, /* priority */ - (xdc_UInt)0x8, /* mask */ - ((xdc_Ptr)0), /* context */ - ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ - ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ - (xdc_SizeT)0x200, /* stackSize */ - ((void*)ti_sysbios_knl_Task_Instance_State_10_stack__A), /* stack */ - 0, /* stackHeap */ - ((xdc_Void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)ADCProcessTask)), /* fxn */ - ((xdc_UArg)(0x0)), /* arg0 */ - ((xdc_UArg)(0x0)), /* arg1 */ - ((xdc_Ptr)0), /* env */ - ((void*)0), /* hookEnv */ - 1, /* vitalTaskFlag */ - 0, /* readyQ */ - (xdc_UInt)0x0, /* curCoreId */ - (xdc_UInt)0x0, /* affinity */ - }, - {/* instance#11 */ - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[11].qElem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[11].qElem)), /* prev */ - }, /* qElem */ - (xdc_Int)0x3, /* priority */ - (xdc_UInt)0x8, /* mask */ - ((xdc_Ptr)0), /* context */ - ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ - ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ - (xdc_SizeT)0x400, /* stackSize */ - ((void*)ti_sysbios_knl_Task_Instance_State_11_stack__A), /* stack */ - 0, /* stackHeap */ - ((xdc_Void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)reportService)), /* fxn */ - ((xdc_UArg)(0x0)), /* arg0 */ - ((xdc_UArg)(0x0)), /* arg1 */ - ((xdc_Ptr)0), /* env */ - ((void*)0), /* hookEnv */ - 1, /* vitalTaskFlag */ - 0, /* readyQ */ - (xdc_UInt)0x0, /* curCoreId */ - (xdc_UInt)0x0, /* affinity */ - }, - {/* instance#12 */ - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[12].qElem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[12].qElem)), /* prev */ - }, /* qElem */ - (xdc_Int)0x4, /* priority */ - (xdc_UInt)0x10, /* mask */ - ((xdc_Ptr)0), /* context */ - ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ - ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ - (xdc_SizeT)0x400, /* stackSize */ - ((void*)ti_sysbios_knl_Task_Instance_State_12_stack__A), /* stack */ - 0, /* stackHeap */ - ((xdc_Void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)updateTask)), /* fxn */ - ((xdc_UArg)(0x0)), /* arg0 */ - ((xdc_UArg)(0x0)), /* arg1 */ - ((xdc_Ptr)0), /* env */ - ((void*)0), /* hookEnv */ - 1, /* vitalTaskFlag */ - 0, /* readyQ */ - (xdc_UInt)0x0, /* curCoreId */ - (xdc_UInt)0x0, /* affinity */ - }, -}; - -/* --> ti_sysbios_knl_Task_Module_State_0_readyQ__A */ -__T1_ti_sysbios_knl_Task_Module_State__readyQ ti_sysbios_knl_Task_Module_State_0_readyQ__A[16] = { - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[0].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[0].elem)), /* prev */ - }, /* elem */ - }, /* [0] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[1].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[1].elem)), /* prev */ - }, /* elem */ - }, /* [1] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[2].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[2].elem)), /* prev */ - }, /* elem */ - }, /* [2] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[3].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[3].elem)), /* prev */ - }, /* elem */ - }, /* [3] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[4].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[4].elem)), /* prev */ - }, /* elem */ - }, /* [4] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[5].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[5].elem)), /* prev */ - }, /* elem */ - }, /* [5] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[6].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[6].elem)), /* prev */ - }, /* elem */ - }, /* [6] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[7].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[7].elem)), /* prev */ - }, /* elem */ - }, /* [7] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[8].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[8].elem)), /* prev */ - }, /* elem */ - }, /* [8] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[9].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[9].elem)), /* prev */ - }, /* elem */ - }, /* [9] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[10].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[10].elem)), /* prev */ - }, /* elem */ - }, /* [10] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[11].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[11].elem)), /* prev */ - }, /* elem */ - }, /* [11] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[12].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[12].elem)), /* prev */ - }, /* elem */ - }, /* [12] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[13].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[13].elem)), /* prev */ - }, /* elem */ - }, /* [13] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[14].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[14].elem)), /* prev */ - }, /* elem */ - }, /* [14] */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[15].elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[15].elem)), /* prev */ - }, /* elem */ - }, /* [15] */ -}; - -/* --> ti_sysbios_knl_Task_Module_State_0_idleTask__A */ -__T1_ti_sysbios_knl_Task_Module_State__idleTask ti_sysbios_knl_Task_Module_State_0_idleTask__A[1] = { - 0, /* [0] */ -}; - -/* Module__state__V */ -#if defined (__ICCARM__) -#pragma location = ".data_ti_sysbios_knl_Task_Module__state__V" -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -ti_sysbios_knl_Task_Module_State__ ti_sysbios_knl_Task_Module__state__V __attribute__ ((section(".data_ti_sysbios_knl_Task_Module__state__V"))); -#endif -#endif -ti_sysbios_knl_Task_Module_State__ ti_sysbios_knl_Task_Module__state__V = { - 1, /* locked */ - (xdc_UInt)0x0, /* curSet */ - 0, /* workFlag */ - (xdc_UInt)0xd, /* vitalTasks */ - 0, /* curTask */ - 0, /* curQ */ - ((void*)ti_sysbios_knl_Task_Module_State_0_readyQ__A), /* readyQ */ - ((void*)0), /* smpCurSet */ - ((void*)0), /* smpCurMask */ - ((void*)0), /* smpCurTask */ - ((void*)0), /* smpReadyQ */ - ((void*)ti_sysbios_knl_Task_Module_State_0_idleTask__A), /* idleTask */ - ((void*)0), /* constructedTasks */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module__state__V.Object_field_inactiveQ.elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module__state__V.Object_field_inactiveQ.elem)), /* prev */ - }, /* elem */ - }, /* Object_field_inactiveQ */ - { - { - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module__state__V.Object_field_terminatedQ.elem)), /* next */ - ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module__state__V.Object_field_terminatedQ.elem)), /* prev */ - }, /* elem */ - }, /* Object_field_terminatedQ */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Module__diagsEnabled__C, ".const:ti_sysbios_knl_Task_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Module__diagsEnabled ti_sysbios_knl_Task_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Module__diagsIncluded__C, ".const:ti_sysbios_knl_Task_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Module__diagsIncluded ti_sysbios_knl_Task_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Module__diagsMask__C, ".const:ti_sysbios_knl_Task_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Module__diagsMask ti_sysbios_knl_Task_Module__diagsMask__C = ((CT__ti_sysbios_knl_Task_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Module__gateObj__C, ".const:ti_sysbios_knl_Task_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Module__gateObj ti_sysbios_knl_Task_Module__gateObj__C = ((CT__ti_sysbios_knl_Task_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Module__gatePrms__C, ".const:ti_sysbios_knl_Task_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Module__gatePrms ti_sysbios_knl_Task_Module__gatePrms__C = ((CT__ti_sysbios_knl_Task_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Module__id__C, ".const:ti_sysbios_knl_Task_Module__id__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Module__id ti_sysbios_knl_Task_Module__id__C = (xdc_Bits16)0x8029; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Module__loggerDefined__C, ".const:ti_sysbios_knl_Task_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Module__loggerDefined ti_sysbios_knl_Task_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Module__loggerObj__C, ".const:ti_sysbios_knl_Task_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Module__loggerObj ti_sysbios_knl_Task_Module__loggerObj__C = ((CT__ti_sysbios_knl_Task_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Module__loggerFxn0__C, ".const:ti_sysbios_knl_Task_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Module__loggerFxn0 ti_sysbios_knl_Task_Module__loggerFxn0__C = ((CT__ti_sysbios_knl_Task_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Module__loggerFxn1__C, ".const:ti_sysbios_knl_Task_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Module__loggerFxn1 ti_sysbios_knl_Task_Module__loggerFxn1__C = ((CT__ti_sysbios_knl_Task_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Module__loggerFxn2__C, ".const:ti_sysbios_knl_Task_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Module__loggerFxn2 ti_sysbios_knl_Task_Module__loggerFxn2__C = ((CT__ti_sysbios_knl_Task_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Module__loggerFxn4__C, ".const:ti_sysbios_knl_Task_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Module__loggerFxn4 ti_sysbios_knl_Task_Module__loggerFxn4__C = ((CT__ti_sysbios_knl_Task_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Module__loggerFxn8__C, ".const:ti_sysbios_knl_Task_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Module__loggerFxn8 ti_sysbios_knl_Task_Module__loggerFxn8__C = ((CT__ti_sysbios_knl_Task_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Module__startupDoneFxn__C, ".const:ti_sysbios_knl_Task_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Module__startupDoneFxn ti_sysbios_knl_Task_Module__startupDoneFxn__C = ((CT__ti_sysbios_knl_Task_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Object__count__C, ".const:ti_sysbios_knl_Task_Object__count__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Object__count ti_sysbios_knl_Task_Object__count__C = 13; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Object__heap__C, ".const:ti_sysbios_knl_Task_Object__heap__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Object__heap ti_sysbios_knl_Task_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Object__sizeof__C, ".const:ti_sysbios_knl_Task_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Object__sizeof ti_sysbios_knl_Task_Object__sizeof__C = sizeof(ti_sysbios_knl_Task_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_Object__table__C, ".const:ti_sysbios_knl_Task_Object__table__C"); -__FAR__ const CT__ti_sysbios_knl_Task_Object__table ti_sysbios_knl_Task_Object__table__C = ti_sysbios_knl_Task_Object__table__V; - -/* LM_switch__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_LM_switch__C, ".const:ti_sysbios_knl_Task_LM_switch__C"); -__FAR__ const CT__ti_sysbios_knl_Task_LM_switch ti_sysbios_knl_Task_LM_switch__C = (((xdc_runtime_Log_Event)5602) << 16 | 768); - -/* LM_sleep__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_LM_sleep__C, ".const:ti_sysbios_knl_Task_LM_sleep__C"); -__FAR__ const CT__ti_sysbios_knl_Task_LM_sleep ti_sysbios_knl_Task_LM_sleep__C = (((xdc_runtime_Log_Event)5670) << 16 | 768); - -/* LD_ready__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_LD_ready__C, ".const:ti_sysbios_knl_Task_LD_ready__C"); -__FAR__ const CT__ti_sysbios_knl_Task_LD_ready ti_sysbios_knl_Task_LD_ready__C = (((xdc_runtime_Log_Event)5715) << 16 | 512); - -/* LD_block__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_LD_block__C, ".const:ti_sysbios_knl_Task_LD_block__C"); -__FAR__ const CT__ti_sysbios_knl_Task_LD_block ti_sysbios_knl_Task_LD_block__C = (((xdc_runtime_Log_Event)5756) << 16 | 512); - -/* LM_yield__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_LM_yield__C, ".const:ti_sysbios_knl_Task_LM_yield__C"); -__FAR__ const CT__ti_sysbios_knl_Task_LM_yield ti_sysbios_knl_Task_LM_yield__C = (((xdc_runtime_Log_Event)5788) << 16 | 768); - -/* LM_setPri__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_LM_setPri__C, ".const:ti_sysbios_knl_Task_LM_setPri__C"); -__FAR__ const CT__ti_sysbios_knl_Task_LM_setPri ti_sysbios_knl_Task_LM_setPri__C = (((xdc_runtime_Log_Event)5836) << 16 | 768); - -/* LD_exit__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_LD_exit__C, ".const:ti_sysbios_knl_Task_LD_exit__C"); -__FAR__ const CT__ti_sysbios_knl_Task_LD_exit ti_sysbios_knl_Task_LD_exit__C = (((xdc_runtime_Log_Event)5892) << 16 | 512); - -/* LM_setAffinity__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_LM_setAffinity__C, ".const:ti_sysbios_knl_Task_LM_setAffinity__C"); -__FAR__ const CT__ti_sysbios_knl_Task_LM_setAffinity ti_sysbios_knl_Task_LM_setAffinity__C = (((xdc_runtime_Log_Event)5923) << 16 | 768); - -/* LM_schedule__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_LM_schedule__C, ".const:ti_sysbios_knl_Task_LM_schedule__C"); -__FAR__ const CT__ti_sysbios_knl_Task_LM_schedule ti_sysbios_knl_Task_LM_schedule__C = (((xdc_runtime_Log_Event)6006) << 16 | 1024); - -/* LM_noWork__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_LM_noWork__C, ".const:ti_sysbios_knl_Task_LM_noWork__C"); -__FAR__ const CT__ti_sysbios_knl_Task_LM_noWork ti_sysbios_knl_Task_LM_noWork__C = (((xdc_runtime_Log_Event)6092) << 16 | 1024); - -/* E_stackOverflow__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_E_stackOverflow__C, ".const:ti_sysbios_knl_Task_E_stackOverflow__C"); -__FAR__ const CT__ti_sysbios_knl_Task_E_stackOverflow ti_sysbios_knl_Task_E_stackOverflow__C = (((xdc_runtime_Error_Id)4546) << 16 | 0); - -/* E_spOutOfBounds__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_E_spOutOfBounds__C, ".const:ti_sysbios_knl_Task_E_spOutOfBounds__C"); -__FAR__ const CT__ti_sysbios_knl_Task_E_spOutOfBounds ti_sysbios_knl_Task_E_spOutOfBounds__C = (((xdc_runtime_Error_Id)4589) << 16 | 0); - -/* E_deleteNotAllowed__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_E_deleteNotAllowed__C, ".const:ti_sysbios_knl_Task_E_deleteNotAllowed__C"); -__FAR__ const CT__ti_sysbios_knl_Task_E_deleteNotAllowed ti_sysbios_knl_Task_E_deleteNotAllowed__C = (((xdc_runtime_Error_Id)4640) << 16 | 0); - -/* A_badThreadType__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_A_badThreadType__C, ".const:ti_sysbios_knl_Task_A_badThreadType__C"); -__FAR__ const CT__ti_sysbios_knl_Task_A_badThreadType ti_sysbios_knl_Task_A_badThreadType__C = (((xdc_runtime_Assert_Id)1630) << 16 | 16); - -/* A_badTaskState__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_A_badTaskState__C, ".const:ti_sysbios_knl_Task_A_badTaskState__C"); -__FAR__ const CT__ti_sysbios_knl_Task_A_badTaskState ti_sysbios_knl_Task_A_badTaskState__C = (((xdc_runtime_Assert_Id)1699) << 16 | 16); - -/* A_noPendElem__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_A_noPendElem__C, ".const:ti_sysbios_knl_Task_A_noPendElem__C"); -__FAR__ const CT__ti_sysbios_knl_Task_A_noPendElem ti_sysbios_knl_Task_A_noPendElem__C = (((xdc_runtime_Assert_Id)1753) << 16 | 16); - -/* A_taskDisabled__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_A_taskDisabled__C, ".const:ti_sysbios_knl_Task_A_taskDisabled__C"); -__FAR__ const CT__ti_sysbios_knl_Task_A_taskDisabled ti_sysbios_knl_Task_A_taskDisabled__C = (((xdc_runtime_Assert_Id)1807) << 16 | 16); - -/* A_badPriority__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_A_badPriority__C, ".const:ti_sysbios_knl_Task_A_badPriority__C"); -__FAR__ const CT__ti_sysbios_knl_Task_A_badPriority ti_sysbios_knl_Task_A_badPriority__C = (((xdc_runtime_Assert_Id)1870) << 16 | 16); - -/* A_badTimeout__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_A_badTimeout__C, ".const:ti_sysbios_knl_Task_A_badTimeout__C"); -__FAR__ const CT__ti_sysbios_knl_Task_A_badTimeout ti_sysbios_knl_Task_A_badTimeout__C = (((xdc_runtime_Assert_Id)1920) << 16 | 16); - -/* A_badAffinity__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_A_badAffinity__C, ".const:ti_sysbios_knl_Task_A_badAffinity__C"); -__FAR__ const CT__ti_sysbios_knl_Task_A_badAffinity ti_sysbios_knl_Task_A_badAffinity__C = (((xdc_runtime_Assert_Id)1955) << 16 | 16); - -/* A_sleepTaskDisabled__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_A_sleepTaskDisabled__C, ".const:ti_sysbios_knl_Task_A_sleepTaskDisabled__C"); -__FAR__ const CT__ti_sysbios_knl_Task_A_sleepTaskDisabled ti_sysbios_knl_Task_A_sleepTaskDisabled__C = (((xdc_runtime_Assert_Id)1988) << 16 | 16); - -/* A_invalidCoreId__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_A_invalidCoreId__C, ".const:ti_sysbios_knl_Task_A_invalidCoreId__C"); -__FAR__ const CT__ti_sysbios_knl_Task_A_invalidCoreId ti_sysbios_knl_Task_A_invalidCoreId__C = (((xdc_runtime_Assert_Id)2072) << 16 | 16); - -/* numPriorities__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_numPriorities__C, ".const:ti_sysbios_knl_Task_numPriorities__C"); -__FAR__ const CT__ti_sysbios_knl_Task_numPriorities ti_sysbios_knl_Task_numPriorities__C = (xdc_UInt)0x10; - -/* defaultStackSize__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_defaultStackSize__C, ".const:ti_sysbios_knl_Task_defaultStackSize__C"); -__FAR__ const CT__ti_sysbios_knl_Task_defaultStackSize ti_sysbios_knl_Task_defaultStackSize__C = (xdc_SizeT)0x400; - -/* defaultStackHeap__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_defaultStackHeap__C, ".const:ti_sysbios_knl_Task_defaultStackHeap__C"); -__FAR__ const CT__ti_sysbios_knl_Task_defaultStackHeap ti_sysbios_knl_Task_defaultStackHeap__C = 0; - -/* allBlockedFunc__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_allBlockedFunc__C, ".const:ti_sysbios_knl_Task_allBlockedFunc__C"); -__FAR__ const CT__ti_sysbios_knl_Task_allBlockedFunc ti_sysbios_knl_Task_allBlockedFunc__C = ((CT__ti_sysbios_knl_Task_allBlockedFunc)0); - -/* initStackFlag__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_initStackFlag__C, ".const:ti_sysbios_knl_Task_initStackFlag__C"); -__FAR__ const CT__ti_sysbios_knl_Task_initStackFlag ti_sysbios_knl_Task_initStackFlag__C = 1; - -/* checkStackFlag__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_checkStackFlag__C, ".const:ti_sysbios_knl_Task_checkStackFlag__C"); -__FAR__ const CT__ti_sysbios_knl_Task_checkStackFlag ti_sysbios_knl_Task_checkStackFlag__C = 1; - -/* deleteTerminatedTasks__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_deleteTerminatedTasks__C, ".const:ti_sysbios_knl_Task_deleteTerminatedTasks__C"); -__FAR__ const CT__ti_sysbios_knl_Task_deleteTerminatedTasks ti_sysbios_knl_Task_deleteTerminatedTasks__C = 0; - -/* hooks__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_hooks__C, ".const:ti_sysbios_knl_Task_hooks__C"); -__FAR__ const CT__ti_sysbios_knl_Task_hooks ti_sysbios_knl_Task_hooks__C = {0, 0}; - -/* numConstructedTasks__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_numConstructedTasks__C, ".const:ti_sysbios_knl_Task_numConstructedTasks__C"); -__FAR__ const CT__ti_sysbios_knl_Task_numConstructedTasks ti_sysbios_knl_Task_numConstructedTasks__C = (xdc_UInt)0x0; - -/* startupHookFunc__C */ -#pragma DATA_SECTION(ti_sysbios_knl_Task_startupHookFunc__C, ".const:ti_sysbios_knl_Task_startupHookFunc__C"); -__FAR__ const CT__ti_sysbios_knl_Task_startupHookFunc ti_sysbios_knl_Task_startupHookFunc__C = ((CT__ti_sysbios_knl_Task_startupHookFunc)0); - - -/* - * ======== ti.sysbios.knl.Task_SupportProxy INITIALIZERS ======== - */ - - -/* - * ======== ti.sysbios.xdcruntime.SemThreadSupport INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_xdcruntime_SemThreadSupport_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Object__PARAMS__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Object__PARAMS__C"); -__FAR__ const ti_sysbios_xdcruntime_SemThreadSupport_Params ti_sysbios_xdcruntime_SemThreadSupport_Object__PARAMS__C = { - sizeof (ti_sysbios_xdcruntime_SemThreadSupport_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&ti_sysbios_xdcruntime_SemThreadSupport_Object__PARAMS__C.__iprms, /* instance */ - xdc_runtime_knl_ISemaphore_Mode_COUNTING, /* mode */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -ti_sysbios_xdcruntime_SemThreadSupport_Module__ ti_sysbios_xdcruntime_SemThreadSupport_Module__root__V = { - {&ti_sysbios_xdcruntime_SemThreadSupport_Module__root__V.link, /* link.next */ - &ti_sysbios_xdcruntime_SemThreadSupport_Module__root__V.link}, /* link.prev */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Module__diagsEnabled__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Module__diagsEnabled__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__diagsEnabled ti_sysbios_xdcruntime_SemThreadSupport_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Module__diagsIncluded__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Module__diagsIncluded__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__diagsIncluded ti_sysbios_xdcruntime_SemThreadSupport_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Module__diagsMask__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Module__diagsMask__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__diagsMask ti_sysbios_xdcruntime_SemThreadSupport_Module__diagsMask__C = ((CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Module__gateObj__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Module__gateObj__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__gateObj ti_sysbios_xdcruntime_SemThreadSupport_Module__gateObj__C = ((CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Module__gatePrms__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Module__gatePrms__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__gatePrms ti_sysbios_xdcruntime_SemThreadSupport_Module__gatePrms__C = ((CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Module__id__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Module__id__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__id ti_sysbios_xdcruntime_SemThreadSupport_Module__id__C = (xdc_Bits16)0x803e; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerDefined__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerDefined__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerDefined ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerObj__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerObj__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerObj ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerObj__C = ((CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn0__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn0__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn0 ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn0__C = ((CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn1__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn1__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn1 ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn1__C = ((CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn2__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn2__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn2 ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn2__C = ((CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn4__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn4__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn4 ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn4__C = ((CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn8__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn8__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn8 ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn8__C = ((CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Module__startupDoneFxn__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Module__startupDoneFxn__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__startupDoneFxn ti_sysbios_xdcruntime_SemThreadSupport_Module__startupDoneFxn__C = ((CT__ti_sysbios_xdcruntime_SemThreadSupport_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Object__count__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Object__count__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Object__count ti_sysbios_xdcruntime_SemThreadSupport_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Object__heap__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Object__heap__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Object__heap ti_sysbios_xdcruntime_SemThreadSupport_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Object__sizeof__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Object__sizeof__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Object__sizeof ti_sysbios_xdcruntime_SemThreadSupport_Object__sizeof__C = sizeof(ti_sysbios_xdcruntime_SemThreadSupport_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Object__table__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Object__table__C"); -__FAR__ const CT__ti_sysbios_xdcruntime_SemThreadSupport_Object__table ti_sysbios_xdcruntime_SemThreadSupport_Object__table__C = 0; - - -/* - * ======== xdc.runtime.Assert INITIALIZERS ======== - */ - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Module__diagsEnabled__C, ".const:xdc_runtime_Assert_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_Assert_Module__diagsEnabled xdc_runtime_Assert_Module__diagsEnabled__C = (xdc_Bits32)0x10; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Module__diagsIncluded__C, ".const:xdc_runtime_Assert_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_Assert_Module__diagsIncluded xdc_runtime_Assert_Module__diagsIncluded__C = (xdc_Bits32)0x10; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Module__diagsMask__C, ".const:xdc_runtime_Assert_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_Assert_Module__diagsMask xdc_runtime_Assert_Module__diagsMask__C = ((CT__xdc_runtime_Assert_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Module__gateObj__C, ".const:xdc_runtime_Assert_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_Assert_Module__gateObj xdc_runtime_Assert_Module__gateObj__C = ((CT__xdc_runtime_Assert_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Module__gatePrms__C, ".const:xdc_runtime_Assert_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_Assert_Module__gatePrms xdc_runtime_Assert_Module__gatePrms__C = ((CT__xdc_runtime_Assert_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Module__id__C, ".const:xdc_runtime_Assert_Module__id__C"); -__FAR__ const CT__xdc_runtime_Assert_Module__id xdc_runtime_Assert_Module__id__C = (xdc_Bits16)0x8002; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Module__loggerDefined__C, ".const:xdc_runtime_Assert_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_Assert_Module__loggerDefined xdc_runtime_Assert_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Module__loggerObj__C, ".const:xdc_runtime_Assert_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_Assert_Module__loggerObj xdc_runtime_Assert_Module__loggerObj__C = ((CT__xdc_runtime_Assert_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Module__loggerFxn0__C, ".const:xdc_runtime_Assert_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_Assert_Module__loggerFxn0 xdc_runtime_Assert_Module__loggerFxn0__C = ((CT__xdc_runtime_Assert_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Module__loggerFxn1__C, ".const:xdc_runtime_Assert_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_Assert_Module__loggerFxn1 xdc_runtime_Assert_Module__loggerFxn1__C = ((CT__xdc_runtime_Assert_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Module__loggerFxn2__C, ".const:xdc_runtime_Assert_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_Assert_Module__loggerFxn2 xdc_runtime_Assert_Module__loggerFxn2__C = ((CT__xdc_runtime_Assert_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Module__loggerFxn4__C, ".const:xdc_runtime_Assert_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_Assert_Module__loggerFxn4 xdc_runtime_Assert_Module__loggerFxn4__C = ((CT__xdc_runtime_Assert_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Module__loggerFxn8__C, ".const:xdc_runtime_Assert_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_Assert_Module__loggerFxn8 xdc_runtime_Assert_Module__loggerFxn8__C = ((CT__xdc_runtime_Assert_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Module__startupDoneFxn__C, ".const:xdc_runtime_Assert_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_Assert_Module__startupDoneFxn xdc_runtime_Assert_Module__startupDoneFxn__C = ((CT__xdc_runtime_Assert_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Object__count__C, ".const:xdc_runtime_Assert_Object__count__C"); -__FAR__ const CT__xdc_runtime_Assert_Object__count xdc_runtime_Assert_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Object__heap__C, ".const:xdc_runtime_Assert_Object__heap__C"); -__FAR__ const CT__xdc_runtime_Assert_Object__heap xdc_runtime_Assert_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Object__sizeof__C, ".const:xdc_runtime_Assert_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_Assert_Object__sizeof xdc_runtime_Assert_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_Object__table__C, ".const:xdc_runtime_Assert_Object__table__C"); -__FAR__ const CT__xdc_runtime_Assert_Object__table xdc_runtime_Assert_Object__table__C = 0; - -/* E_assertFailed__C */ -#pragma DATA_SECTION(xdc_runtime_Assert_E_assertFailed__C, ".const:xdc_runtime_Assert_E_assertFailed__C"); -__FAR__ const CT__xdc_runtime_Assert_E_assertFailed xdc_runtime_Assert_E_assertFailed__C = (((xdc_runtime_Error_Id)3687) << 16 | 0); - - -/* - * ======== xdc.runtime.Core INITIALIZERS ======== - */ - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Module__diagsEnabled__C, ".const:xdc_runtime_Core_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_Core_Module__diagsEnabled xdc_runtime_Core_Module__diagsEnabled__C = (xdc_Bits32)0x10; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Module__diagsIncluded__C, ".const:xdc_runtime_Core_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_Core_Module__diagsIncluded xdc_runtime_Core_Module__diagsIncluded__C = (xdc_Bits32)0x10; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Module__diagsMask__C, ".const:xdc_runtime_Core_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_Core_Module__diagsMask xdc_runtime_Core_Module__diagsMask__C = ((CT__xdc_runtime_Core_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Module__gateObj__C, ".const:xdc_runtime_Core_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_Core_Module__gateObj xdc_runtime_Core_Module__gateObj__C = ((CT__xdc_runtime_Core_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Module__gatePrms__C, ".const:xdc_runtime_Core_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_Core_Module__gatePrms xdc_runtime_Core_Module__gatePrms__C = ((CT__xdc_runtime_Core_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Module__id__C, ".const:xdc_runtime_Core_Module__id__C"); -__FAR__ const CT__xdc_runtime_Core_Module__id xdc_runtime_Core_Module__id__C = (xdc_Bits16)0x8003; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Module__loggerDefined__C, ".const:xdc_runtime_Core_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_Core_Module__loggerDefined xdc_runtime_Core_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Module__loggerObj__C, ".const:xdc_runtime_Core_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_Core_Module__loggerObj xdc_runtime_Core_Module__loggerObj__C = ((CT__xdc_runtime_Core_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Module__loggerFxn0__C, ".const:xdc_runtime_Core_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_Core_Module__loggerFxn0 xdc_runtime_Core_Module__loggerFxn0__C = ((CT__xdc_runtime_Core_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Module__loggerFxn1__C, ".const:xdc_runtime_Core_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_Core_Module__loggerFxn1 xdc_runtime_Core_Module__loggerFxn1__C = ((CT__xdc_runtime_Core_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Module__loggerFxn2__C, ".const:xdc_runtime_Core_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_Core_Module__loggerFxn2 xdc_runtime_Core_Module__loggerFxn2__C = ((CT__xdc_runtime_Core_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Module__loggerFxn4__C, ".const:xdc_runtime_Core_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_Core_Module__loggerFxn4 xdc_runtime_Core_Module__loggerFxn4__C = ((CT__xdc_runtime_Core_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Module__loggerFxn8__C, ".const:xdc_runtime_Core_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_Core_Module__loggerFxn8 xdc_runtime_Core_Module__loggerFxn8__C = ((CT__xdc_runtime_Core_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Module__startupDoneFxn__C, ".const:xdc_runtime_Core_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_Core_Module__startupDoneFxn xdc_runtime_Core_Module__startupDoneFxn__C = ((CT__xdc_runtime_Core_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Object__count__C, ".const:xdc_runtime_Core_Object__count__C"); -__FAR__ const CT__xdc_runtime_Core_Object__count xdc_runtime_Core_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Object__heap__C, ".const:xdc_runtime_Core_Object__heap__C"); -__FAR__ const CT__xdc_runtime_Core_Object__heap xdc_runtime_Core_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Object__sizeof__C, ".const:xdc_runtime_Core_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_Core_Object__sizeof xdc_runtime_Core_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_Core_Object__table__C, ".const:xdc_runtime_Core_Object__table__C"); -__FAR__ const CT__xdc_runtime_Core_Object__table xdc_runtime_Core_Object__table__C = 0; - -/* A_initializedParams__C */ -#pragma DATA_SECTION(xdc_runtime_Core_A_initializedParams__C, ".const:xdc_runtime_Core_A_initializedParams__C"); -__FAR__ const CT__xdc_runtime_Core_A_initializedParams xdc_runtime_Core_A_initializedParams__C = (((xdc_runtime_Assert_Id)1) << 16 | 16); - - -/* - * ======== xdc.runtime.Defaults INITIALIZERS ======== - */ - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Module__diagsEnabled__C, ".const:xdc_runtime_Defaults_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_Defaults_Module__diagsEnabled xdc_runtime_Defaults_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Module__diagsIncluded__C, ".const:xdc_runtime_Defaults_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_Defaults_Module__diagsIncluded xdc_runtime_Defaults_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Module__diagsMask__C, ".const:xdc_runtime_Defaults_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_Defaults_Module__diagsMask xdc_runtime_Defaults_Module__diagsMask__C = ((CT__xdc_runtime_Defaults_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Module__gateObj__C, ".const:xdc_runtime_Defaults_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_Defaults_Module__gateObj xdc_runtime_Defaults_Module__gateObj__C = ((CT__xdc_runtime_Defaults_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Module__gatePrms__C, ".const:xdc_runtime_Defaults_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_Defaults_Module__gatePrms xdc_runtime_Defaults_Module__gatePrms__C = ((CT__xdc_runtime_Defaults_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Module__id__C, ".const:xdc_runtime_Defaults_Module__id__C"); -__FAR__ const CT__xdc_runtime_Defaults_Module__id xdc_runtime_Defaults_Module__id__C = (xdc_Bits16)0x8004; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Module__loggerDefined__C, ".const:xdc_runtime_Defaults_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_Defaults_Module__loggerDefined xdc_runtime_Defaults_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Module__loggerObj__C, ".const:xdc_runtime_Defaults_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_Defaults_Module__loggerObj xdc_runtime_Defaults_Module__loggerObj__C = ((CT__xdc_runtime_Defaults_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Module__loggerFxn0__C, ".const:xdc_runtime_Defaults_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_Defaults_Module__loggerFxn0 xdc_runtime_Defaults_Module__loggerFxn0__C = ((CT__xdc_runtime_Defaults_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Module__loggerFxn1__C, ".const:xdc_runtime_Defaults_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_Defaults_Module__loggerFxn1 xdc_runtime_Defaults_Module__loggerFxn1__C = ((CT__xdc_runtime_Defaults_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Module__loggerFxn2__C, ".const:xdc_runtime_Defaults_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_Defaults_Module__loggerFxn2 xdc_runtime_Defaults_Module__loggerFxn2__C = ((CT__xdc_runtime_Defaults_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Module__loggerFxn4__C, ".const:xdc_runtime_Defaults_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_Defaults_Module__loggerFxn4 xdc_runtime_Defaults_Module__loggerFxn4__C = ((CT__xdc_runtime_Defaults_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Module__loggerFxn8__C, ".const:xdc_runtime_Defaults_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_Defaults_Module__loggerFxn8 xdc_runtime_Defaults_Module__loggerFxn8__C = ((CT__xdc_runtime_Defaults_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Module__startupDoneFxn__C, ".const:xdc_runtime_Defaults_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_Defaults_Module__startupDoneFxn xdc_runtime_Defaults_Module__startupDoneFxn__C = ((CT__xdc_runtime_Defaults_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Object__count__C, ".const:xdc_runtime_Defaults_Object__count__C"); -__FAR__ const CT__xdc_runtime_Defaults_Object__count xdc_runtime_Defaults_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Object__heap__C, ".const:xdc_runtime_Defaults_Object__heap__C"); -__FAR__ const CT__xdc_runtime_Defaults_Object__heap xdc_runtime_Defaults_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Object__sizeof__C, ".const:xdc_runtime_Defaults_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_Defaults_Object__sizeof xdc_runtime_Defaults_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_Defaults_Object__table__C, ".const:xdc_runtime_Defaults_Object__table__C"); -__FAR__ const CT__xdc_runtime_Defaults_Object__table xdc_runtime_Defaults_Object__table__C = 0; - - -/* - * ======== xdc.runtime.Diags INITIALIZERS ======== - */ - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Module__diagsEnabled__C, ".const:xdc_runtime_Diags_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_Diags_Module__diagsEnabled xdc_runtime_Diags_Module__diagsEnabled__C = (xdc_Bits32)0x10; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Module__diagsIncluded__C, ".const:xdc_runtime_Diags_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_Diags_Module__diagsIncluded xdc_runtime_Diags_Module__diagsIncluded__C = (xdc_Bits32)0x10; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Module__diagsMask__C, ".const:xdc_runtime_Diags_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_Diags_Module__diagsMask xdc_runtime_Diags_Module__diagsMask__C = ((CT__xdc_runtime_Diags_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Module__gateObj__C, ".const:xdc_runtime_Diags_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_Diags_Module__gateObj xdc_runtime_Diags_Module__gateObj__C = ((CT__xdc_runtime_Diags_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Module__gatePrms__C, ".const:xdc_runtime_Diags_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_Diags_Module__gatePrms xdc_runtime_Diags_Module__gatePrms__C = ((CT__xdc_runtime_Diags_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Module__id__C, ".const:xdc_runtime_Diags_Module__id__C"); -__FAR__ const CT__xdc_runtime_Diags_Module__id xdc_runtime_Diags_Module__id__C = (xdc_Bits16)0x8005; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Module__loggerDefined__C, ".const:xdc_runtime_Diags_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_Diags_Module__loggerDefined xdc_runtime_Diags_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Module__loggerObj__C, ".const:xdc_runtime_Diags_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_Diags_Module__loggerObj xdc_runtime_Diags_Module__loggerObj__C = ((CT__xdc_runtime_Diags_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Module__loggerFxn0__C, ".const:xdc_runtime_Diags_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_Diags_Module__loggerFxn0 xdc_runtime_Diags_Module__loggerFxn0__C = ((CT__xdc_runtime_Diags_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Module__loggerFxn1__C, ".const:xdc_runtime_Diags_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_Diags_Module__loggerFxn1 xdc_runtime_Diags_Module__loggerFxn1__C = ((CT__xdc_runtime_Diags_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Module__loggerFxn2__C, ".const:xdc_runtime_Diags_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_Diags_Module__loggerFxn2 xdc_runtime_Diags_Module__loggerFxn2__C = ((CT__xdc_runtime_Diags_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Module__loggerFxn4__C, ".const:xdc_runtime_Diags_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_Diags_Module__loggerFxn4 xdc_runtime_Diags_Module__loggerFxn4__C = ((CT__xdc_runtime_Diags_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Module__loggerFxn8__C, ".const:xdc_runtime_Diags_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_Diags_Module__loggerFxn8 xdc_runtime_Diags_Module__loggerFxn8__C = ((CT__xdc_runtime_Diags_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Module__startupDoneFxn__C, ".const:xdc_runtime_Diags_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_Diags_Module__startupDoneFxn xdc_runtime_Diags_Module__startupDoneFxn__C = ((CT__xdc_runtime_Diags_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Object__count__C, ".const:xdc_runtime_Diags_Object__count__C"); -__FAR__ const CT__xdc_runtime_Diags_Object__count xdc_runtime_Diags_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Object__heap__C, ".const:xdc_runtime_Diags_Object__heap__C"); -__FAR__ const CT__xdc_runtime_Diags_Object__heap xdc_runtime_Diags_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Object__sizeof__C, ".const:xdc_runtime_Diags_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_Diags_Object__sizeof xdc_runtime_Diags_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_Object__table__C, ".const:xdc_runtime_Diags_Object__table__C"); -__FAR__ const CT__xdc_runtime_Diags_Object__table xdc_runtime_Diags_Object__table__C = 0; - -/* setMaskEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_setMaskEnabled__C, ".const:xdc_runtime_Diags_setMaskEnabled__C"); -__FAR__ const CT__xdc_runtime_Diags_setMaskEnabled xdc_runtime_Diags_setMaskEnabled__C = 0; - -/* dictBase__C */ -#pragma DATA_SECTION(xdc_runtime_Diags_dictBase__C, ".const:xdc_runtime_Diags_dictBase__C"); -__FAR__ const CT__xdc_runtime_Diags_dictBase xdc_runtime_Diags_dictBase__C = ((CT__xdc_runtime_Diags_dictBase)0); - - -/* - * ======== xdc.runtime.Error INITIALIZERS ======== - */ - -/* Module__state__V */ -#if defined (__ICCARM__) -#pragma location = ".data_xdc_runtime_Error_Module__state__V" -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -xdc_runtime_Error_Module_State__ xdc_runtime_Error_Module__state__V __attribute__ ((section(".data_xdc_runtime_Error_Module__state__V"))); -#endif -#endif -xdc_runtime_Error_Module_State__ xdc_runtime_Error_Module__state__V = { - (xdc_UInt16)0x0, /* count */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Module__diagsEnabled__C, ".const:xdc_runtime_Error_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_Error_Module__diagsEnabled xdc_runtime_Error_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Module__diagsIncluded__C, ".const:xdc_runtime_Error_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_Error_Module__diagsIncluded xdc_runtime_Error_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Module__diagsMask__C, ".const:xdc_runtime_Error_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_Error_Module__diagsMask xdc_runtime_Error_Module__diagsMask__C = ((CT__xdc_runtime_Error_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Module__gateObj__C, ".const:xdc_runtime_Error_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_Error_Module__gateObj xdc_runtime_Error_Module__gateObj__C = ((CT__xdc_runtime_Error_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Module__gatePrms__C, ".const:xdc_runtime_Error_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_Error_Module__gatePrms xdc_runtime_Error_Module__gatePrms__C = ((CT__xdc_runtime_Error_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Module__id__C, ".const:xdc_runtime_Error_Module__id__C"); -__FAR__ const CT__xdc_runtime_Error_Module__id xdc_runtime_Error_Module__id__C = (xdc_Bits16)0x8006; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Module__loggerDefined__C, ".const:xdc_runtime_Error_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_Error_Module__loggerDefined xdc_runtime_Error_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Module__loggerObj__C, ".const:xdc_runtime_Error_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_Error_Module__loggerObj xdc_runtime_Error_Module__loggerObj__C = ((CT__xdc_runtime_Error_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Module__loggerFxn0__C, ".const:xdc_runtime_Error_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_Error_Module__loggerFxn0 xdc_runtime_Error_Module__loggerFxn0__C = ((CT__xdc_runtime_Error_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Module__loggerFxn1__C, ".const:xdc_runtime_Error_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_Error_Module__loggerFxn1 xdc_runtime_Error_Module__loggerFxn1__C = ((CT__xdc_runtime_Error_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Module__loggerFxn2__C, ".const:xdc_runtime_Error_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_Error_Module__loggerFxn2 xdc_runtime_Error_Module__loggerFxn2__C = ((CT__xdc_runtime_Error_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Module__loggerFxn4__C, ".const:xdc_runtime_Error_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_Error_Module__loggerFxn4 xdc_runtime_Error_Module__loggerFxn4__C = ((CT__xdc_runtime_Error_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Module__loggerFxn8__C, ".const:xdc_runtime_Error_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_Error_Module__loggerFxn8 xdc_runtime_Error_Module__loggerFxn8__C = ((CT__xdc_runtime_Error_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Module__startupDoneFxn__C, ".const:xdc_runtime_Error_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_Error_Module__startupDoneFxn xdc_runtime_Error_Module__startupDoneFxn__C = ((CT__xdc_runtime_Error_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Object__count__C, ".const:xdc_runtime_Error_Object__count__C"); -__FAR__ const CT__xdc_runtime_Error_Object__count xdc_runtime_Error_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Object__heap__C, ".const:xdc_runtime_Error_Object__heap__C"); -__FAR__ const CT__xdc_runtime_Error_Object__heap xdc_runtime_Error_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Object__sizeof__C, ".const:xdc_runtime_Error_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_Error_Object__sizeof xdc_runtime_Error_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_Error_Object__table__C, ".const:xdc_runtime_Error_Object__table__C"); -__FAR__ const CT__xdc_runtime_Error_Object__table xdc_runtime_Error_Object__table__C = 0; - -/* policyFxn__C */ -#pragma DATA_SECTION(xdc_runtime_Error_policyFxn__C, ".const:xdc_runtime_Error_policyFxn__C"); -__FAR__ const CT__xdc_runtime_Error_policyFxn xdc_runtime_Error_policyFxn__C = ((CT__xdc_runtime_Error_policyFxn)((xdc_Fxn)xdc_runtime_Error_policyDefault__E)); - -/* E_generic__C */ -#pragma DATA_SECTION(xdc_runtime_Error_E_generic__C, ".const:xdc_runtime_Error_E_generic__C"); -__FAR__ const CT__xdc_runtime_Error_E_generic xdc_runtime_Error_E_generic__C = (((xdc_runtime_Error_Id)3709) << 16 | 0); - -/* E_memory__C */ -#pragma DATA_SECTION(xdc_runtime_Error_E_memory__C, ".const:xdc_runtime_Error_E_memory__C"); -__FAR__ const CT__xdc_runtime_Error_E_memory xdc_runtime_Error_E_memory__C = (((xdc_runtime_Error_Id)3713) << 16 | 0); - -/* E_msgCode__C */ -#pragma DATA_SECTION(xdc_runtime_Error_E_msgCode__C, ".const:xdc_runtime_Error_E_msgCode__C"); -__FAR__ const CT__xdc_runtime_Error_E_msgCode xdc_runtime_Error_E_msgCode__C = (((xdc_runtime_Error_Id)3747) << 16 | 0); - -/* policy__C */ -#pragma DATA_SECTION(xdc_runtime_Error_policy__C, ".const:xdc_runtime_Error_policy__C"); -__FAR__ const CT__xdc_runtime_Error_policy xdc_runtime_Error_policy__C = xdc_runtime_Error_UNWIND; - -/* raiseHook__C */ -#pragma DATA_SECTION(xdc_runtime_Error_raiseHook__C, ".const:xdc_runtime_Error_raiseHook__C"); -__FAR__ const CT__xdc_runtime_Error_raiseHook xdc_runtime_Error_raiseHook__C = ((CT__xdc_runtime_Error_raiseHook)((xdc_Fxn)ti_sysbios_BIOS_errorRaiseHook__I)); - -/* maxDepth__C */ -#pragma DATA_SECTION(xdc_runtime_Error_maxDepth__C, ".const:xdc_runtime_Error_maxDepth__C"); -__FAR__ const CT__xdc_runtime_Error_maxDepth xdc_runtime_Error_maxDepth__C = (xdc_UInt16)0x10; - - -/* - * ======== xdc.runtime.Gate INITIALIZERS ======== - */ - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Module__diagsEnabled__C, ".const:xdc_runtime_Gate_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_Gate_Module__diagsEnabled xdc_runtime_Gate_Module__diagsEnabled__C = (xdc_Bits32)0x10; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Module__diagsIncluded__C, ".const:xdc_runtime_Gate_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_Gate_Module__diagsIncluded xdc_runtime_Gate_Module__diagsIncluded__C = (xdc_Bits32)0x10; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Module__diagsMask__C, ".const:xdc_runtime_Gate_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_Gate_Module__diagsMask xdc_runtime_Gate_Module__diagsMask__C = ((CT__xdc_runtime_Gate_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Module__gateObj__C, ".const:xdc_runtime_Gate_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_Gate_Module__gateObj xdc_runtime_Gate_Module__gateObj__C = ((CT__xdc_runtime_Gate_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Module__gatePrms__C, ".const:xdc_runtime_Gate_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_Gate_Module__gatePrms xdc_runtime_Gate_Module__gatePrms__C = ((CT__xdc_runtime_Gate_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Module__id__C, ".const:xdc_runtime_Gate_Module__id__C"); -__FAR__ const CT__xdc_runtime_Gate_Module__id xdc_runtime_Gate_Module__id__C = (xdc_Bits16)0x8007; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Module__loggerDefined__C, ".const:xdc_runtime_Gate_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_Gate_Module__loggerDefined xdc_runtime_Gate_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Module__loggerObj__C, ".const:xdc_runtime_Gate_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_Gate_Module__loggerObj xdc_runtime_Gate_Module__loggerObj__C = ((CT__xdc_runtime_Gate_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Module__loggerFxn0__C, ".const:xdc_runtime_Gate_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_Gate_Module__loggerFxn0 xdc_runtime_Gate_Module__loggerFxn0__C = ((CT__xdc_runtime_Gate_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Module__loggerFxn1__C, ".const:xdc_runtime_Gate_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_Gate_Module__loggerFxn1 xdc_runtime_Gate_Module__loggerFxn1__C = ((CT__xdc_runtime_Gate_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Module__loggerFxn2__C, ".const:xdc_runtime_Gate_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_Gate_Module__loggerFxn2 xdc_runtime_Gate_Module__loggerFxn2__C = ((CT__xdc_runtime_Gate_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Module__loggerFxn4__C, ".const:xdc_runtime_Gate_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_Gate_Module__loggerFxn4 xdc_runtime_Gate_Module__loggerFxn4__C = ((CT__xdc_runtime_Gate_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Module__loggerFxn8__C, ".const:xdc_runtime_Gate_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_Gate_Module__loggerFxn8 xdc_runtime_Gate_Module__loggerFxn8__C = ((CT__xdc_runtime_Gate_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Module__startupDoneFxn__C, ".const:xdc_runtime_Gate_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_Gate_Module__startupDoneFxn xdc_runtime_Gate_Module__startupDoneFxn__C = ((CT__xdc_runtime_Gate_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Object__count__C, ".const:xdc_runtime_Gate_Object__count__C"); -__FAR__ const CT__xdc_runtime_Gate_Object__count xdc_runtime_Gate_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Object__heap__C, ".const:xdc_runtime_Gate_Object__heap__C"); -__FAR__ const CT__xdc_runtime_Gate_Object__heap xdc_runtime_Gate_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Object__sizeof__C, ".const:xdc_runtime_Gate_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_Gate_Object__sizeof xdc_runtime_Gate_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_Gate_Object__table__C, ".const:xdc_runtime_Gate_Object__table__C"); -__FAR__ const CT__xdc_runtime_Gate_Object__table xdc_runtime_Gate_Object__table__C = 0; - - -/* - * ======== xdc.runtime.HeapStd INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc xdc_runtime_HeapStd_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Object__PARAMS__C, ".const:xdc_runtime_HeapStd_Object__PARAMS__C"); -__FAR__ const xdc_runtime_HeapStd_Params xdc_runtime_HeapStd_Object__PARAMS__C = { - sizeof (xdc_runtime_HeapStd_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&xdc_runtime_HeapStd_Object__PARAMS__C.__iprms, /* instance */ - ((xdc_UArg)(0x0)), /* size */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -xdc_runtime_HeapStd_Module__ xdc_runtime_HeapStd_Module__root__V = { - {&xdc_runtime_HeapStd_Module__root__V.link, /* link.next */ - &xdc_runtime_HeapStd_Module__root__V.link}, /* link.prev */ -}; - -/* Module__state__V */ -#if defined (__ICCARM__) -#pragma location = ".data_xdc_runtime_HeapStd_Module__state__V" -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -xdc_runtime_HeapStd_Module_State__ xdc_runtime_HeapStd_Module__state__V __attribute__ ((section(".data_xdc_runtime_HeapStd_Module__state__V"))); -#endif -#endif -xdc_runtime_HeapStd_Module_State__ xdc_runtime_HeapStd_Module__state__V = { - ((xdc_UArg)(0xc350)), /* remainRTSSize */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Module__diagsEnabled__C, ".const:xdc_runtime_HeapStd_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Module__diagsEnabled xdc_runtime_HeapStd_Module__diagsEnabled__C = (xdc_Bits32)0x10; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Module__diagsIncluded__C, ".const:xdc_runtime_HeapStd_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Module__diagsIncluded xdc_runtime_HeapStd_Module__diagsIncluded__C = (xdc_Bits32)0x10; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Module__diagsMask__C, ".const:xdc_runtime_HeapStd_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Module__diagsMask xdc_runtime_HeapStd_Module__diagsMask__C = ((CT__xdc_runtime_HeapStd_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Module__gateObj__C, ".const:xdc_runtime_HeapStd_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Module__gateObj xdc_runtime_HeapStd_Module__gateObj__C = ((CT__xdc_runtime_HeapStd_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Module__gatePrms__C, ".const:xdc_runtime_HeapStd_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Module__gatePrms xdc_runtime_HeapStd_Module__gatePrms__C = ((CT__xdc_runtime_HeapStd_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Module__id__C, ".const:xdc_runtime_HeapStd_Module__id__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Module__id xdc_runtime_HeapStd_Module__id__C = (xdc_Bits16)0x800b; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Module__loggerDefined__C, ".const:xdc_runtime_HeapStd_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Module__loggerDefined xdc_runtime_HeapStd_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Module__loggerObj__C, ".const:xdc_runtime_HeapStd_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Module__loggerObj xdc_runtime_HeapStd_Module__loggerObj__C = ((CT__xdc_runtime_HeapStd_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Module__loggerFxn0__C, ".const:xdc_runtime_HeapStd_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Module__loggerFxn0 xdc_runtime_HeapStd_Module__loggerFxn0__C = ((CT__xdc_runtime_HeapStd_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Module__loggerFxn1__C, ".const:xdc_runtime_HeapStd_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Module__loggerFxn1 xdc_runtime_HeapStd_Module__loggerFxn1__C = ((CT__xdc_runtime_HeapStd_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Module__loggerFxn2__C, ".const:xdc_runtime_HeapStd_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Module__loggerFxn2 xdc_runtime_HeapStd_Module__loggerFxn2__C = ((CT__xdc_runtime_HeapStd_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Module__loggerFxn4__C, ".const:xdc_runtime_HeapStd_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Module__loggerFxn4 xdc_runtime_HeapStd_Module__loggerFxn4__C = ((CT__xdc_runtime_HeapStd_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Module__loggerFxn8__C, ".const:xdc_runtime_HeapStd_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Module__loggerFxn8 xdc_runtime_HeapStd_Module__loggerFxn8__C = ((CT__xdc_runtime_HeapStd_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Module__startupDoneFxn__C, ".const:xdc_runtime_HeapStd_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Module__startupDoneFxn xdc_runtime_HeapStd_Module__startupDoneFxn__C = ((CT__xdc_runtime_HeapStd_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Object__count__C, ".const:xdc_runtime_HeapStd_Object__count__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Object__count xdc_runtime_HeapStd_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Object__heap__C, ".const:xdc_runtime_HeapStd_Object__heap__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Object__heap xdc_runtime_HeapStd_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Object__sizeof__C, ".const:xdc_runtime_HeapStd_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Object__sizeof xdc_runtime_HeapStd_Object__sizeof__C = sizeof(xdc_runtime_HeapStd_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_Object__table__C, ".const:xdc_runtime_HeapStd_Object__table__C"); -__FAR__ const CT__xdc_runtime_HeapStd_Object__table xdc_runtime_HeapStd_Object__table__C = 0; - -/* E_noRTSMemory__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_E_noRTSMemory__C, ".const:xdc_runtime_HeapStd_E_noRTSMemory__C"); -__FAR__ const CT__xdc_runtime_HeapStd_E_noRTSMemory xdc_runtime_HeapStd_E_noRTSMemory__C = (((xdc_runtime_Error_Id)3832) << 16 | 0); - -/* A_zeroSize__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_A_zeroSize__C, ".const:xdc_runtime_HeapStd_A_zeroSize__C"); -__FAR__ const CT__xdc_runtime_HeapStd_A_zeroSize xdc_runtime_HeapStd_A_zeroSize__C = (((xdc_runtime_Assert_Id)95) << 16 | 16); - -/* A_align__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_A_align__C, ".const:xdc_runtime_HeapStd_A_align__C"); -__FAR__ const CT__xdc_runtime_HeapStd_A_align xdc_runtime_HeapStd_A_align__C = (((xdc_runtime_Assert_Id)140) << 16 | 16); - -/* A_invalidTotalFreeSize__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_A_invalidTotalFreeSize__C, ".const:xdc_runtime_HeapStd_A_invalidTotalFreeSize__C"); -__FAR__ const CT__xdc_runtime_HeapStd_A_invalidTotalFreeSize xdc_runtime_HeapStd_A_invalidTotalFreeSize__C = (((xdc_runtime_Assert_Id)185) << 16 | 16); - -/* A_invalidAlignment__C */ -#pragma DATA_SECTION(xdc_runtime_HeapStd_A_invalidAlignment__C, ".const:xdc_runtime_HeapStd_A_invalidAlignment__C"); -__FAR__ const CT__xdc_runtime_HeapStd_A_invalidAlignment xdc_runtime_HeapStd_A_invalidAlignment__C = (((xdc_runtime_Assert_Id)246) << 16 | 16); - - -/* - * ======== xdc.runtime.Log INITIALIZERS ======== - */ - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Module__diagsEnabled__C, ".const:xdc_runtime_Log_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_Log_Module__diagsEnabled xdc_runtime_Log_Module__diagsEnabled__C = (xdc_Bits32)0x10; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Module__diagsIncluded__C, ".const:xdc_runtime_Log_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_Log_Module__diagsIncluded xdc_runtime_Log_Module__diagsIncluded__C = (xdc_Bits32)0x10; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Module__diagsMask__C, ".const:xdc_runtime_Log_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_Log_Module__diagsMask xdc_runtime_Log_Module__diagsMask__C = ((CT__xdc_runtime_Log_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Module__gateObj__C, ".const:xdc_runtime_Log_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_Log_Module__gateObj xdc_runtime_Log_Module__gateObj__C = ((CT__xdc_runtime_Log_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Module__gatePrms__C, ".const:xdc_runtime_Log_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_Log_Module__gatePrms xdc_runtime_Log_Module__gatePrms__C = ((CT__xdc_runtime_Log_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Module__id__C, ".const:xdc_runtime_Log_Module__id__C"); -__FAR__ const CT__xdc_runtime_Log_Module__id xdc_runtime_Log_Module__id__C = (xdc_Bits16)0x8008; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Module__loggerDefined__C, ".const:xdc_runtime_Log_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_Log_Module__loggerDefined xdc_runtime_Log_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Module__loggerObj__C, ".const:xdc_runtime_Log_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_Log_Module__loggerObj xdc_runtime_Log_Module__loggerObj__C = ((CT__xdc_runtime_Log_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Module__loggerFxn0__C, ".const:xdc_runtime_Log_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_Log_Module__loggerFxn0 xdc_runtime_Log_Module__loggerFxn0__C = ((CT__xdc_runtime_Log_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Module__loggerFxn1__C, ".const:xdc_runtime_Log_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_Log_Module__loggerFxn1 xdc_runtime_Log_Module__loggerFxn1__C = ((CT__xdc_runtime_Log_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Module__loggerFxn2__C, ".const:xdc_runtime_Log_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_Log_Module__loggerFxn2 xdc_runtime_Log_Module__loggerFxn2__C = ((CT__xdc_runtime_Log_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Module__loggerFxn4__C, ".const:xdc_runtime_Log_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_Log_Module__loggerFxn4 xdc_runtime_Log_Module__loggerFxn4__C = ((CT__xdc_runtime_Log_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Module__loggerFxn8__C, ".const:xdc_runtime_Log_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_Log_Module__loggerFxn8 xdc_runtime_Log_Module__loggerFxn8__C = ((CT__xdc_runtime_Log_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Module__startupDoneFxn__C, ".const:xdc_runtime_Log_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_Log_Module__startupDoneFxn xdc_runtime_Log_Module__startupDoneFxn__C = ((CT__xdc_runtime_Log_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Object__count__C, ".const:xdc_runtime_Log_Object__count__C"); -__FAR__ const CT__xdc_runtime_Log_Object__count xdc_runtime_Log_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Object__heap__C, ".const:xdc_runtime_Log_Object__heap__C"); -__FAR__ const CT__xdc_runtime_Log_Object__heap xdc_runtime_Log_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Object__sizeof__C, ".const:xdc_runtime_Log_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_Log_Object__sizeof xdc_runtime_Log_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_Log_Object__table__C, ".const:xdc_runtime_Log_Object__table__C"); -__FAR__ const CT__xdc_runtime_Log_Object__table xdc_runtime_Log_Object__table__C = 0; - -/* L_construct__C */ -#pragma DATA_SECTION(xdc_runtime_Log_L_construct__C, ".const:xdc_runtime_Log_L_construct__C"); -__FAR__ const CT__xdc_runtime_Log_L_construct xdc_runtime_Log_L_construct__C = (((xdc_runtime_Log_Event)4953) << 16 | 4); - -/* L_create__C */ -#pragma DATA_SECTION(xdc_runtime_Log_L_create__C, ".const:xdc_runtime_Log_L_create__C"); -__FAR__ const CT__xdc_runtime_Log_L_create xdc_runtime_Log_L_create__C = (((xdc_runtime_Log_Event)4977) << 16 | 4); - -/* L_destruct__C */ -#pragma DATA_SECTION(xdc_runtime_Log_L_destruct__C, ".const:xdc_runtime_Log_L_destruct__C"); -__FAR__ const CT__xdc_runtime_Log_L_destruct xdc_runtime_Log_L_destruct__C = (((xdc_runtime_Log_Event)4998) << 16 | 4); - -/* L_delete__C */ -#pragma DATA_SECTION(xdc_runtime_Log_L_delete__C, ".const:xdc_runtime_Log_L_delete__C"); -__FAR__ const CT__xdc_runtime_Log_L_delete xdc_runtime_Log_L_delete__C = (((xdc_runtime_Log_Event)5017) << 16 | 4); - -/* L_error__C */ -#pragma DATA_SECTION(xdc_runtime_Log_L_error__C, ".const:xdc_runtime_Log_L_error__C"); -__FAR__ const CT__xdc_runtime_Log_L_error xdc_runtime_Log_L_error__C = (((xdc_runtime_Log_Event)5034) << 16 | 192); - -/* L_warning__C */ -#pragma DATA_SECTION(xdc_runtime_Log_L_warning__C, ".const:xdc_runtime_Log_L_warning__C"); -__FAR__ const CT__xdc_runtime_Log_L_warning xdc_runtime_Log_L_warning__C = (((xdc_runtime_Log_Event)5048) << 16 | 224); - -/* L_info__C */ -#pragma DATA_SECTION(xdc_runtime_Log_L_info__C, ".const:xdc_runtime_Log_L_info__C"); -__FAR__ const CT__xdc_runtime_Log_L_info xdc_runtime_Log_L_info__C = (((xdc_runtime_Log_Event)5064) << 16 | 16384); - -/* L_start__C */ -#pragma DATA_SECTION(xdc_runtime_Log_L_start__C, ".const:xdc_runtime_Log_L_start__C"); -__FAR__ const CT__xdc_runtime_Log_L_start xdc_runtime_Log_L_start__C = (((xdc_runtime_Log_Event)5071) << 16 | 32768); - -/* L_stop__C */ -#pragma DATA_SECTION(xdc_runtime_Log_L_stop__C, ".const:xdc_runtime_Log_L_stop__C"); -__FAR__ const CT__xdc_runtime_Log_L_stop xdc_runtime_Log_L_stop__C = (((xdc_runtime_Log_Event)5082) << 16 | 32768); - -/* L_startInstance__C */ -#pragma DATA_SECTION(xdc_runtime_Log_L_startInstance__C, ".const:xdc_runtime_Log_L_startInstance__C"); -__FAR__ const CT__xdc_runtime_Log_L_startInstance xdc_runtime_Log_L_startInstance__C = (((xdc_runtime_Log_Event)5092) << 16 | 32768); - -/* L_stopInstance__C */ -#pragma DATA_SECTION(xdc_runtime_Log_L_stopInstance__C, ".const:xdc_runtime_Log_L_stopInstance__C"); -__FAR__ const CT__xdc_runtime_Log_L_stopInstance xdc_runtime_Log_L_stopInstance__C = (((xdc_runtime_Log_Event)5111) << 16 | 32768); - - -/* - * ======== xdc.runtime.Main INITIALIZERS ======== - */ - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Module__diagsEnabled__C, ".const:xdc_runtime_Main_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_Main_Module__diagsEnabled xdc_runtime_Main_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Module__diagsIncluded__C, ".const:xdc_runtime_Main_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_Main_Module__diagsIncluded xdc_runtime_Main_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Module__diagsMask__C, ".const:xdc_runtime_Main_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_Main_Module__diagsMask xdc_runtime_Main_Module__diagsMask__C = ((CT__xdc_runtime_Main_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Module__gateObj__C, ".const:xdc_runtime_Main_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_Main_Module__gateObj xdc_runtime_Main_Module__gateObj__C = ((CT__xdc_runtime_Main_Module__gateObj)((void*)(xdc_runtime_IGateProvider_Handle)&ti_sysbios_gates_GateHwi_Object__table__V[0])); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Module__gatePrms__C, ".const:xdc_runtime_Main_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_Main_Module__gatePrms xdc_runtime_Main_Module__gatePrms__C = ((CT__xdc_runtime_Main_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Module__id__C, ".const:xdc_runtime_Main_Module__id__C"); -__FAR__ const CT__xdc_runtime_Main_Module__id xdc_runtime_Main_Module__id__C = (xdc_Bits16)0x8009; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Module__loggerDefined__C, ".const:xdc_runtime_Main_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_Main_Module__loggerDefined xdc_runtime_Main_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Module__loggerObj__C, ".const:xdc_runtime_Main_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_Main_Module__loggerObj xdc_runtime_Main_Module__loggerObj__C = ((CT__xdc_runtime_Main_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Module__loggerFxn0__C, ".const:xdc_runtime_Main_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_Main_Module__loggerFxn0 xdc_runtime_Main_Module__loggerFxn0__C = ((CT__xdc_runtime_Main_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Module__loggerFxn1__C, ".const:xdc_runtime_Main_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_Main_Module__loggerFxn1 xdc_runtime_Main_Module__loggerFxn1__C = ((CT__xdc_runtime_Main_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Module__loggerFxn2__C, ".const:xdc_runtime_Main_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_Main_Module__loggerFxn2 xdc_runtime_Main_Module__loggerFxn2__C = ((CT__xdc_runtime_Main_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Module__loggerFxn4__C, ".const:xdc_runtime_Main_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_Main_Module__loggerFxn4 xdc_runtime_Main_Module__loggerFxn4__C = ((CT__xdc_runtime_Main_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Module__loggerFxn8__C, ".const:xdc_runtime_Main_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_Main_Module__loggerFxn8 xdc_runtime_Main_Module__loggerFxn8__C = ((CT__xdc_runtime_Main_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Module__startupDoneFxn__C, ".const:xdc_runtime_Main_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_Main_Module__startupDoneFxn xdc_runtime_Main_Module__startupDoneFxn__C = ((CT__xdc_runtime_Main_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Object__count__C, ".const:xdc_runtime_Main_Object__count__C"); -__FAR__ const CT__xdc_runtime_Main_Object__count xdc_runtime_Main_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Object__heap__C, ".const:xdc_runtime_Main_Object__heap__C"); -__FAR__ const CT__xdc_runtime_Main_Object__heap xdc_runtime_Main_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Object__sizeof__C, ".const:xdc_runtime_Main_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_Main_Object__sizeof xdc_runtime_Main_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_Main_Object__table__C, ".const:xdc_runtime_Main_Object__table__C"); -__FAR__ const CT__xdc_runtime_Main_Object__table xdc_runtime_Main_Object__table__C = 0; - - -/* - * ======== xdc.runtime.Main_Module_GateProxy INITIALIZERS ======== - */ - - -/* - * ======== xdc.runtime.Memory INITIALIZERS ======== - */ - -/* Module__state__V */ -#if defined (__ICCARM__) -#pragma location = ".data_xdc_runtime_Memory_Module__state__V" -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -xdc_runtime_Memory_Module_State__ xdc_runtime_Memory_Module__state__V __attribute__ ((section(".data_xdc_runtime_Memory_Module__state__V"))); -#endif -#endif -xdc_runtime_Memory_Module_State__ xdc_runtime_Memory_Module__state__V = { - (xdc_SizeT)0x8, /* maxDefaultTypeAlign */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Module__diagsEnabled__C, ".const:xdc_runtime_Memory_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_Memory_Module__diagsEnabled xdc_runtime_Memory_Module__diagsEnabled__C = (xdc_Bits32)0x10; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Module__diagsIncluded__C, ".const:xdc_runtime_Memory_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_Memory_Module__diagsIncluded xdc_runtime_Memory_Module__diagsIncluded__C = (xdc_Bits32)0x10; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Module__diagsMask__C, ".const:xdc_runtime_Memory_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_Memory_Module__diagsMask xdc_runtime_Memory_Module__diagsMask__C = ((CT__xdc_runtime_Memory_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Module__gateObj__C, ".const:xdc_runtime_Memory_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_Memory_Module__gateObj xdc_runtime_Memory_Module__gateObj__C = ((CT__xdc_runtime_Memory_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Module__gatePrms__C, ".const:xdc_runtime_Memory_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_Memory_Module__gatePrms xdc_runtime_Memory_Module__gatePrms__C = ((CT__xdc_runtime_Memory_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Module__id__C, ".const:xdc_runtime_Memory_Module__id__C"); -__FAR__ const CT__xdc_runtime_Memory_Module__id xdc_runtime_Memory_Module__id__C = (xdc_Bits16)0x800a; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Module__loggerDefined__C, ".const:xdc_runtime_Memory_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_Memory_Module__loggerDefined xdc_runtime_Memory_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Module__loggerObj__C, ".const:xdc_runtime_Memory_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_Memory_Module__loggerObj xdc_runtime_Memory_Module__loggerObj__C = ((CT__xdc_runtime_Memory_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Module__loggerFxn0__C, ".const:xdc_runtime_Memory_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_Memory_Module__loggerFxn0 xdc_runtime_Memory_Module__loggerFxn0__C = ((CT__xdc_runtime_Memory_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Module__loggerFxn1__C, ".const:xdc_runtime_Memory_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_Memory_Module__loggerFxn1 xdc_runtime_Memory_Module__loggerFxn1__C = ((CT__xdc_runtime_Memory_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Module__loggerFxn2__C, ".const:xdc_runtime_Memory_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_Memory_Module__loggerFxn2 xdc_runtime_Memory_Module__loggerFxn2__C = ((CT__xdc_runtime_Memory_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Module__loggerFxn4__C, ".const:xdc_runtime_Memory_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_Memory_Module__loggerFxn4 xdc_runtime_Memory_Module__loggerFxn4__C = ((CT__xdc_runtime_Memory_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Module__loggerFxn8__C, ".const:xdc_runtime_Memory_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_Memory_Module__loggerFxn8 xdc_runtime_Memory_Module__loggerFxn8__C = ((CT__xdc_runtime_Memory_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Module__startupDoneFxn__C, ".const:xdc_runtime_Memory_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_Memory_Module__startupDoneFxn xdc_runtime_Memory_Module__startupDoneFxn__C = ((CT__xdc_runtime_Memory_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Object__count__C, ".const:xdc_runtime_Memory_Object__count__C"); -__FAR__ const CT__xdc_runtime_Memory_Object__count xdc_runtime_Memory_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Object__heap__C, ".const:xdc_runtime_Memory_Object__heap__C"); -__FAR__ const CT__xdc_runtime_Memory_Object__heap xdc_runtime_Memory_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Object__sizeof__C, ".const:xdc_runtime_Memory_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_Memory_Object__sizeof xdc_runtime_Memory_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_Object__table__C, ".const:xdc_runtime_Memory_Object__table__C"); -__FAR__ const CT__xdc_runtime_Memory_Object__table xdc_runtime_Memory_Object__table__C = 0; - -/* defaultHeapInstance__C */ -#pragma DATA_SECTION(xdc_runtime_Memory_defaultHeapInstance__C, ".const:xdc_runtime_Memory_defaultHeapInstance__C"); -__FAR__ const CT__xdc_runtime_Memory_defaultHeapInstance xdc_runtime_Memory_defaultHeapInstance__C = (xdc_runtime_IHeap_Handle)&ti_sysbios_heaps_HeapMem_Object__table__V[0]; - - -/* - * ======== xdc.runtime.Memory_HeapProxy INITIALIZERS ======== - */ - - -/* - * ======== xdc.runtime.Registry INITIALIZERS ======== - */ - -/* Module__state__V */ -#if defined (__ICCARM__) -#pragma location = ".data_xdc_runtime_Registry_Module__state__V" -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -xdc_runtime_Registry_Module_State__ xdc_runtime_Registry_Module__state__V __attribute__ ((section(".data_xdc_runtime_Registry_Module__state__V"))); -#endif -#endif -xdc_runtime_Registry_Module_State__ xdc_runtime_Registry_Module__state__V = { - ((xdc_runtime_Types_RegDesc*)0), /* listHead */ - (xdc_Bits16)0x7fff, /* curId */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Module__diagsEnabled__C, ".const:xdc_runtime_Registry_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_Registry_Module__diagsEnabled xdc_runtime_Registry_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Module__diagsIncluded__C, ".const:xdc_runtime_Registry_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_Registry_Module__diagsIncluded xdc_runtime_Registry_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Module__diagsMask__C, ".const:xdc_runtime_Registry_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_Registry_Module__diagsMask xdc_runtime_Registry_Module__diagsMask__C = ((CT__xdc_runtime_Registry_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Module__gateObj__C, ".const:xdc_runtime_Registry_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_Registry_Module__gateObj xdc_runtime_Registry_Module__gateObj__C = ((CT__xdc_runtime_Registry_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Module__gatePrms__C, ".const:xdc_runtime_Registry_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_Registry_Module__gatePrms xdc_runtime_Registry_Module__gatePrms__C = ((CT__xdc_runtime_Registry_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Module__id__C, ".const:xdc_runtime_Registry_Module__id__C"); -__FAR__ const CT__xdc_runtime_Registry_Module__id xdc_runtime_Registry_Module__id__C = (xdc_Bits16)0x800c; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Module__loggerDefined__C, ".const:xdc_runtime_Registry_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_Registry_Module__loggerDefined xdc_runtime_Registry_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Module__loggerObj__C, ".const:xdc_runtime_Registry_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_Registry_Module__loggerObj xdc_runtime_Registry_Module__loggerObj__C = ((CT__xdc_runtime_Registry_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Module__loggerFxn0__C, ".const:xdc_runtime_Registry_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_Registry_Module__loggerFxn0 xdc_runtime_Registry_Module__loggerFxn0__C = ((CT__xdc_runtime_Registry_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Module__loggerFxn1__C, ".const:xdc_runtime_Registry_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_Registry_Module__loggerFxn1 xdc_runtime_Registry_Module__loggerFxn1__C = ((CT__xdc_runtime_Registry_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Module__loggerFxn2__C, ".const:xdc_runtime_Registry_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_Registry_Module__loggerFxn2 xdc_runtime_Registry_Module__loggerFxn2__C = ((CT__xdc_runtime_Registry_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Module__loggerFxn4__C, ".const:xdc_runtime_Registry_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_Registry_Module__loggerFxn4 xdc_runtime_Registry_Module__loggerFxn4__C = ((CT__xdc_runtime_Registry_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Module__loggerFxn8__C, ".const:xdc_runtime_Registry_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_Registry_Module__loggerFxn8 xdc_runtime_Registry_Module__loggerFxn8__C = ((CT__xdc_runtime_Registry_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Module__startupDoneFxn__C, ".const:xdc_runtime_Registry_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_Registry_Module__startupDoneFxn xdc_runtime_Registry_Module__startupDoneFxn__C = ((CT__xdc_runtime_Registry_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Object__count__C, ".const:xdc_runtime_Registry_Object__count__C"); -__FAR__ const CT__xdc_runtime_Registry_Object__count xdc_runtime_Registry_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Object__heap__C, ".const:xdc_runtime_Registry_Object__heap__C"); -__FAR__ const CT__xdc_runtime_Registry_Object__heap xdc_runtime_Registry_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Object__sizeof__C, ".const:xdc_runtime_Registry_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_Registry_Object__sizeof xdc_runtime_Registry_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_Registry_Object__table__C, ".const:xdc_runtime_Registry_Object__table__C"); -__FAR__ const CT__xdc_runtime_Registry_Object__table xdc_runtime_Registry_Object__table__C = 0; - - -/* - * ======== xdc.runtime.Startup INITIALIZERS ======== - */ - -/* Module__state__V */ -#if defined (__ICCARM__) -#pragma location = ".data_xdc_runtime_Startup_Module__state__V" -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -xdc_runtime_Startup_Module_State__ xdc_runtime_Startup_Module__state__V __attribute__ ((section(".data_xdc_runtime_Startup_Module__state__V"))); -#endif -#endif -xdc_runtime_Startup_Module_State__ xdc_runtime_Startup_Module__state__V = { - ((xdc_Int*)0), /* stateTab */ - 0, /* execFlag */ - 0, /* rtsDoneFlag */ -}; - -/* --> xdc_runtime_Startup_firstFxns__A */ -#pragma DATA_SECTION(xdc_runtime_Startup_firstFxns__A, ".const:xdc_runtime_Startup_firstFxns__A"); -const __T1_xdc_runtime_Startup_firstFxns xdc_runtime_Startup_firstFxns__A[6] = { - ((xdc_Void(*)(xdc_Void))((xdc_Fxn)ti_sysbios_heaps_HeapMem_init__I)), /* [0] */ - ((xdc_Void(*)(xdc_Void))((xdc_Fxn)ti_catalog_arm_cortexm4_tiva_ce_Boot_init__I)), /* [1] */ - ((xdc_Void(*)(xdc_Void))((xdc_Fxn)ti_sysbios_family_arm_m3_Hwi_initNVIC__E)), /* [2] */ - ((xdc_Void(*)(xdc_Void))((xdc_Fxn)ti_sysbios_hal_Hwi_initStack)), /* [3] */ - ((xdc_Void(*)(xdc_Void))((xdc_Fxn)ti_sysbios_family_arm_lm4_TimestampProvider_initTimerHandle__I)), /* [4] */ - ((xdc_Void(*)(xdc_Void))((xdc_Fxn)ti_sysbios_family_arm_lm4_Timer_enableTimers__I)), /* [5] */ -}; - -/* --> xdc_runtime_Startup_sfxnTab__A */ -#pragma DATA_SECTION(xdc_runtime_Startup_sfxnTab__A, ".const:xdc_runtime_Startup_sfxnTab__A"); -const __T1_xdc_runtime_Startup_sfxnTab xdc_runtime_Startup_sfxnTab__A[11] = { - ((xdc_Int(*)(xdc_Int))((xdc_Fxn)xdc_runtime_System_Module_startup__E)), /* [0] */ - ((xdc_Int(*)(xdc_Int))((xdc_Fxn)xdc_runtime_SysMin_Module_startup__E)), /* [1] */ - ((xdc_Int(*)(xdc_Int))((xdc_Fxn)ti_sysbios_family_arm_m3_Hwi_Module_startup__E)), /* [2] */ - ((xdc_Int(*)(xdc_Int))((xdc_Fxn)ti_sysbios_knl_Clock_Module_startup__E)), /* [3] */ - ((xdc_Int(*)(xdc_Int))((xdc_Fxn)ti_sysbios_knl_Mailbox_Module_startup__E)), /* [4] */ - ((xdc_Int(*)(xdc_Int))((xdc_Fxn)ti_sysbios_knl_Swi_Module_startup__E)), /* [5] */ - ((xdc_Int(*)(xdc_Int))((xdc_Fxn)ti_sysbios_knl_Task_Module_startup__E)), /* [6] */ - ((xdc_Int(*)(xdc_Int))((xdc_Fxn)ti_sysbios_hal_Hwi_Module_startup__E)), /* [7] */ - ((xdc_Int(*)(xdc_Int))((xdc_Fxn)ti_sysbios_family_arm_lm4_TimestampProvider_Module_startup__E)), /* [8] */ - ((xdc_Int(*)(xdc_Int))((xdc_Fxn)ti_sysbios_family_arm_lm4_Timer_Module_startup__E)), /* [9] */ - ((xdc_Int(*)(xdc_Int))((xdc_Fxn)ti_sysbios_io_DEV_Module_startup__E)), /* [10] */ -}; - -/* --> xdc_runtime_Startup_sfxnRts__A */ -#pragma DATA_SECTION(xdc_runtime_Startup_sfxnRts__A, ".const:xdc_runtime_Startup_sfxnRts__A"); -const __T1_xdc_runtime_Startup_sfxnRts xdc_runtime_Startup_sfxnRts__A[11] = { - 1, /* [0] */ - 1, /* [1] */ - 0, /* [2] */ - 0, /* [3] */ - 0, /* [4] */ - 0, /* [5] */ - 0, /* [6] */ - 0, /* [7] */ - 1, /* [8] */ - 0, /* [9] */ - 0, /* [10] */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Module__diagsEnabled__C, ".const:xdc_runtime_Startup_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_Startup_Module__diagsEnabled xdc_runtime_Startup_Module__diagsEnabled__C = (xdc_Bits32)0x10; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Module__diagsIncluded__C, ".const:xdc_runtime_Startup_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_Startup_Module__diagsIncluded xdc_runtime_Startup_Module__diagsIncluded__C = (xdc_Bits32)0x10; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Module__diagsMask__C, ".const:xdc_runtime_Startup_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_Startup_Module__diagsMask xdc_runtime_Startup_Module__diagsMask__C = ((CT__xdc_runtime_Startup_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Module__gateObj__C, ".const:xdc_runtime_Startup_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_Startup_Module__gateObj xdc_runtime_Startup_Module__gateObj__C = ((CT__xdc_runtime_Startup_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Module__gatePrms__C, ".const:xdc_runtime_Startup_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_Startup_Module__gatePrms xdc_runtime_Startup_Module__gatePrms__C = ((CT__xdc_runtime_Startup_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Module__id__C, ".const:xdc_runtime_Startup_Module__id__C"); -__FAR__ const CT__xdc_runtime_Startup_Module__id xdc_runtime_Startup_Module__id__C = (xdc_Bits16)0x800d; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Module__loggerDefined__C, ".const:xdc_runtime_Startup_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_Startup_Module__loggerDefined xdc_runtime_Startup_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Module__loggerObj__C, ".const:xdc_runtime_Startup_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_Startup_Module__loggerObj xdc_runtime_Startup_Module__loggerObj__C = ((CT__xdc_runtime_Startup_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Module__loggerFxn0__C, ".const:xdc_runtime_Startup_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_Startup_Module__loggerFxn0 xdc_runtime_Startup_Module__loggerFxn0__C = ((CT__xdc_runtime_Startup_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Module__loggerFxn1__C, ".const:xdc_runtime_Startup_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_Startup_Module__loggerFxn1 xdc_runtime_Startup_Module__loggerFxn1__C = ((CT__xdc_runtime_Startup_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Module__loggerFxn2__C, ".const:xdc_runtime_Startup_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_Startup_Module__loggerFxn2 xdc_runtime_Startup_Module__loggerFxn2__C = ((CT__xdc_runtime_Startup_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Module__loggerFxn4__C, ".const:xdc_runtime_Startup_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_Startup_Module__loggerFxn4 xdc_runtime_Startup_Module__loggerFxn4__C = ((CT__xdc_runtime_Startup_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Module__loggerFxn8__C, ".const:xdc_runtime_Startup_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_Startup_Module__loggerFxn8 xdc_runtime_Startup_Module__loggerFxn8__C = ((CT__xdc_runtime_Startup_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Module__startupDoneFxn__C, ".const:xdc_runtime_Startup_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_Startup_Module__startupDoneFxn xdc_runtime_Startup_Module__startupDoneFxn__C = ((CT__xdc_runtime_Startup_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Object__count__C, ".const:xdc_runtime_Startup_Object__count__C"); -__FAR__ const CT__xdc_runtime_Startup_Object__count xdc_runtime_Startup_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Object__heap__C, ".const:xdc_runtime_Startup_Object__heap__C"); -__FAR__ const CT__xdc_runtime_Startup_Object__heap xdc_runtime_Startup_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Object__sizeof__C, ".const:xdc_runtime_Startup_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_Startup_Object__sizeof xdc_runtime_Startup_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_Object__table__C, ".const:xdc_runtime_Startup_Object__table__C"); -__FAR__ const CT__xdc_runtime_Startup_Object__table xdc_runtime_Startup_Object__table__C = 0; - -/* maxPasses__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_maxPasses__C, ".const:xdc_runtime_Startup_maxPasses__C"); -__FAR__ const CT__xdc_runtime_Startup_maxPasses xdc_runtime_Startup_maxPasses__C = (xdc_Int)0x20; - -/* firstFxns__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_firstFxns__C, ".const:xdc_runtime_Startup_firstFxns__C"); -__FAR__ const CT__xdc_runtime_Startup_firstFxns xdc_runtime_Startup_firstFxns__C = {6, ((__T1_xdc_runtime_Startup_firstFxns*)xdc_runtime_Startup_firstFxns__A)}; - -/* lastFxns__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_lastFxns__C, ".const:xdc_runtime_Startup_lastFxns__C"); -__FAR__ const CT__xdc_runtime_Startup_lastFxns xdc_runtime_Startup_lastFxns__C = {0, 0}; - -/* startModsFxn__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_startModsFxn__C, ".const:xdc_runtime_Startup_startModsFxn__C"); -__FAR__ const CT__xdc_runtime_Startup_startModsFxn xdc_runtime_Startup_startModsFxn__C = ((CT__xdc_runtime_Startup_startModsFxn)((xdc_Fxn)xdc_runtime_Startup_startMods__I)); - -/* execImpl__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_execImpl__C, ".const:xdc_runtime_Startup_execImpl__C"); -__FAR__ const CT__xdc_runtime_Startup_execImpl xdc_runtime_Startup_execImpl__C = ((CT__xdc_runtime_Startup_execImpl)((xdc_Fxn)xdc_runtime_Startup_exec__I)); - -/* sfxnTab__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_sfxnTab__C, ".const:xdc_runtime_Startup_sfxnTab__C"); -__FAR__ const CT__xdc_runtime_Startup_sfxnTab xdc_runtime_Startup_sfxnTab__C = ((CT__xdc_runtime_Startup_sfxnTab)xdc_runtime_Startup_sfxnTab__A); - -/* sfxnRts__C */ -#pragma DATA_SECTION(xdc_runtime_Startup_sfxnRts__C, ".const:xdc_runtime_Startup_sfxnRts__C"); -__FAR__ const CT__xdc_runtime_Startup_sfxnRts xdc_runtime_Startup_sfxnRts__C = ((CT__xdc_runtime_Startup_sfxnRts)xdc_runtime_Startup_sfxnRts__A); - - -/* - * ======== xdc.runtime.SysMin INITIALIZERS ======== - */ - -/* --> xdc_runtime_SysMin_Module_State_0_outbuf__A */ -__T1_xdc_runtime_SysMin_Module_State__outbuf xdc_runtime_SysMin_Module_State_0_outbuf__A[1024]; - -/* Module__state__V */ -#if defined (__ICCARM__) -#pragma location = ".data_xdc_runtime_SysMin_Module__state__V" -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -xdc_runtime_SysMin_Module_State__ xdc_runtime_SysMin_Module__state__V __attribute__ ((section(".data_xdc_runtime_SysMin_Module__state__V"))); -#endif -#endif -xdc_runtime_SysMin_Module_State__ xdc_runtime_SysMin_Module__state__V = { - ((void*)xdc_runtime_SysMin_Module_State_0_outbuf__A), /* outbuf */ - (xdc_UInt)0x0, /* outidx */ - 0, /* wrapped */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Module__diagsEnabled__C, ".const:xdc_runtime_SysMin_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_SysMin_Module__diagsEnabled xdc_runtime_SysMin_Module__diagsEnabled__C = (xdc_Bits32)0x10; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Module__diagsIncluded__C, ".const:xdc_runtime_SysMin_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_SysMin_Module__diagsIncluded xdc_runtime_SysMin_Module__diagsIncluded__C = (xdc_Bits32)0x10; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Module__diagsMask__C, ".const:xdc_runtime_SysMin_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_SysMin_Module__diagsMask xdc_runtime_SysMin_Module__diagsMask__C = ((CT__xdc_runtime_SysMin_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Module__gateObj__C, ".const:xdc_runtime_SysMin_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_SysMin_Module__gateObj xdc_runtime_SysMin_Module__gateObj__C = ((CT__xdc_runtime_SysMin_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Module__gatePrms__C, ".const:xdc_runtime_SysMin_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_SysMin_Module__gatePrms xdc_runtime_SysMin_Module__gatePrms__C = ((CT__xdc_runtime_SysMin_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Module__id__C, ".const:xdc_runtime_SysMin_Module__id__C"); -__FAR__ const CT__xdc_runtime_SysMin_Module__id xdc_runtime_SysMin_Module__id__C = (xdc_Bits16)0x800f; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Module__loggerDefined__C, ".const:xdc_runtime_SysMin_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_SysMin_Module__loggerDefined xdc_runtime_SysMin_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Module__loggerObj__C, ".const:xdc_runtime_SysMin_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_SysMin_Module__loggerObj xdc_runtime_SysMin_Module__loggerObj__C = ((CT__xdc_runtime_SysMin_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Module__loggerFxn0__C, ".const:xdc_runtime_SysMin_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_SysMin_Module__loggerFxn0 xdc_runtime_SysMin_Module__loggerFxn0__C = ((CT__xdc_runtime_SysMin_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Module__loggerFxn1__C, ".const:xdc_runtime_SysMin_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_SysMin_Module__loggerFxn1 xdc_runtime_SysMin_Module__loggerFxn1__C = ((CT__xdc_runtime_SysMin_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Module__loggerFxn2__C, ".const:xdc_runtime_SysMin_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_SysMin_Module__loggerFxn2 xdc_runtime_SysMin_Module__loggerFxn2__C = ((CT__xdc_runtime_SysMin_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Module__loggerFxn4__C, ".const:xdc_runtime_SysMin_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_SysMin_Module__loggerFxn4 xdc_runtime_SysMin_Module__loggerFxn4__C = ((CT__xdc_runtime_SysMin_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Module__loggerFxn8__C, ".const:xdc_runtime_SysMin_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_SysMin_Module__loggerFxn8 xdc_runtime_SysMin_Module__loggerFxn8__C = ((CT__xdc_runtime_SysMin_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Module__startupDoneFxn__C, ".const:xdc_runtime_SysMin_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_SysMin_Module__startupDoneFxn xdc_runtime_SysMin_Module__startupDoneFxn__C = ((CT__xdc_runtime_SysMin_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Object__count__C, ".const:xdc_runtime_SysMin_Object__count__C"); -__FAR__ const CT__xdc_runtime_SysMin_Object__count xdc_runtime_SysMin_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Object__heap__C, ".const:xdc_runtime_SysMin_Object__heap__C"); -__FAR__ const CT__xdc_runtime_SysMin_Object__heap xdc_runtime_SysMin_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Object__sizeof__C, ".const:xdc_runtime_SysMin_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_SysMin_Object__sizeof xdc_runtime_SysMin_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_Object__table__C, ".const:xdc_runtime_SysMin_Object__table__C"); -__FAR__ const CT__xdc_runtime_SysMin_Object__table xdc_runtime_SysMin_Object__table__C = 0; - -/* bufSize__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_bufSize__C, ".const:xdc_runtime_SysMin_bufSize__C"); -__FAR__ const CT__xdc_runtime_SysMin_bufSize xdc_runtime_SysMin_bufSize__C = (xdc_SizeT)0x400; - -/* flushAtExit__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_flushAtExit__C, ".const:xdc_runtime_SysMin_flushAtExit__C"); -__FAR__ const CT__xdc_runtime_SysMin_flushAtExit xdc_runtime_SysMin_flushAtExit__C = 1; - -/* outputFxn__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_outputFxn__C, ".const:xdc_runtime_SysMin_outputFxn__C"); -__FAR__ const CT__xdc_runtime_SysMin_outputFxn xdc_runtime_SysMin_outputFxn__C = ((CT__xdc_runtime_SysMin_outputFxn)0); - -/* outputFunc__C */ -#pragma DATA_SECTION(xdc_runtime_SysMin_outputFunc__C, ".const:xdc_runtime_SysMin_outputFunc__C"); -__FAR__ const CT__xdc_runtime_SysMin_outputFunc xdc_runtime_SysMin_outputFunc__C = ((CT__xdc_runtime_SysMin_outputFunc)((xdc_Fxn)xdc_runtime_SysMin_output__I)); - - -/* - * ======== xdc.runtime.System INITIALIZERS ======== - */ - -/* --> xdc_runtime_System_Module_State_0_atexitHandlers__A */ -__T1_xdc_runtime_System_Module_State__atexitHandlers xdc_runtime_System_Module_State_0_atexitHandlers__A[2] = { - ((xdc_Void(*)(xdc_Int))0), /* [0] */ - ((xdc_Void(*)(xdc_Int))0), /* [1] */ -}; - -/* Module__state__V */ -#if defined (__ICCARM__) -#pragma location = ".data_xdc_runtime_System_Module__state__V" -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -xdc_runtime_System_Module_State__ xdc_runtime_System_Module__state__V __attribute__ ((section(".data_xdc_runtime_System_Module__state__V"))); -#endif -#endif -xdc_runtime_System_Module_State__ xdc_runtime_System_Module__state__V = { - ((void*)xdc_runtime_System_Module_State_0_atexitHandlers__A), /* atexitHandlers */ - (xdc_Int)0x0, /* numAtexitHandlers */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_System_Module__diagsEnabled__C, ".const:xdc_runtime_System_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_System_Module__diagsEnabled xdc_runtime_System_Module__diagsEnabled__C = (xdc_Bits32)0x10; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_System_Module__diagsIncluded__C, ".const:xdc_runtime_System_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_System_Module__diagsIncluded xdc_runtime_System_Module__diagsIncluded__C = (xdc_Bits32)0x10; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_System_Module__diagsMask__C, ".const:xdc_runtime_System_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_System_Module__diagsMask xdc_runtime_System_Module__diagsMask__C = ((CT__xdc_runtime_System_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_System_Module__gateObj__C, ".const:xdc_runtime_System_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_System_Module__gateObj xdc_runtime_System_Module__gateObj__C = ((CT__xdc_runtime_System_Module__gateObj)((void*)(xdc_runtime_IGateProvider_Handle)&ti_sysbios_gates_GateHwi_Object__table__V[0])); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_System_Module__gatePrms__C, ".const:xdc_runtime_System_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_System_Module__gatePrms xdc_runtime_System_Module__gatePrms__C = ((CT__xdc_runtime_System_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_System_Module__id__C, ".const:xdc_runtime_System_Module__id__C"); -__FAR__ const CT__xdc_runtime_System_Module__id xdc_runtime_System_Module__id__C = (xdc_Bits16)0x800e; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_System_Module__loggerDefined__C, ".const:xdc_runtime_System_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_System_Module__loggerDefined xdc_runtime_System_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_System_Module__loggerObj__C, ".const:xdc_runtime_System_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_System_Module__loggerObj xdc_runtime_System_Module__loggerObj__C = ((CT__xdc_runtime_System_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_System_Module__loggerFxn0__C, ".const:xdc_runtime_System_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_System_Module__loggerFxn0 xdc_runtime_System_Module__loggerFxn0__C = ((CT__xdc_runtime_System_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_System_Module__loggerFxn1__C, ".const:xdc_runtime_System_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_System_Module__loggerFxn1 xdc_runtime_System_Module__loggerFxn1__C = ((CT__xdc_runtime_System_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_System_Module__loggerFxn2__C, ".const:xdc_runtime_System_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_System_Module__loggerFxn2 xdc_runtime_System_Module__loggerFxn2__C = ((CT__xdc_runtime_System_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_System_Module__loggerFxn4__C, ".const:xdc_runtime_System_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_System_Module__loggerFxn4 xdc_runtime_System_Module__loggerFxn4__C = ((CT__xdc_runtime_System_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_System_Module__loggerFxn8__C, ".const:xdc_runtime_System_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_System_Module__loggerFxn8 xdc_runtime_System_Module__loggerFxn8__C = ((CT__xdc_runtime_System_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_System_Module__startupDoneFxn__C, ".const:xdc_runtime_System_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_System_Module__startupDoneFxn xdc_runtime_System_Module__startupDoneFxn__C = ((CT__xdc_runtime_System_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_System_Object__count__C, ".const:xdc_runtime_System_Object__count__C"); -__FAR__ const CT__xdc_runtime_System_Object__count xdc_runtime_System_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_System_Object__heap__C, ".const:xdc_runtime_System_Object__heap__C"); -__FAR__ const CT__xdc_runtime_System_Object__heap xdc_runtime_System_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_System_Object__sizeof__C, ".const:xdc_runtime_System_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_System_Object__sizeof xdc_runtime_System_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_System_Object__table__C, ".const:xdc_runtime_System_Object__table__C"); -__FAR__ const CT__xdc_runtime_System_Object__table xdc_runtime_System_Object__table__C = 0; - -/* A_cannotFitIntoArg__C */ -#pragma DATA_SECTION(xdc_runtime_System_A_cannotFitIntoArg__C, ".const:xdc_runtime_System_A_cannotFitIntoArg__C"); -__FAR__ const CT__xdc_runtime_System_A_cannotFitIntoArg xdc_runtime_System_A_cannotFitIntoArg__C = (((xdc_runtime_Assert_Id)352) << 16 | 16); - -/* maxAtexitHandlers__C */ -#pragma DATA_SECTION(xdc_runtime_System_maxAtexitHandlers__C, ".const:xdc_runtime_System_maxAtexitHandlers__C"); -__FAR__ const CT__xdc_runtime_System_maxAtexitHandlers xdc_runtime_System_maxAtexitHandlers__C = (xdc_Int)0x2; - -/* abortFxn__C */ -#pragma DATA_SECTION(xdc_runtime_System_abortFxn__C, ".const:xdc_runtime_System_abortFxn__C"); -__FAR__ const CT__xdc_runtime_System_abortFxn xdc_runtime_System_abortFxn__C = ((CT__xdc_runtime_System_abortFxn)((xdc_Fxn)xdc_runtime_System_abortStd__E)); - -/* exitFxn__C */ -#pragma DATA_SECTION(xdc_runtime_System_exitFxn__C, ".const:xdc_runtime_System_exitFxn__C"); -__FAR__ const CT__xdc_runtime_System_exitFxn xdc_runtime_System_exitFxn__C = ((CT__xdc_runtime_System_exitFxn)((xdc_Fxn)xdc_runtime_System_exitStd__E)); - -/* extendFxn__C */ -#pragma DATA_SECTION(xdc_runtime_System_extendFxn__C, ".const:xdc_runtime_System_extendFxn__C"); -__FAR__ const CT__xdc_runtime_System_extendFxn xdc_runtime_System_extendFxn__C = ((CT__xdc_runtime_System_extendFxn)((xdc_Fxn)xdc_runtime_System_printfExtend__I)); - - -/* - * ======== xdc.runtime.System_Module_GateProxy INITIALIZERS ======== - */ - - -/* - * ======== xdc.runtime.System_SupportProxy INITIALIZERS ======== - */ - - -/* - * ======== xdc.runtime.Text INITIALIZERS ======== - */ - -/* Module__state__V */ -#if defined (__ICCARM__) -#pragma location = ".data_xdc_runtime_Text_Module__state__V" -#endif -#if defined(__GNUC__) && !(defined(__MACH__) && defined(__APPLE__)) -#ifndef __TI_COMPILER_VERSION__ -xdc_runtime_Text_Module_State__ xdc_runtime_Text_Module__state__V __attribute__ ((section(".data_xdc_runtime_Text_Module__state__V"))); -#endif -#endif -xdc_runtime_Text_Module_State__ xdc_runtime_Text_Module__state__V = { - ((xdc_Ptr)((void*)&xdc_runtime_Text_charTab__A[0])), /* charBase */ - ((xdc_Ptr)((void*)&xdc_runtime_Text_nodeTab__A[0])), /* nodeBase */ -}; - -/* --> xdc_runtime_Text_charTab__A */ -#pragma DATA_SECTION(xdc_runtime_Text_charTab__A, ".const:xdc_runtime_Text_charTab__A"); -const __T1_xdc_runtime_Text_charTab xdc_runtime_Text_charTab__A[6893] = { - (xdc_Char)0x0, /* [0] */ - (xdc_Char)0x41, /* [1] */ - (xdc_Char)0x5f, /* [2] */ - (xdc_Char)0x69, /* [3] */ - (xdc_Char)0x6e, /* [4] */ - (xdc_Char)0x69, /* [5] */ - (xdc_Char)0x74, /* [6] */ - (xdc_Char)0x69, /* [7] */ - (xdc_Char)0x61, /* [8] */ - (xdc_Char)0x6c, /* [9] */ - (xdc_Char)0x69, /* [10] */ - (xdc_Char)0x7a, /* [11] */ - (xdc_Char)0x65, /* [12] */ - (xdc_Char)0x64, /* [13] */ - (xdc_Char)0x50, /* [14] */ - (xdc_Char)0x61, /* [15] */ - (xdc_Char)0x72, /* [16] */ - (xdc_Char)0x61, /* [17] */ - (xdc_Char)0x6d, /* [18] */ - (xdc_Char)0x73, /* [19] */ - (xdc_Char)0x3a, /* [20] */ - (xdc_Char)0x20, /* [21] */ - (xdc_Char)0x75, /* [22] */ - (xdc_Char)0x6e, /* [23] */ - (xdc_Char)0x69, /* [24] */ - (xdc_Char)0x6e, /* [25] */ - (xdc_Char)0x69, /* [26] */ - (xdc_Char)0x74, /* [27] */ - (xdc_Char)0x69, /* [28] */ - (xdc_Char)0x61, /* [29] */ - (xdc_Char)0x6c, /* [30] */ - (xdc_Char)0x69, /* [31] */ - (xdc_Char)0x7a, /* [32] */ - (xdc_Char)0x65, /* [33] */ - (xdc_Char)0x64, /* [34] */ - (xdc_Char)0x20, /* [35] */ - (xdc_Char)0x50, /* [36] */ - (xdc_Char)0x61, /* [37] */ - (xdc_Char)0x72, /* [38] */ - (xdc_Char)0x61, /* [39] */ - (xdc_Char)0x6d, /* [40] */ - (xdc_Char)0x73, /* [41] */ - (xdc_Char)0x20, /* [42] */ - (xdc_Char)0x73, /* [43] */ - (xdc_Char)0x74, /* [44] */ - (xdc_Char)0x72, /* [45] */ - (xdc_Char)0x75, /* [46] */ - (xdc_Char)0x63, /* [47] */ - (xdc_Char)0x74, /* [48] */ - (xdc_Char)0x0, /* [49] */ - (xdc_Char)0x48, /* [50] */ - (xdc_Char)0x65, /* [51] */ - (xdc_Char)0x61, /* [52] */ - (xdc_Char)0x70, /* [53] */ - (xdc_Char)0x4d, /* [54] */ - (xdc_Char)0x69, /* [55] */ - (xdc_Char)0x6e, /* [56] */ - (xdc_Char)0x5f, /* [57] */ - (xdc_Char)0x63, /* [58] */ - (xdc_Char)0x72, /* [59] */ - (xdc_Char)0x65, /* [60] */ - (xdc_Char)0x61, /* [61] */ - (xdc_Char)0x74, /* [62] */ - (xdc_Char)0x65, /* [63] */ - (xdc_Char)0x20, /* [64] */ - (xdc_Char)0x63, /* [65] */ - (xdc_Char)0x61, /* [66] */ - (xdc_Char)0x6e, /* [67] */ - (xdc_Char)0x6e, /* [68] */ - (xdc_Char)0x6f, /* [69] */ - (xdc_Char)0x74, /* [70] */ - (xdc_Char)0x20, /* [71] */ - (xdc_Char)0x68, /* [72] */ - (xdc_Char)0x61, /* [73] */ - (xdc_Char)0x76, /* [74] */ - (xdc_Char)0x65, /* [75] */ - (xdc_Char)0x20, /* [76] */ - (xdc_Char)0x61, /* [77] */ - (xdc_Char)0x20, /* [78] */ - (xdc_Char)0x7a, /* [79] */ - (xdc_Char)0x65, /* [80] */ - (xdc_Char)0x72, /* [81] */ - (xdc_Char)0x6f, /* [82] */ - (xdc_Char)0x20, /* [83] */ - (xdc_Char)0x73, /* [84] */ - (xdc_Char)0x69, /* [85] */ - (xdc_Char)0x7a, /* [86] */ - (xdc_Char)0x65, /* [87] */ - (xdc_Char)0x20, /* [88] */ - (xdc_Char)0x76, /* [89] */ - (xdc_Char)0x61, /* [90] */ - (xdc_Char)0x6c, /* [91] */ - (xdc_Char)0x75, /* [92] */ - (xdc_Char)0x65, /* [93] */ - (xdc_Char)0x0, /* [94] */ - (xdc_Char)0x48, /* [95] */ - (xdc_Char)0x65, /* [96] */ - (xdc_Char)0x61, /* [97] */ - (xdc_Char)0x70, /* [98] */ - (xdc_Char)0x53, /* [99] */ - (xdc_Char)0x74, /* [100] */ - (xdc_Char)0x64, /* [101] */ - (xdc_Char)0x5f, /* [102] */ - (xdc_Char)0x63, /* [103] */ - (xdc_Char)0x72, /* [104] */ - (xdc_Char)0x65, /* [105] */ - (xdc_Char)0x61, /* [106] */ - (xdc_Char)0x74, /* [107] */ - (xdc_Char)0x65, /* [108] */ - (xdc_Char)0x20, /* [109] */ - (xdc_Char)0x63, /* [110] */ - (xdc_Char)0x61, /* [111] */ - (xdc_Char)0x6e, /* [112] */ - (xdc_Char)0x6e, /* [113] */ - (xdc_Char)0x6f, /* [114] */ - (xdc_Char)0x74, /* [115] */ - (xdc_Char)0x20, /* [116] */ - (xdc_Char)0x68, /* [117] */ - (xdc_Char)0x61, /* [118] */ - (xdc_Char)0x76, /* [119] */ - (xdc_Char)0x65, /* [120] */ - (xdc_Char)0x20, /* [121] */ - (xdc_Char)0x61, /* [122] */ - (xdc_Char)0x20, /* [123] */ - (xdc_Char)0x7a, /* [124] */ - (xdc_Char)0x65, /* [125] */ - (xdc_Char)0x72, /* [126] */ - (xdc_Char)0x6f, /* [127] */ - (xdc_Char)0x20, /* [128] */ - (xdc_Char)0x73, /* [129] */ - (xdc_Char)0x69, /* [130] */ - (xdc_Char)0x7a, /* [131] */ - (xdc_Char)0x65, /* [132] */ - (xdc_Char)0x20, /* [133] */ - (xdc_Char)0x76, /* [134] */ - (xdc_Char)0x61, /* [135] */ - (xdc_Char)0x6c, /* [136] */ - (xdc_Char)0x75, /* [137] */ - (xdc_Char)0x65, /* [138] */ - (xdc_Char)0x0, /* [139] */ - (xdc_Char)0x48, /* [140] */ - (xdc_Char)0x65, /* [141] */ - (xdc_Char)0x61, /* [142] */ - (xdc_Char)0x70, /* [143] */ - (xdc_Char)0x53, /* [144] */ - (xdc_Char)0x74, /* [145] */ - (xdc_Char)0x64, /* [146] */ - (xdc_Char)0x5f, /* [147] */ - (xdc_Char)0x61, /* [148] */ - (xdc_Char)0x6c, /* [149] */ - (xdc_Char)0x6c, /* [150] */ - (xdc_Char)0x6f, /* [151] */ - (xdc_Char)0x63, /* [152] */ - (xdc_Char)0x20, /* [153] */ - (xdc_Char)0x61, /* [154] */ - (xdc_Char)0x6c, /* [155] */ - (xdc_Char)0x69, /* [156] */ - (xdc_Char)0x67, /* [157] */ - (xdc_Char)0x6e, /* [158] */ - (xdc_Char)0x6d, /* [159] */ - (xdc_Char)0x65, /* [160] */ - (xdc_Char)0x6e, /* [161] */ - (xdc_Char)0x74, /* [162] */ - (xdc_Char)0x20, /* [163] */ - (xdc_Char)0x6d, /* [164] */ - (xdc_Char)0x75, /* [165] */ - (xdc_Char)0x73, /* [166] */ - (xdc_Char)0x74, /* [167] */ - (xdc_Char)0x20, /* [168] */ - (xdc_Char)0x62, /* [169] */ - (xdc_Char)0x65, /* [170] */ - (xdc_Char)0x20, /* [171] */ - (xdc_Char)0x61, /* [172] */ - (xdc_Char)0x20, /* [173] */ - (xdc_Char)0x70, /* [174] */ - (xdc_Char)0x6f, /* [175] */ - (xdc_Char)0x77, /* [176] */ - (xdc_Char)0x65, /* [177] */ - (xdc_Char)0x72, /* [178] */ - (xdc_Char)0x20, /* [179] */ - (xdc_Char)0x6f, /* [180] */ - (xdc_Char)0x66, /* [181] */ - (xdc_Char)0x20, /* [182] */ - (xdc_Char)0x32, /* [183] */ - (xdc_Char)0x0, /* [184] */ - (xdc_Char)0x48, /* [185] */ - (xdc_Char)0x65, /* [186] */ - (xdc_Char)0x61, /* [187] */ - (xdc_Char)0x70, /* [188] */ - (xdc_Char)0x53, /* [189] */ - (xdc_Char)0x74, /* [190] */ - (xdc_Char)0x64, /* [191] */ - (xdc_Char)0x20, /* [192] */ - (xdc_Char)0x69, /* [193] */ - (xdc_Char)0x6e, /* [194] */ - (xdc_Char)0x73, /* [195] */ - (xdc_Char)0x74, /* [196] */ - (xdc_Char)0x61, /* [197] */ - (xdc_Char)0x6e, /* [198] */ - (xdc_Char)0x63, /* [199] */ - (xdc_Char)0x65, /* [200] */ - (xdc_Char)0x20, /* [201] */ - (xdc_Char)0x74, /* [202] */ - (xdc_Char)0x6f, /* [203] */ - (xdc_Char)0x74, /* [204] */ - (xdc_Char)0x61, /* [205] */ - (xdc_Char)0x6c, /* [206] */ - (xdc_Char)0x46, /* [207] */ - (xdc_Char)0x72, /* [208] */ - (xdc_Char)0x65, /* [209] */ - (xdc_Char)0x65, /* [210] */ - (xdc_Char)0x53, /* [211] */ - (xdc_Char)0x69, /* [212] */ - (xdc_Char)0x7a, /* [213] */ - (xdc_Char)0x65, /* [214] */ - (xdc_Char)0x20, /* [215] */ - (xdc_Char)0x69, /* [216] */ - (xdc_Char)0x73, /* [217] */ - (xdc_Char)0x20, /* [218] */ - (xdc_Char)0x67, /* [219] */ - (xdc_Char)0x72, /* [220] */ - (xdc_Char)0x65, /* [221] */ - (xdc_Char)0x61, /* [222] */ - (xdc_Char)0x74, /* [223] */ - (xdc_Char)0x65, /* [224] */ - (xdc_Char)0x72, /* [225] */ - (xdc_Char)0x20, /* [226] */ - (xdc_Char)0x74, /* [227] */ - (xdc_Char)0x68, /* [228] */ - (xdc_Char)0x61, /* [229] */ - (xdc_Char)0x6e, /* [230] */ - (xdc_Char)0x20, /* [231] */ - (xdc_Char)0x73, /* [232] */ - (xdc_Char)0x74, /* [233] */ - (xdc_Char)0x61, /* [234] */ - (xdc_Char)0x72, /* [235] */ - (xdc_Char)0x74, /* [236] */ - (xdc_Char)0x69, /* [237] */ - (xdc_Char)0x6e, /* [238] */ - (xdc_Char)0x67, /* [239] */ - (xdc_Char)0x20, /* [240] */ - (xdc_Char)0x73, /* [241] */ - (xdc_Char)0x69, /* [242] */ - (xdc_Char)0x7a, /* [243] */ - (xdc_Char)0x65, /* [244] */ - (xdc_Char)0x0, /* [245] */ - (xdc_Char)0x48, /* [246] */ - (xdc_Char)0x65, /* [247] */ - (xdc_Char)0x61, /* [248] */ - (xdc_Char)0x70, /* [249] */ - (xdc_Char)0x53, /* [250] */ - (xdc_Char)0x74, /* [251] */ - (xdc_Char)0x64, /* [252] */ - (xdc_Char)0x5f, /* [253] */ - (xdc_Char)0x61, /* [254] */ - (xdc_Char)0x6c, /* [255] */ - (xdc_Char)0x6c, /* [256] */ - (xdc_Char)0x6f, /* [257] */ - (xdc_Char)0x63, /* [258] */ - (xdc_Char)0x20, /* [259] */ - (xdc_Char)0x2d, /* [260] */ - (xdc_Char)0x20, /* [261] */ - (xdc_Char)0x72, /* [262] */ - (xdc_Char)0x65, /* [263] */ - (xdc_Char)0x71, /* [264] */ - (xdc_Char)0x75, /* [265] */ - (xdc_Char)0x65, /* [266] */ - (xdc_Char)0x73, /* [267] */ - (xdc_Char)0x74, /* [268] */ - (xdc_Char)0x65, /* [269] */ - (xdc_Char)0x64, /* [270] */ - (xdc_Char)0x20, /* [271] */ - (xdc_Char)0x61, /* [272] */ - (xdc_Char)0x6c, /* [273] */ - (xdc_Char)0x69, /* [274] */ - (xdc_Char)0x67, /* [275] */ - (xdc_Char)0x6e, /* [276] */ - (xdc_Char)0x6d, /* [277] */ - (xdc_Char)0x65, /* [278] */ - (xdc_Char)0x6e, /* [279] */ - (xdc_Char)0x74, /* [280] */ - (xdc_Char)0x20, /* [281] */ - (xdc_Char)0x69, /* [282] */ - (xdc_Char)0x73, /* [283] */ - (xdc_Char)0x20, /* [284] */ - (xdc_Char)0x67, /* [285] */ - (xdc_Char)0x72, /* [286] */ - (xdc_Char)0x65, /* [287] */ - (xdc_Char)0x61, /* [288] */ - (xdc_Char)0x74, /* [289] */ - (xdc_Char)0x65, /* [290] */ - (xdc_Char)0x72, /* [291] */ - (xdc_Char)0x20, /* [292] */ - (xdc_Char)0x74, /* [293] */ - (xdc_Char)0x68, /* [294] */ - (xdc_Char)0x61, /* [295] */ - (xdc_Char)0x6e, /* [296] */ - (xdc_Char)0x20, /* [297] */ - (xdc_Char)0x61, /* [298] */ - (xdc_Char)0x6c, /* [299] */ - (xdc_Char)0x6c, /* [300] */ - (xdc_Char)0x6f, /* [301] */ - (xdc_Char)0x77, /* [302] */ - (xdc_Char)0x65, /* [303] */ - (xdc_Char)0x64, /* [304] */ - (xdc_Char)0x0, /* [305] */ - (xdc_Char)0x41, /* [306] */ - (xdc_Char)0x5f, /* [307] */ - (xdc_Char)0x69, /* [308] */ - (xdc_Char)0x6e, /* [309] */ - (xdc_Char)0x76, /* [310] */ - (xdc_Char)0x61, /* [311] */ - (xdc_Char)0x6c, /* [312] */ - (xdc_Char)0x69, /* [313] */ - (xdc_Char)0x64, /* [314] */ - (xdc_Char)0x4c, /* [315] */ - (xdc_Char)0x6f, /* [316] */ - (xdc_Char)0x67, /* [317] */ - (xdc_Char)0x67, /* [318] */ - (xdc_Char)0x65, /* [319] */ - (xdc_Char)0x72, /* [320] */ - (xdc_Char)0x3a, /* [321] */ - (xdc_Char)0x20, /* [322] */ - (xdc_Char)0x54, /* [323] */ - (xdc_Char)0x68, /* [324] */ - (xdc_Char)0x65, /* [325] */ - (xdc_Char)0x20, /* [326] */ - (xdc_Char)0x6c, /* [327] */ - (xdc_Char)0x6f, /* [328] */ - (xdc_Char)0x67, /* [329] */ - (xdc_Char)0x67, /* [330] */ - (xdc_Char)0x65, /* [331] */ - (xdc_Char)0x72, /* [332] */ - (xdc_Char)0x20, /* [333] */ - (xdc_Char)0x69, /* [334] */ - (xdc_Char)0x64, /* [335] */ - (xdc_Char)0x20, /* [336] */ - (xdc_Char)0x25, /* [337] */ - (xdc_Char)0x64, /* [338] */ - (xdc_Char)0x20, /* [339] */ - (xdc_Char)0x69, /* [340] */ - (xdc_Char)0x73, /* [341] */ - (xdc_Char)0x20, /* [342] */ - (xdc_Char)0x69, /* [343] */ - (xdc_Char)0x6e, /* [344] */ - (xdc_Char)0x76, /* [345] */ - (xdc_Char)0x61, /* [346] */ - (xdc_Char)0x6c, /* [347] */ - (xdc_Char)0x69, /* [348] */ - (xdc_Char)0x64, /* [349] */ - (xdc_Char)0x2e, /* [350] */ - (xdc_Char)0x0, /* [351] */ - (xdc_Char)0x41, /* [352] */ - (xdc_Char)0x5f, /* [353] */ - (xdc_Char)0x63, /* [354] */ - (xdc_Char)0x61, /* [355] */ - (xdc_Char)0x6e, /* [356] */ - (xdc_Char)0x6e, /* [357] */ - (xdc_Char)0x6f, /* [358] */ - (xdc_Char)0x74, /* [359] */ - (xdc_Char)0x46, /* [360] */ - (xdc_Char)0x69, /* [361] */ - (xdc_Char)0x74, /* [362] */ - (xdc_Char)0x49, /* [363] */ - (xdc_Char)0x6e, /* [364] */ - (xdc_Char)0x74, /* [365] */ - (xdc_Char)0x6f, /* [366] */ - (xdc_Char)0x41, /* [367] */ - (xdc_Char)0x72, /* [368] */ - (xdc_Char)0x67, /* [369] */ - (xdc_Char)0x3a, /* [370] */ - (xdc_Char)0x20, /* [371] */ - (xdc_Char)0x73, /* [372] */ - (xdc_Char)0x69, /* [373] */ - (xdc_Char)0x7a, /* [374] */ - (xdc_Char)0x65, /* [375] */ - (xdc_Char)0x6f, /* [376] */ - (xdc_Char)0x66, /* [377] */ - (xdc_Char)0x28, /* [378] */ - (xdc_Char)0x46, /* [379] */ - (xdc_Char)0x6c, /* [380] */ - (xdc_Char)0x6f, /* [381] */ - (xdc_Char)0x61, /* [382] */ - (xdc_Char)0x74, /* [383] */ - (xdc_Char)0x29, /* [384] */ - (xdc_Char)0x20, /* [385] */ - (xdc_Char)0x3e, /* [386] */ - (xdc_Char)0x20, /* [387] */ - (xdc_Char)0x73, /* [388] */ - (xdc_Char)0x69, /* [389] */ - (xdc_Char)0x7a, /* [390] */ - (xdc_Char)0x65, /* [391] */ - (xdc_Char)0x6f, /* [392] */ - (xdc_Char)0x66, /* [393] */ - (xdc_Char)0x28, /* [394] */ - (xdc_Char)0x41, /* [395] */ - (xdc_Char)0x72, /* [396] */ - (xdc_Char)0x67, /* [397] */ - (xdc_Char)0x29, /* [398] */ - (xdc_Char)0x0, /* [399] */ - (xdc_Char)0x41, /* [400] */ - (xdc_Char)0x5f, /* [401] */ - (xdc_Char)0x6d, /* [402] */ - (xdc_Char)0x75, /* [403] */ - (xdc_Char)0x73, /* [404] */ - (xdc_Char)0x74, /* [405] */ - (xdc_Char)0x55, /* [406] */ - (xdc_Char)0x73, /* [407] */ - (xdc_Char)0x65, /* [408] */ - (xdc_Char)0x45, /* [409] */ - (xdc_Char)0x6e, /* [410] */ - (xdc_Char)0x68, /* [411] */ - (xdc_Char)0x61, /* [412] */ - (xdc_Char)0x6e, /* [413] */ - (xdc_Char)0x63, /* [414] */ - (xdc_Char)0x65, /* [415] */ - (xdc_Char)0x64, /* [416] */ - (xdc_Char)0x43, /* [417] */ - (xdc_Char)0x6c, /* [418] */ - (xdc_Char)0x6f, /* [419] */ - (xdc_Char)0x63, /* [420] */ - (xdc_Char)0x6b, /* [421] */ - (xdc_Char)0x4d, /* [422] */ - (xdc_Char)0x6f, /* [423] */ - (xdc_Char)0x64, /* [424] */ - (xdc_Char)0x65, /* [425] */ - (xdc_Char)0x3a, /* [426] */ - (xdc_Char)0x20, /* [427] */ - (xdc_Char)0x54, /* [428] */ - (xdc_Char)0x68, /* [429] */ - (xdc_Char)0x69, /* [430] */ - (xdc_Char)0x73, /* [431] */ - (xdc_Char)0x20, /* [432] */ - (xdc_Char)0x64, /* [433] */ - (xdc_Char)0x65, /* [434] */ - (xdc_Char)0x76, /* [435] */ - (xdc_Char)0x69, /* [436] */ - (xdc_Char)0x63, /* [437] */ - (xdc_Char)0x65, /* [438] */ - (xdc_Char)0x20, /* [439] */ - (xdc_Char)0x72, /* [440] */ - (xdc_Char)0x65, /* [441] */ - (xdc_Char)0x71, /* [442] */ - (xdc_Char)0x75, /* [443] */ - (xdc_Char)0x69, /* [444] */ - (xdc_Char)0x72, /* [445] */ - (xdc_Char)0x65, /* [446] */ - (xdc_Char)0x73, /* [447] */ - (xdc_Char)0x20, /* [448] */ - (xdc_Char)0x74, /* [449] */ - (xdc_Char)0x68, /* [450] */ - (xdc_Char)0x65, /* [451] */ - (xdc_Char)0x20, /* [452] */ - (xdc_Char)0x45, /* [453] */ - (xdc_Char)0x6e, /* [454] */ - (xdc_Char)0x68, /* [455] */ - (xdc_Char)0x61, /* [456] */ - (xdc_Char)0x6e, /* [457] */ - (xdc_Char)0x63, /* [458] */ - (xdc_Char)0x65, /* [459] */ - (xdc_Char)0x64, /* [460] */ - (xdc_Char)0x20, /* [461] */ - (xdc_Char)0x43, /* [462] */ - (xdc_Char)0x6c, /* [463] */ - (xdc_Char)0x6f, /* [464] */ - (xdc_Char)0x63, /* [465] */ - (xdc_Char)0x6b, /* [466] */ - (xdc_Char)0x20, /* [467] */ - (xdc_Char)0x4d, /* [468] */ - (xdc_Char)0x6f, /* [469] */ - (xdc_Char)0x64, /* [470] */ - (xdc_Char)0x65, /* [471] */ - (xdc_Char)0x2e, /* [472] */ - (xdc_Char)0x0, /* [473] */ - (xdc_Char)0x41, /* [474] */ - (xdc_Char)0x5f, /* [475] */ - (xdc_Char)0x6d, /* [476] */ - (xdc_Char)0x75, /* [477] */ - (xdc_Char)0x73, /* [478] */ - (xdc_Char)0x74, /* [479] */ - (xdc_Char)0x4e, /* [480] */ - (xdc_Char)0x6f, /* [481] */ - (xdc_Char)0x74, /* [482] */ - (xdc_Char)0x55, /* [483] */ - (xdc_Char)0x73, /* [484] */ - (xdc_Char)0x65, /* [485] */ - (xdc_Char)0x45, /* [486] */ - (xdc_Char)0x6e, /* [487] */ - (xdc_Char)0x68, /* [488] */ - (xdc_Char)0x61, /* [489] */ - (xdc_Char)0x6e, /* [490] */ - (xdc_Char)0x63, /* [491] */ - (xdc_Char)0x65, /* [492] */ - (xdc_Char)0x64, /* [493] */ - (xdc_Char)0x43, /* [494] */ - (xdc_Char)0x6c, /* [495] */ - (xdc_Char)0x6f, /* [496] */ - (xdc_Char)0x63, /* [497] */ - (xdc_Char)0x6b, /* [498] */ - (xdc_Char)0x4d, /* [499] */ - (xdc_Char)0x6f, /* [500] */ - (xdc_Char)0x64, /* [501] */ - (xdc_Char)0x65, /* [502] */ - (xdc_Char)0x3a, /* [503] */ - (xdc_Char)0x20, /* [504] */ - (xdc_Char)0x54, /* [505] */ - (xdc_Char)0x68, /* [506] */ - (xdc_Char)0x69, /* [507] */ - (xdc_Char)0x73, /* [508] */ - (xdc_Char)0x20, /* [509] */ - (xdc_Char)0x64, /* [510] */ - (xdc_Char)0x65, /* [511] */ - (xdc_Char)0x76, /* [512] */ - (xdc_Char)0x69, /* [513] */ - (xdc_Char)0x63, /* [514] */ - (xdc_Char)0x65, /* [515] */ - (xdc_Char)0x20, /* [516] */ - (xdc_Char)0x64, /* [517] */ - (xdc_Char)0x6f, /* [518] */ - (xdc_Char)0x65, /* [519] */ - (xdc_Char)0x73, /* [520] */ - (xdc_Char)0x20, /* [521] */ - (xdc_Char)0x6e, /* [522] */ - (xdc_Char)0x6f, /* [523] */ - (xdc_Char)0x74, /* [524] */ - (xdc_Char)0x20, /* [525] */ - (xdc_Char)0x73, /* [526] */ - (xdc_Char)0x75, /* [527] */ - (xdc_Char)0x70, /* [528] */ - (xdc_Char)0x70, /* [529] */ - (xdc_Char)0x6f, /* [530] */ - (xdc_Char)0x72, /* [531] */ - (xdc_Char)0x74, /* [532] */ - (xdc_Char)0x20, /* [533] */ - (xdc_Char)0x74, /* [534] */ - (xdc_Char)0x68, /* [535] */ - (xdc_Char)0x65, /* [536] */ - (xdc_Char)0x20, /* [537] */ - (xdc_Char)0x45, /* [538] */ - (xdc_Char)0x6e, /* [539] */ - (xdc_Char)0x68, /* [540] */ - (xdc_Char)0x61, /* [541] */ - (xdc_Char)0x6e, /* [542] */ - (xdc_Char)0x63, /* [543] */ - (xdc_Char)0x65, /* [544] */ - (xdc_Char)0x64, /* [545] */ - (xdc_Char)0x20, /* [546] */ - (xdc_Char)0x43, /* [547] */ - (xdc_Char)0x6c, /* [548] */ - (xdc_Char)0x6f, /* [549] */ - (xdc_Char)0x63, /* [550] */ - (xdc_Char)0x6b, /* [551] */ - (xdc_Char)0x20, /* [552] */ - (xdc_Char)0x4d, /* [553] */ - (xdc_Char)0x6f, /* [554] */ - (xdc_Char)0x64, /* [555] */ - (xdc_Char)0x65, /* [556] */ - (xdc_Char)0x2e, /* [557] */ - (xdc_Char)0x0, /* [558] */ - (xdc_Char)0x41, /* [559] */ - (xdc_Char)0x5f, /* [560] */ - (xdc_Char)0x6e, /* [561] */ - (xdc_Char)0x75, /* [562] */ - (xdc_Char)0x6c, /* [563] */ - (xdc_Char)0x6c, /* [564] */ - (xdc_Char)0x50, /* [565] */ - (xdc_Char)0x6f, /* [566] */ - (xdc_Char)0x69, /* [567] */ - (xdc_Char)0x6e, /* [568] */ - (xdc_Char)0x74, /* [569] */ - (xdc_Char)0x65, /* [570] */ - (xdc_Char)0x72, /* [571] */ - (xdc_Char)0x3a, /* [572] */ - (xdc_Char)0x20, /* [573] */ - (xdc_Char)0x50, /* [574] */ - (xdc_Char)0x6f, /* [575] */ - (xdc_Char)0x69, /* [576] */ - (xdc_Char)0x6e, /* [577] */ - (xdc_Char)0x74, /* [578] */ - (xdc_Char)0x65, /* [579] */ - (xdc_Char)0x72, /* [580] */ - (xdc_Char)0x20, /* [581] */ - (xdc_Char)0x69, /* [582] */ - (xdc_Char)0x73, /* [583] */ - (xdc_Char)0x20, /* [584] */ - (xdc_Char)0x6e, /* [585] */ - (xdc_Char)0x75, /* [586] */ - (xdc_Char)0x6c, /* [587] */ - (xdc_Char)0x6c, /* [588] */ - (xdc_Char)0x0, /* [589] */ - (xdc_Char)0x41, /* [590] */ - (xdc_Char)0x5f, /* [591] */ - (xdc_Char)0x69, /* [592] */ - (xdc_Char)0x6e, /* [593] */ - (xdc_Char)0x76, /* [594] */ - (xdc_Char)0x61, /* [595] */ - (xdc_Char)0x6c, /* [596] */ - (xdc_Char)0x69, /* [597] */ - (xdc_Char)0x64, /* [598] */ - (xdc_Char)0x52, /* [599] */ - (xdc_Char)0x65, /* [600] */ - (xdc_Char)0x67, /* [601] */ - (xdc_Char)0x69, /* [602] */ - (xdc_Char)0x6f, /* [603] */ - (xdc_Char)0x6e, /* [604] */ - (xdc_Char)0x49, /* [605] */ - (xdc_Char)0x64, /* [606] */ - (xdc_Char)0x3a, /* [607] */ - (xdc_Char)0x20, /* [608] */ - (xdc_Char)0x4d, /* [609] */ - (xdc_Char)0x50, /* [610] */ - (xdc_Char)0x55, /* [611] */ - (xdc_Char)0x20, /* [612] */ - (xdc_Char)0x52, /* [613] */ - (xdc_Char)0x65, /* [614] */ - (xdc_Char)0x67, /* [615] */ - (xdc_Char)0x69, /* [616] */ - (xdc_Char)0x6f, /* [617] */ - (xdc_Char)0x6e, /* [618] */ - (xdc_Char)0x20, /* [619] */ - (xdc_Char)0x6e, /* [620] */ - (xdc_Char)0x75, /* [621] */ - (xdc_Char)0x6d, /* [622] */ - (xdc_Char)0x62, /* [623] */ - (xdc_Char)0x65, /* [624] */ - (xdc_Char)0x72, /* [625] */ - (xdc_Char)0x20, /* [626] */ - (xdc_Char)0x70, /* [627] */ - (xdc_Char)0x61, /* [628] */ - (xdc_Char)0x73, /* [629] */ - (xdc_Char)0x73, /* [630] */ - (xdc_Char)0x65, /* [631] */ - (xdc_Char)0x64, /* [632] */ - (xdc_Char)0x20, /* [633] */ - (xdc_Char)0x69, /* [634] */ - (xdc_Char)0x73, /* [635] */ - (xdc_Char)0x20, /* [636] */ - (xdc_Char)0x69, /* [637] */ - (xdc_Char)0x6e, /* [638] */ - (xdc_Char)0x76, /* [639] */ - (xdc_Char)0x61, /* [640] */ - (xdc_Char)0x6c, /* [641] */ - (xdc_Char)0x69, /* [642] */ - (xdc_Char)0x64, /* [643] */ - (xdc_Char)0x2e, /* [644] */ - (xdc_Char)0x0, /* [645] */ - (xdc_Char)0x41, /* [646] */ - (xdc_Char)0x5f, /* [647] */ - (xdc_Char)0x75, /* [648] */ - (xdc_Char)0x6e, /* [649] */ - (xdc_Char)0x61, /* [650] */ - (xdc_Char)0x6c, /* [651] */ - (xdc_Char)0x69, /* [652] */ - (xdc_Char)0x67, /* [653] */ - (xdc_Char)0x6e, /* [654] */ - (xdc_Char)0x65, /* [655] */ - (xdc_Char)0x64, /* [656] */ - (xdc_Char)0x42, /* [657] */ - (xdc_Char)0x61, /* [658] */ - (xdc_Char)0x73, /* [659] */ - (xdc_Char)0x65, /* [660] */ - (xdc_Char)0x41, /* [661] */ - (xdc_Char)0x64, /* [662] */ - (xdc_Char)0x64, /* [663] */ - (xdc_Char)0x72, /* [664] */ - (xdc_Char)0x3a, /* [665] */ - (xdc_Char)0x20, /* [666] */ - (xdc_Char)0x4d, /* [667] */ - (xdc_Char)0x50, /* [668] */ - (xdc_Char)0x55, /* [669] */ - (xdc_Char)0x20, /* [670] */ - (xdc_Char)0x72, /* [671] */ - (xdc_Char)0x65, /* [672] */ - (xdc_Char)0x67, /* [673] */ - (xdc_Char)0x69, /* [674] */ - (xdc_Char)0x6f, /* [675] */ - (xdc_Char)0x6e, /* [676] */ - (xdc_Char)0x20, /* [677] */ - (xdc_Char)0x62, /* [678] */ - (xdc_Char)0x61, /* [679] */ - (xdc_Char)0x73, /* [680] */ - (xdc_Char)0x65, /* [681] */ - (xdc_Char)0x20, /* [682] */ - (xdc_Char)0x61, /* [683] */ - (xdc_Char)0x64, /* [684] */ - (xdc_Char)0x64, /* [685] */ - (xdc_Char)0x72, /* [686] */ - (xdc_Char)0x65, /* [687] */ - (xdc_Char)0x73, /* [688] */ - (xdc_Char)0x73, /* [689] */ - (xdc_Char)0x20, /* [690] */ - (xdc_Char)0x6e, /* [691] */ - (xdc_Char)0x6f, /* [692] */ - (xdc_Char)0x74, /* [693] */ - (xdc_Char)0x20, /* [694] */ - (xdc_Char)0x61, /* [695] */ - (xdc_Char)0x6c, /* [696] */ - (xdc_Char)0x69, /* [697] */ - (xdc_Char)0x67, /* [698] */ - (xdc_Char)0x6e, /* [699] */ - (xdc_Char)0x65, /* [700] */ - (xdc_Char)0x64, /* [701] */ - (xdc_Char)0x20, /* [702] */ - (xdc_Char)0x74, /* [703] */ - (xdc_Char)0x6f, /* [704] */ - (xdc_Char)0x20, /* [705] */ - (xdc_Char)0x73, /* [706] */ - (xdc_Char)0x69, /* [707] */ - (xdc_Char)0x7a, /* [708] */ - (xdc_Char)0x65, /* [709] */ - (xdc_Char)0x2e, /* [710] */ - (xdc_Char)0x0, /* [711] */ - (xdc_Char)0x41, /* [712] */ - (xdc_Char)0x5f, /* [713] */ - (xdc_Char)0x75, /* [714] */ - (xdc_Char)0x6e, /* [715] */ - (xdc_Char)0x73, /* [716] */ - (xdc_Char)0x75, /* [717] */ - (xdc_Char)0x70, /* [718] */ - (xdc_Char)0x70, /* [719] */ - (xdc_Char)0x6f, /* [720] */ - (xdc_Char)0x72, /* [721] */ - (xdc_Char)0x74, /* [722] */ - (xdc_Char)0x65, /* [723] */ - (xdc_Char)0x64, /* [724] */ - (xdc_Char)0x4d, /* [725] */ - (xdc_Char)0x61, /* [726] */ - (xdc_Char)0x73, /* [727] */ - (xdc_Char)0x6b, /* [728] */ - (xdc_Char)0x69, /* [729] */ - (xdc_Char)0x6e, /* [730] */ - (xdc_Char)0x67, /* [731] */ - (xdc_Char)0x4f, /* [732] */ - (xdc_Char)0x70, /* [733] */ - (xdc_Char)0x74, /* [734] */ - (xdc_Char)0x69, /* [735] */ - (xdc_Char)0x6f, /* [736] */ - (xdc_Char)0x6e, /* [737] */ - (xdc_Char)0x3a, /* [738] */ - (xdc_Char)0x20, /* [739] */ - (xdc_Char)0x75, /* [740] */ - (xdc_Char)0x6e, /* [741] */ - (xdc_Char)0x73, /* [742] */ - (xdc_Char)0x75, /* [743] */ - (xdc_Char)0x70, /* [744] */ - (xdc_Char)0x70, /* [745] */ - (xdc_Char)0x6f, /* [746] */ - (xdc_Char)0x72, /* [747] */ - (xdc_Char)0x74, /* [748] */ - (xdc_Char)0x65, /* [749] */ - (xdc_Char)0x64, /* [750] */ - (xdc_Char)0x20, /* [751] */ - (xdc_Char)0x6d, /* [752] */ - (xdc_Char)0x61, /* [753] */ - (xdc_Char)0x73, /* [754] */ - (xdc_Char)0x6b, /* [755] */ - (xdc_Char)0x53, /* [756] */ - (xdc_Char)0x65, /* [757] */ - (xdc_Char)0x74, /* [758] */ - (xdc_Char)0x74, /* [759] */ - (xdc_Char)0x69, /* [760] */ - (xdc_Char)0x6e, /* [761] */ - (xdc_Char)0x67, /* [762] */ - (xdc_Char)0x2e, /* [763] */ - (xdc_Char)0x0, /* [764] */ - (xdc_Char)0x41, /* [765] */ - (xdc_Char)0x5f, /* [766] */ - (xdc_Char)0x63, /* [767] */ - (xdc_Char)0x6c, /* [768] */ - (xdc_Char)0x6f, /* [769] */ - (xdc_Char)0x63, /* [770] */ - (xdc_Char)0x6b, /* [771] */ - (xdc_Char)0x44, /* [772] */ - (xdc_Char)0x69, /* [773] */ - (xdc_Char)0x73, /* [774] */ - (xdc_Char)0x61, /* [775] */ - (xdc_Char)0x62, /* [776] */ - (xdc_Char)0x6c, /* [777] */ - (xdc_Char)0x65, /* [778] */ - (xdc_Char)0x64, /* [779] */ - (xdc_Char)0x3a, /* [780] */ - (xdc_Char)0x20, /* [781] */ - (xdc_Char)0x43, /* [782] */ - (xdc_Char)0x61, /* [783] */ - (xdc_Char)0x6e, /* [784] */ - (xdc_Char)0x6e, /* [785] */ - (xdc_Char)0x6f, /* [786] */ - (xdc_Char)0x74, /* [787] */ - (xdc_Char)0x20, /* [788] */ - (xdc_Char)0x63, /* [789] */ - (xdc_Char)0x72, /* [790] */ - (xdc_Char)0x65, /* [791] */ - (xdc_Char)0x61, /* [792] */ - (xdc_Char)0x74, /* [793] */ - (xdc_Char)0x65, /* [794] */ - (xdc_Char)0x20, /* [795] */ - (xdc_Char)0x61, /* [796] */ - (xdc_Char)0x20, /* [797] */ - (xdc_Char)0x63, /* [798] */ - (xdc_Char)0x6c, /* [799] */ - (xdc_Char)0x6f, /* [800] */ - (xdc_Char)0x63, /* [801] */ - (xdc_Char)0x6b, /* [802] */ - (xdc_Char)0x20, /* [803] */ - (xdc_Char)0x69, /* [804] */ - (xdc_Char)0x6e, /* [805] */ - (xdc_Char)0x73, /* [806] */ - (xdc_Char)0x74, /* [807] */ - (xdc_Char)0x61, /* [808] */ - (xdc_Char)0x6e, /* [809] */ - (xdc_Char)0x63, /* [810] */ - (xdc_Char)0x65, /* [811] */ - (xdc_Char)0x20, /* [812] */ - (xdc_Char)0x77, /* [813] */ - (xdc_Char)0x68, /* [814] */ - (xdc_Char)0x65, /* [815] */ - (xdc_Char)0x6e, /* [816] */ - (xdc_Char)0x20, /* [817] */ - (xdc_Char)0x42, /* [818] */ - (xdc_Char)0x49, /* [819] */ - (xdc_Char)0x4f, /* [820] */ - (xdc_Char)0x53, /* [821] */ - (xdc_Char)0x2e, /* [822] */ - (xdc_Char)0x63, /* [823] */ - (xdc_Char)0x6c, /* [824] */ - (xdc_Char)0x6f, /* [825] */ - (xdc_Char)0x63, /* [826] */ - (xdc_Char)0x6b, /* [827] */ - (xdc_Char)0x45, /* [828] */ - (xdc_Char)0x6e, /* [829] */ - (xdc_Char)0x61, /* [830] */ - (xdc_Char)0x62, /* [831] */ - (xdc_Char)0x6c, /* [832] */ - (xdc_Char)0x65, /* [833] */ - (xdc_Char)0x64, /* [834] */ - (xdc_Char)0x20, /* [835] */ - (xdc_Char)0x69, /* [836] */ - (xdc_Char)0x73, /* [837] */ - (xdc_Char)0x20, /* [838] */ - (xdc_Char)0x66, /* [839] */ - (xdc_Char)0x61, /* [840] */ - (xdc_Char)0x6c, /* [841] */ - (xdc_Char)0x73, /* [842] */ - (xdc_Char)0x65, /* [843] */ - (xdc_Char)0x2e, /* [844] */ - (xdc_Char)0x0, /* [845] */ - (xdc_Char)0x41, /* [846] */ - (xdc_Char)0x5f, /* [847] */ - (xdc_Char)0x62, /* [848] */ - (xdc_Char)0x61, /* [849] */ - (xdc_Char)0x64, /* [850] */ - (xdc_Char)0x54, /* [851] */ - (xdc_Char)0x68, /* [852] */ - (xdc_Char)0x72, /* [853] */ - (xdc_Char)0x65, /* [854] */ - (xdc_Char)0x61, /* [855] */ - (xdc_Char)0x64, /* [856] */ - (xdc_Char)0x54, /* [857] */ - (xdc_Char)0x79, /* [858] */ - (xdc_Char)0x70, /* [859] */ - (xdc_Char)0x65, /* [860] */ - (xdc_Char)0x3a, /* [861] */ - (xdc_Char)0x20, /* [862] */ - (xdc_Char)0x43, /* [863] */ - (xdc_Char)0x61, /* [864] */ - (xdc_Char)0x6e, /* [865] */ - (xdc_Char)0x6e, /* [866] */ - (xdc_Char)0x6f, /* [867] */ - (xdc_Char)0x74, /* [868] */ - (xdc_Char)0x20, /* [869] */ - (xdc_Char)0x63, /* [870] */ - (xdc_Char)0x72, /* [871] */ - (xdc_Char)0x65, /* [872] */ - (xdc_Char)0x61, /* [873] */ - (xdc_Char)0x74, /* [874] */ - (xdc_Char)0x65, /* [875] */ - (xdc_Char)0x2f, /* [876] */ - (xdc_Char)0x64, /* [877] */ - (xdc_Char)0x65, /* [878] */ - (xdc_Char)0x6c, /* [879] */ - (xdc_Char)0x65, /* [880] */ - (xdc_Char)0x74, /* [881] */ - (xdc_Char)0x65, /* [882] */ - (xdc_Char)0x20, /* [883] */ - (xdc_Char)0x61, /* [884] */ - (xdc_Char)0x20, /* [885] */ - (xdc_Char)0x43, /* [886] */ - (xdc_Char)0x6c, /* [887] */ - (xdc_Char)0x6f, /* [888] */ - (xdc_Char)0x63, /* [889] */ - (xdc_Char)0x6b, /* [890] */ - (xdc_Char)0x20, /* [891] */ - (xdc_Char)0x66, /* [892] */ - (xdc_Char)0x72, /* [893] */ - (xdc_Char)0x6f, /* [894] */ - (xdc_Char)0x6d, /* [895] */ - (xdc_Char)0x20, /* [896] */ - (xdc_Char)0x48, /* [897] */ - (xdc_Char)0x77, /* [898] */ - (xdc_Char)0x69, /* [899] */ - (xdc_Char)0x20, /* [900] */ - (xdc_Char)0x6f, /* [901] */ - (xdc_Char)0x72, /* [902] */ - (xdc_Char)0x20, /* [903] */ - (xdc_Char)0x53, /* [904] */ - (xdc_Char)0x77, /* [905] */ - (xdc_Char)0x69, /* [906] */ - (xdc_Char)0x20, /* [907] */ - (xdc_Char)0x74, /* [908] */ - (xdc_Char)0x68, /* [909] */ - (xdc_Char)0x72, /* [910] */ - (xdc_Char)0x65, /* [911] */ - (xdc_Char)0x61, /* [912] */ - (xdc_Char)0x64, /* [913] */ - (xdc_Char)0x2e, /* [914] */ - (xdc_Char)0x0, /* [915] */ - (xdc_Char)0x41, /* [916] */ - (xdc_Char)0x5f, /* [917] */ - (xdc_Char)0x6e, /* [918] */ - (xdc_Char)0x75, /* [919] */ - (xdc_Char)0x6c, /* [920] */ - (xdc_Char)0x6c, /* [921] */ - (xdc_Char)0x45, /* [922] */ - (xdc_Char)0x76, /* [923] */ - (xdc_Char)0x65, /* [924] */ - (xdc_Char)0x6e, /* [925] */ - (xdc_Char)0x74, /* [926] */ - (xdc_Char)0x4d, /* [927] */ - (xdc_Char)0x61, /* [928] */ - (xdc_Char)0x73, /* [929] */ - (xdc_Char)0x6b, /* [930] */ - (xdc_Char)0x73, /* [931] */ - (xdc_Char)0x3a, /* [932] */ - (xdc_Char)0x20, /* [933] */ - (xdc_Char)0x6f, /* [934] */ - (xdc_Char)0x72, /* [935] */ - (xdc_Char)0x4d, /* [936] */ - (xdc_Char)0x61, /* [937] */ - (xdc_Char)0x73, /* [938] */ - (xdc_Char)0x6b, /* [939] */ - (xdc_Char)0x20, /* [940] */ - (xdc_Char)0x61, /* [941] */ - (xdc_Char)0x6e, /* [942] */ - (xdc_Char)0x64, /* [943] */ - (xdc_Char)0x20, /* [944] */ - (xdc_Char)0x61, /* [945] */ - (xdc_Char)0x6e, /* [946] */ - (xdc_Char)0x64, /* [947] */ - (xdc_Char)0x4d, /* [948] */ - (xdc_Char)0x61, /* [949] */ - (xdc_Char)0x73, /* [950] */ - (xdc_Char)0x6b, /* [951] */ - (xdc_Char)0x20, /* [952] */ - (xdc_Char)0x61, /* [953] */ - (xdc_Char)0x72, /* [954] */ - (xdc_Char)0x65, /* [955] */ - (xdc_Char)0x20, /* [956] */ - (xdc_Char)0x6e, /* [957] */ - (xdc_Char)0x75, /* [958] */ - (xdc_Char)0x6c, /* [959] */ - (xdc_Char)0x6c, /* [960] */ - (xdc_Char)0x2e, /* [961] */ - (xdc_Char)0x0, /* [962] */ - (xdc_Char)0x41, /* [963] */ - (xdc_Char)0x5f, /* [964] */ - (xdc_Char)0x6e, /* [965] */ - (xdc_Char)0x75, /* [966] */ - (xdc_Char)0x6c, /* [967] */ - (xdc_Char)0x6c, /* [968] */ - (xdc_Char)0x45, /* [969] */ - (xdc_Char)0x76, /* [970] */ - (xdc_Char)0x65, /* [971] */ - (xdc_Char)0x6e, /* [972] */ - (xdc_Char)0x74, /* [973] */ - (xdc_Char)0x49, /* [974] */ - (xdc_Char)0x64, /* [975] */ - (xdc_Char)0x3a, /* [976] */ - (xdc_Char)0x20, /* [977] */ - (xdc_Char)0x70, /* [978] */ - (xdc_Char)0x6f, /* [979] */ - (xdc_Char)0x73, /* [980] */ - (xdc_Char)0x74, /* [981] */ - (xdc_Char)0x65, /* [982] */ - (xdc_Char)0x64, /* [983] */ - (xdc_Char)0x20, /* [984] */ - (xdc_Char)0x65, /* [985] */ - (xdc_Char)0x76, /* [986] */ - (xdc_Char)0x65, /* [987] */ - (xdc_Char)0x6e, /* [988] */ - (xdc_Char)0x74, /* [989] */ - (xdc_Char)0x49, /* [990] */ - (xdc_Char)0x64, /* [991] */ - (xdc_Char)0x20, /* [992] */ - (xdc_Char)0x69, /* [993] */ - (xdc_Char)0x73, /* [994] */ - (xdc_Char)0x20, /* [995] */ - (xdc_Char)0x6e, /* [996] */ - (xdc_Char)0x75, /* [997] */ - (xdc_Char)0x6c, /* [998] */ - (xdc_Char)0x6c, /* [999] */ - (xdc_Char)0x2e, /* [1000] */ - (xdc_Char)0x0, /* [1001] */ - (xdc_Char)0x41, /* [1002] */ - (xdc_Char)0x5f, /* [1003] */ - (xdc_Char)0x65, /* [1004] */ - (xdc_Char)0x76, /* [1005] */ - (xdc_Char)0x65, /* [1006] */ - (xdc_Char)0x6e, /* [1007] */ - (xdc_Char)0x74, /* [1008] */ - (xdc_Char)0x49, /* [1009] */ - (xdc_Char)0x6e, /* [1010] */ - (xdc_Char)0x55, /* [1011] */ - (xdc_Char)0x73, /* [1012] */ - (xdc_Char)0x65, /* [1013] */ - (xdc_Char)0x3a, /* [1014] */ - (xdc_Char)0x20, /* [1015] */ - (xdc_Char)0x45, /* [1016] */ - (xdc_Char)0x76, /* [1017] */ - (xdc_Char)0x65, /* [1018] */ - (xdc_Char)0x6e, /* [1019] */ - (xdc_Char)0x74, /* [1020] */ - (xdc_Char)0x20, /* [1021] */ - (xdc_Char)0x6f, /* [1022] */ - (xdc_Char)0x62, /* [1023] */ - (xdc_Char)0x6a, /* [1024] */ - (xdc_Char)0x65, /* [1025] */ - (xdc_Char)0x63, /* [1026] */ - (xdc_Char)0x74, /* [1027] */ - (xdc_Char)0x20, /* [1028] */ - (xdc_Char)0x61, /* [1029] */ - (xdc_Char)0x6c, /* [1030] */ - (xdc_Char)0x72, /* [1031] */ - (xdc_Char)0x65, /* [1032] */ - (xdc_Char)0x61, /* [1033] */ - (xdc_Char)0x64, /* [1034] */ - (xdc_Char)0x79, /* [1035] */ - (xdc_Char)0x20, /* [1036] */ - (xdc_Char)0x69, /* [1037] */ - (xdc_Char)0x6e, /* [1038] */ - (xdc_Char)0x20, /* [1039] */ - (xdc_Char)0x75, /* [1040] */ - (xdc_Char)0x73, /* [1041] */ - (xdc_Char)0x65, /* [1042] */ - (xdc_Char)0x2e, /* [1043] */ - (xdc_Char)0x0, /* [1044] */ - (xdc_Char)0x41, /* [1045] */ - (xdc_Char)0x5f, /* [1046] */ - (xdc_Char)0x62, /* [1047] */ - (xdc_Char)0x61, /* [1048] */ - (xdc_Char)0x64, /* [1049] */ - (xdc_Char)0x43, /* [1050] */ - (xdc_Char)0x6f, /* [1051] */ - (xdc_Char)0x6e, /* [1052] */ - (xdc_Char)0x74, /* [1053] */ - (xdc_Char)0x65, /* [1054] */ - (xdc_Char)0x78, /* [1055] */ - (xdc_Char)0x74, /* [1056] */ - (xdc_Char)0x3a, /* [1057] */ - (xdc_Char)0x20, /* [1058] */ - (xdc_Char)0x62, /* [1059] */ - (xdc_Char)0x61, /* [1060] */ - (xdc_Char)0x64, /* [1061] */ - (xdc_Char)0x20, /* [1062] */ - (xdc_Char)0x63, /* [1063] */ - (xdc_Char)0x61, /* [1064] */ - (xdc_Char)0x6c, /* [1065] */ - (xdc_Char)0x6c, /* [1066] */ - (xdc_Char)0x69, /* [1067] */ - (xdc_Char)0x6e, /* [1068] */ - (xdc_Char)0x67, /* [1069] */ - (xdc_Char)0x20, /* [1070] */ - (xdc_Char)0x63, /* [1071] */ - (xdc_Char)0x6f, /* [1072] */ - (xdc_Char)0x6e, /* [1073] */ - (xdc_Char)0x74, /* [1074] */ - (xdc_Char)0x65, /* [1075] */ - (xdc_Char)0x78, /* [1076] */ - (xdc_Char)0x74, /* [1077] */ - (xdc_Char)0x2e, /* [1078] */ - (xdc_Char)0x20, /* [1079] */ - (xdc_Char)0x4d, /* [1080] */ - (xdc_Char)0x75, /* [1081] */ - (xdc_Char)0x73, /* [1082] */ - (xdc_Char)0x74, /* [1083] */ - (xdc_Char)0x20, /* [1084] */ - (xdc_Char)0x62, /* [1085] */ - (xdc_Char)0x65, /* [1086] */ - (xdc_Char)0x20, /* [1087] */ - (xdc_Char)0x63, /* [1088] */ - (xdc_Char)0x61, /* [1089] */ - (xdc_Char)0x6c, /* [1090] */ - (xdc_Char)0x6c, /* [1091] */ - (xdc_Char)0x65, /* [1092] */ - (xdc_Char)0x64, /* [1093] */ - (xdc_Char)0x20, /* [1094] */ - (xdc_Char)0x66, /* [1095] */ - (xdc_Char)0x72, /* [1096] */ - (xdc_Char)0x6f, /* [1097] */ - (xdc_Char)0x6d, /* [1098] */ - (xdc_Char)0x20, /* [1099] */ - (xdc_Char)0x61, /* [1100] */ - (xdc_Char)0x20, /* [1101] */ - (xdc_Char)0x54, /* [1102] */ - (xdc_Char)0x61, /* [1103] */ - (xdc_Char)0x73, /* [1104] */ - (xdc_Char)0x6b, /* [1105] */ - (xdc_Char)0x2e, /* [1106] */ - (xdc_Char)0x0, /* [1107] */ - (xdc_Char)0x41, /* [1108] */ - (xdc_Char)0x5f, /* [1109] */ - (xdc_Char)0x70, /* [1110] */ - (xdc_Char)0x65, /* [1111] */ - (xdc_Char)0x6e, /* [1112] */ - (xdc_Char)0x64, /* [1113] */ - (xdc_Char)0x54, /* [1114] */ - (xdc_Char)0x61, /* [1115] */ - (xdc_Char)0x73, /* [1116] */ - (xdc_Char)0x6b, /* [1117] */ - (xdc_Char)0x44, /* [1118] */ - (xdc_Char)0x69, /* [1119] */ - (xdc_Char)0x73, /* [1120] */ - (xdc_Char)0x61, /* [1121] */ - (xdc_Char)0x62, /* [1122] */ - (xdc_Char)0x6c, /* [1123] */ - (xdc_Char)0x65, /* [1124] */ - (xdc_Char)0x64, /* [1125] */ - (xdc_Char)0x3a, /* [1126] */ - (xdc_Char)0x20, /* [1127] */ - (xdc_Char)0x43, /* [1128] */ - (xdc_Char)0x61, /* [1129] */ - (xdc_Char)0x6e, /* [1130] */ - (xdc_Char)0x6e, /* [1131] */ - (xdc_Char)0x6f, /* [1132] */ - (xdc_Char)0x74, /* [1133] */ - (xdc_Char)0x20, /* [1134] */ - (xdc_Char)0x63, /* [1135] */ - (xdc_Char)0x61, /* [1136] */ - (xdc_Char)0x6c, /* [1137] */ - (xdc_Char)0x6c, /* [1138] */ - (xdc_Char)0x20, /* [1139] */ - (xdc_Char)0x45, /* [1140] */ - (xdc_Char)0x76, /* [1141] */ - (xdc_Char)0x65, /* [1142] */ - (xdc_Char)0x6e, /* [1143] */ - (xdc_Char)0x74, /* [1144] */ - (xdc_Char)0x5f, /* [1145] */ - (xdc_Char)0x70, /* [1146] */ - (xdc_Char)0x65, /* [1147] */ - (xdc_Char)0x6e, /* [1148] */ - (xdc_Char)0x64, /* [1149] */ - (xdc_Char)0x28, /* [1150] */ - (xdc_Char)0x29, /* [1151] */ - (xdc_Char)0x20, /* [1152] */ - (xdc_Char)0x77, /* [1153] */ - (xdc_Char)0x68, /* [1154] */ - (xdc_Char)0x69, /* [1155] */ - (xdc_Char)0x6c, /* [1156] */ - (xdc_Char)0x65, /* [1157] */ - (xdc_Char)0x20, /* [1158] */ - (xdc_Char)0x74, /* [1159] */ - (xdc_Char)0x68, /* [1160] */ - (xdc_Char)0x65, /* [1161] */ - (xdc_Char)0x20, /* [1162] */ - (xdc_Char)0x54, /* [1163] */ - (xdc_Char)0x61, /* [1164] */ - (xdc_Char)0x73, /* [1165] */ - (xdc_Char)0x6b, /* [1166] */ - (xdc_Char)0x20, /* [1167] */ - (xdc_Char)0x6f, /* [1168] */ - (xdc_Char)0x72, /* [1169] */ - (xdc_Char)0x20, /* [1170] */ - (xdc_Char)0x53, /* [1171] */ - (xdc_Char)0x77, /* [1172] */ - (xdc_Char)0x69, /* [1173] */ - (xdc_Char)0x20, /* [1174] */ - (xdc_Char)0x73, /* [1175] */ - (xdc_Char)0x63, /* [1176] */ - (xdc_Char)0x68, /* [1177] */ - (xdc_Char)0x65, /* [1178] */ - (xdc_Char)0x64, /* [1179] */ - (xdc_Char)0x75, /* [1180] */ - (xdc_Char)0x6c, /* [1181] */ - (xdc_Char)0x65, /* [1182] */ - (xdc_Char)0x72, /* [1183] */ - (xdc_Char)0x20, /* [1184] */ - (xdc_Char)0x69, /* [1185] */ - (xdc_Char)0x73, /* [1186] */ - (xdc_Char)0x20, /* [1187] */ - (xdc_Char)0x64, /* [1188] */ - (xdc_Char)0x69, /* [1189] */ - (xdc_Char)0x73, /* [1190] */ - (xdc_Char)0x61, /* [1191] */ - (xdc_Char)0x62, /* [1192] */ - (xdc_Char)0x6c, /* [1193] */ - (xdc_Char)0x65, /* [1194] */ - (xdc_Char)0x64, /* [1195] */ - (xdc_Char)0x2e, /* [1196] */ - (xdc_Char)0x0, /* [1197] */ - (xdc_Char)0x4d, /* [1198] */ - (xdc_Char)0x61, /* [1199] */ - (xdc_Char)0x69, /* [1200] */ - (xdc_Char)0x6c, /* [1201] */ - (xdc_Char)0x62, /* [1202] */ - (xdc_Char)0x6f, /* [1203] */ - (xdc_Char)0x78, /* [1204] */ - (xdc_Char)0x5f, /* [1205] */ - (xdc_Char)0x63, /* [1206] */ - (xdc_Char)0x72, /* [1207] */ - (xdc_Char)0x65, /* [1208] */ - (xdc_Char)0x61, /* [1209] */ - (xdc_Char)0x74, /* [1210] */ - (xdc_Char)0x65, /* [1211] */ - (xdc_Char)0x27, /* [1212] */ - (xdc_Char)0x73, /* [1213] */ - (xdc_Char)0x20, /* [1214] */ - (xdc_Char)0x62, /* [1215] */ - (xdc_Char)0x75, /* [1216] */ - (xdc_Char)0x66, /* [1217] */ - (xdc_Char)0x53, /* [1218] */ - (xdc_Char)0x69, /* [1219] */ - (xdc_Char)0x7a, /* [1220] */ - (xdc_Char)0x65, /* [1221] */ - (xdc_Char)0x20, /* [1222] */ - (xdc_Char)0x70, /* [1223] */ - (xdc_Char)0x61, /* [1224] */ - (xdc_Char)0x72, /* [1225] */ - (xdc_Char)0x61, /* [1226] */ - (xdc_Char)0x6d, /* [1227] */ - (xdc_Char)0x65, /* [1228] */ - (xdc_Char)0x74, /* [1229] */ - (xdc_Char)0x65, /* [1230] */ - (xdc_Char)0x72, /* [1231] */ - (xdc_Char)0x20, /* [1232] */ - (xdc_Char)0x69, /* [1233] */ - (xdc_Char)0x73, /* [1234] */ - (xdc_Char)0x20, /* [1235] */ - (xdc_Char)0x69, /* [1236] */ - (xdc_Char)0x6e, /* [1237] */ - (xdc_Char)0x76, /* [1238] */ - (xdc_Char)0x61, /* [1239] */ - (xdc_Char)0x6c, /* [1240] */ - (xdc_Char)0x69, /* [1241] */ - (xdc_Char)0x64, /* [1242] */ - (xdc_Char)0x20, /* [1243] */ - (xdc_Char)0x28, /* [1244] */ - (xdc_Char)0x74, /* [1245] */ - (xdc_Char)0x6f, /* [1246] */ - (xdc_Char)0x6f, /* [1247] */ - (xdc_Char)0x20, /* [1248] */ - (xdc_Char)0x73, /* [1249] */ - (xdc_Char)0x6d, /* [1250] */ - (xdc_Char)0x61, /* [1251] */ - (xdc_Char)0x6c, /* [1252] */ - (xdc_Char)0x6c, /* [1253] */ - (xdc_Char)0x29, /* [1254] */ - (xdc_Char)0x0, /* [1255] */ - (xdc_Char)0x41, /* [1256] */ - (xdc_Char)0x5f, /* [1257] */ - (xdc_Char)0x6e, /* [1258] */ - (xdc_Char)0x6f, /* [1259] */ - (xdc_Char)0x45, /* [1260] */ - (xdc_Char)0x76, /* [1261] */ - (xdc_Char)0x65, /* [1262] */ - (xdc_Char)0x6e, /* [1263] */ - (xdc_Char)0x74, /* [1264] */ - (xdc_Char)0x73, /* [1265] */ - (xdc_Char)0x3a, /* [1266] */ - (xdc_Char)0x20, /* [1267] */ - (xdc_Char)0x54, /* [1268] */ - (xdc_Char)0x68, /* [1269] */ - (xdc_Char)0x65, /* [1270] */ - (xdc_Char)0x20, /* [1271] */ - (xdc_Char)0x45, /* [1272] */ - (xdc_Char)0x76, /* [1273] */ - (xdc_Char)0x65, /* [1274] */ - (xdc_Char)0x6e, /* [1275] */ - (xdc_Char)0x74, /* [1276] */ - (xdc_Char)0x2e, /* [1277] */ - (xdc_Char)0x73, /* [1278] */ - (xdc_Char)0x75, /* [1279] */ - (xdc_Char)0x70, /* [1280] */ - (xdc_Char)0x70, /* [1281] */ - (xdc_Char)0x6f, /* [1282] */ - (xdc_Char)0x72, /* [1283] */ - (xdc_Char)0x74, /* [1284] */ - (xdc_Char)0x73, /* [1285] */ - (xdc_Char)0x45, /* [1286] */ - (xdc_Char)0x76, /* [1287] */ - (xdc_Char)0x65, /* [1288] */ - (xdc_Char)0x6e, /* [1289] */ - (xdc_Char)0x74, /* [1290] */ - (xdc_Char)0x73, /* [1291] */ - (xdc_Char)0x20, /* [1292] */ - (xdc_Char)0x66, /* [1293] */ - (xdc_Char)0x6c, /* [1294] */ - (xdc_Char)0x61, /* [1295] */ - (xdc_Char)0x67, /* [1296] */ - (xdc_Char)0x20, /* [1297] */ - (xdc_Char)0x69, /* [1298] */ - (xdc_Char)0x73, /* [1299] */ - (xdc_Char)0x20, /* [1300] */ - (xdc_Char)0x64, /* [1301] */ - (xdc_Char)0x69, /* [1302] */ - (xdc_Char)0x73, /* [1303] */ - (xdc_Char)0x61, /* [1304] */ - (xdc_Char)0x62, /* [1305] */ - (xdc_Char)0x6c, /* [1306] */ - (xdc_Char)0x65, /* [1307] */ - (xdc_Char)0x64, /* [1308] */ - (xdc_Char)0x2e, /* [1309] */ - (xdc_Char)0x0, /* [1310] */ - (xdc_Char)0x41, /* [1311] */ - (xdc_Char)0x5f, /* [1312] */ - (xdc_Char)0x69, /* [1313] */ - (xdc_Char)0x6e, /* [1314] */ - (xdc_Char)0x76, /* [1315] */ - (xdc_Char)0x54, /* [1316] */ - (xdc_Char)0x69, /* [1317] */ - (xdc_Char)0x6d, /* [1318] */ - (xdc_Char)0x65, /* [1319] */ - (xdc_Char)0x6f, /* [1320] */ - (xdc_Char)0x75, /* [1321] */ - (xdc_Char)0x74, /* [1322] */ - (xdc_Char)0x3a, /* [1323] */ - (xdc_Char)0x20, /* [1324] */ - (xdc_Char)0x43, /* [1325] */ - (xdc_Char)0x61, /* [1326] */ - (xdc_Char)0x6e, /* [1327] */ - (xdc_Char)0x27, /* [1328] */ - (xdc_Char)0x74, /* [1329] */ - (xdc_Char)0x20, /* [1330] */ - (xdc_Char)0x75, /* [1331] */ - (xdc_Char)0x73, /* [1332] */ - (xdc_Char)0x65, /* [1333] */ - (xdc_Char)0x20, /* [1334] */ - (xdc_Char)0x42, /* [1335] */ - (xdc_Char)0x49, /* [1336] */ - (xdc_Char)0x4f, /* [1337] */ - (xdc_Char)0x53, /* [1338] */ - (xdc_Char)0x5f, /* [1339] */ - (xdc_Char)0x45, /* [1340] */ - (xdc_Char)0x56, /* [1341] */ - (xdc_Char)0x45, /* [1342] */ - (xdc_Char)0x4e, /* [1343] */ - (xdc_Char)0x54, /* [1344] */ - (xdc_Char)0x5f, /* [1345] */ - (xdc_Char)0x41, /* [1346] */ - (xdc_Char)0x43, /* [1347] */ - (xdc_Char)0x51, /* [1348] */ - (xdc_Char)0x55, /* [1349] */ - (xdc_Char)0x49, /* [1350] */ - (xdc_Char)0x52, /* [1351] */ - (xdc_Char)0x45, /* [1352] */ - (xdc_Char)0x44, /* [1353] */ - (xdc_Char)0x20, /* [1354] */ - (xdc_Char)0x77, /* [1355] */ - (xdc_Char)0x69, /* [1356] */ - (xdc_Char)0x74, /* [1357] */ - (xdc_Char)0x68, /* [1358] */ - (xdc_Char)0x20, /* [1359] */ - (xdc_Char)0x74, /* [1360] */ - (xdc_Char)0x68, /* [1361] */ - (xdc_Char)0x69, /* [1362] */ - (xdc_Char)0x73, /* [1363] */ - (xdc_Char)0x20, /* [1364] */ - (xdc_Char)0x53, /* [1365] */ - (xdc_Char)0x65, /* [1366] */ - (xdc_Char)0x6d, /* [1367] */ - (xdc_Char)0x61, /* [1368] */ - (xdc_Char)0x70, /* [1369] */ - (xdc_Char)0x68, /* [1370] */ - (xdc_Char)0x6f, /* [1371] */ - (xdc_Char)0x72, /* [1372] */ - (xdc_Char)0x65, /* [1373] */ - (xdc_Char)0x2e, /* [1374] */ - (xdc_Char)0x0, /* [1375] */ - (xdc_Char)0x41, /* [1376] */ - (xdc_Char)0x5f, /* [1377] */ - (xdc_Char)0x6f, /* [1378] */ - (xdc_Char)0x76, /* [1379] */ - (xdc_Char)0x65, /* [1380] */ - (xdc_Char)0x72, /* [1381] */ - (xdc_Char)0x66, /* [1382] */ - (xdc_Char)0x6c, /* [1383] */ - (xdc_Char)0x6f, /* [1384] */ - (xdc_Char)0x77, /* [1385] */ - (xdc_Char)0x3a, /* [1386] */ - (xdc_Char)0x20, /* [1387] */ - (xdc_Char)0x43, /* [1388] */ - (xdc_Char)0x6f, /* [1389] */ - (xdc_Char)0x75, /* [1390] */ - (xdc_Char)0x6e, /* [1391] */ - (xdc_Char)0x74, /* [1392] */ - (xdc_Char)0x20, /* [1393] */ - (xdc_Char)0x68, /* [1394] */ - (xdc_Char)0x61, /* [1395] */ - (xdc_Char)0x73, /* [1396] */ - (xdc_Char)0x20, /* [1397] */ - (xdc_Char)0x65, /* [1398] */ - (xdc_Char)0x78, /* [1399] */ - (xdc_Char)0x63, /* [1400] */ - (xdc_Char)0x65, /* [1401] */ - (xdc_Char)0x65, /* [1402] */ - (xdc_Char)0x64, /* [1403] */ - (xdc_Char)0x65, /* [1404] */ - (xdc_Char)0x64, /* [1405] */ - (xdc_Char)0x20, /* [1406] */ - (xdc_Char)0x36, /* [1407] */ - (xdc_Char)0x35, /* [1408] */ - (xdc_Char)0x35, /* [1409] */ - (xdc_Char)0x33, /* [1410] */ - (xdc_Char)0x35, /* [1411] */ - (xdc_Char)0x20, /* [1412] */ - (xdc_Char)0x61, /* [1413] */ - (xdc_Char)0x6e, /* [1414] */ - (xdc_Char)0x64, /* [1415] */ - (xdc_Char)0x20, /* [1416] */ - (xdc_Char)0x72, /* [1417] */ - (xdc_Char)0x6f, /* [1418] */ - (xdc_Char)0x6c, /* [1419] */ - (xdc_Char)0x6c, /* [1420] */ - (xdc_Char)0x65, /* [1421] */ - (xdc_Char)0x64, /* [1422] */ - (xdc_Char)0x20, /* [1423] */ - (xdc_Char)0x6f, /* [1424] */ - (xdc_Char)0x76, /* [1425] */ - (xdc_Char)0x65, /* [1426] */ - (xdc_Char)0x72, /* [1427] */ - (xdc_Char)0x2e, /* [1428] */ - (xdc_Char)0x0, /* [1429] */ - (xdc_Char)0x41, /* [1430] */ - (xdc_Char)0x5f, /* [1431] */ - (xdc_Char)0x70, /* [1432] */ - (xdc_Char)0x65, /* [1433] */ - (xdc_Char)0x6e, /* [1434] */ - (xdc_Char)0x64, /* [1435] */ - (xdc_Char)0x54, /* [1436] */ - (xdc_Char)0x61, /* [1437] */ - (xdc_Char)0x73, /* [1438] */ - (xdc_Char)0x6b, /* [1439] */ - (xdc_Char)0x44, /* [1440] */ - (xdc_Char)0x69, /* [1441] */ - (xdc_Char)0x73, /* [1442] */ - (xdc_Char)0x61, /* [1443] */ - (xdc_Char)0x62, /* [1444] */ - (xdc_Char)0x6c, /* [1445] */ - (xdc_Char)0x65, /* [1446] */ - (xdc_Char)0x64, /* [1447] */ - (xdc_Char)0x3a, /* [1448] */ - (xdc_Char)0x20, /* [1449] */ - (xdc_Char)0x43, /* [1450] */ - (xdc_Char)0x61, /* [1451] */ - (xdc_Char)0x6e, /* [1452] */ - (xdc_Char)0x6e, /* [1453] */ - (xdc_Char)0x6f, /* [1454] */ - (xdc_Char)0x74, /* [1455] */ - (xdc_Char)0x20, /* [1456] */ - (xdc_Char)0x63, /* [1457] */ - (xdc_Char)0x61, /* [1458] */ - (xdc_Char)0x6c, /* [1459] */ - (xdc_Char)0x6c, /* [1460] */ - (xdc_Char)0x20, /* [1461] */ - (xdc_Char)0x53, /* [1462] */ - (xdc_Char)0x65, /* [1463] */ - (xdc_Char)0x6d, /* [1464] */ - (xdc_Char)0x61, /* [1465] */ - (xdc_Char)0x70, /* [1466] */ - (xdc_Char)0x68, /* [1467] */ - (xdc_Char)0x6f, /* [1468] */ - (xdc_Char)0x72, /* [1469] */ - (xdc_Char)0x65, /* [1470] */ - (xdc_Char)0x5f, /* [1471] */ - (xdc_Char)0x70, /* [1472] */ - (xdc_Char)0x65, /* [1473] */ - (xdc_Char)0x6e, /* [1474] */ - (xdc_Char)0x64, /* [1475] */ - (xdc_Char)0x28, /* [1476] */ - (xdc_Char)0x29, /* [1477] */ - (xdc_Char)0x20, /* [1478] */ - (xdc_Char)0x77, /* [1479] */ - (xdc_Char)0x68, /* [1480] */ - (xdc_Char)0x69, /* [1481] */ - (xdc_Char)0x6c, /* [1482] */ - (xdc_Char)0x65, /* [1483] */ - (xdc_Char)0x20, /* [1484] */ - (xdc_Char)0x74, /* [1485] */ - (xdc_Char)0x68, /* [1486] */ - (xdc_Char)0x65, /* [1487] */ - (xdc_Char)0x20, /* [1488] */ - (xdc_Char)0x54, /* [1489] */ - (xdc_Char)0x61, /* [1490] */ - (xdc_Char)0x73, /* [1491] */ - (xdc_Char)0x6b, /* [1492] */ - (xdc_Char)0x20, /* [1493] */ - (xdc_Char)0x6f, /* [1494] */ - (xdc_Char)0x72, /* [1495] */ - (xdc_Char)0x20, /* [1496] */ - (xdc_Char)0x53, /* [1497] */ - (xdc_Char)0x77, /* [1498] */ - (xdc_Char)0x69, /* [1499] */ - (xdc_Char)0x20, /* [1500] */ - (xdc_Char)0x73, /* [1501] */ - (xdc_Char)0x63, /* [1502] */ - (xdc_Char)0x68, /* [1503] */ - (xdc_Char)0x65, /* [1504] */ - (xdc_Char)0x64, /* [1505] */ - (xdc_Char)0x75, /* [1506] */ - (xdc_Char)0x6c, /* [1507] */ - (xdc_Char)0x65, /* [1508] */ - (xdc_Char)0x72, /* [1509] */ - (xdc_Char)0x20, /* [1510] */ - (xdc_Char)0x69, /* [1511] */ - (xdc_Char)0x73, /* [1512] */ - (xdc_Char)0x20, /* [1513] */ - (xdc_Char)0x64, /* [1514] */ - (xdc_Char)0x69, /* [1515] */ - (xdc_Char)0x73, /* [1516] */ - (xdc_Char)0x61, /* [1517] */ - (xdc_Char)0x62, /* [1518] */ - (xdc_Char)0x6c, /* [1519] */ - (xdc_Char)0x65, /* [1520] */ - (xdc_Char)0x64, /* [1521] */ - (xdc_Char)0x2e, /* [1522] */ - (xdc_Char)0x0, /* [1523] */ - (xdc_Char)0x41, /* [1524] */ - (xdc_Char)0x5f, /* [1525] */ - (xdc_Char)0x73, /* [1526] */ - (xdc_Char)0x77, /* [1527] */ - (xdc_Char)0x69, /* [1528] */ - (xdc_Char)0x44, /* [1529] */ - (xdc_Char)0x69, /* [1530] */ - (xdc_Char)0x73, /* [1531] */ - (xdc_Char)0x61, /* [1532] */ - (xdc_Char)0x62, /* [1533] */ - (xdc_Char)0x6c, /* [1534] */ - (xdc_Char)0x65, /* [1535] */ - (xdc_Char)0x64, /* [1536] */ - (xdc_Char)0x3a, /* [1537] */ - (xdc_Char)0x20, /* [1538] */ - (xdc_Char)0x43, /* [1539] */ - (xdc_Char)0x61, /* [1540] */ - (xdc_Char)0x6e, /* [1541] */ - (xdc_Char)0x6e, /* [1542] */ - (xdc_Char)0x6f, /* [1543] */ - (xdc_Char)0x74, /* [1544] */ - (xdc_Char)0x20, /* [1545] */ - (xdc_Char)0x63, /* [1546] */ - (xdc_Char)0x72, /* [1547] */ - (xdc_Char)0x65, /* [1548] */ - (xdc_Char)0x61, /* [1549] */ - (xdc_Char)0x74, /* [1550] */ - (xdc_Char)0x65, /* [1551] */ - (xdc_Char)0x20, /* [1552] */ - (xdc_Char)0x61, /* [1553] */ - (xdc_Char)0x20, /* [1554] */ - (xdc_Char)0x53, /* [1555] */ - (xdc_Char)0x77, /* [1556] */ - (xdc_Char)0x69, /* [1557] */ - (xdc_Char)0x20, /* [1558] */ - (xdc_Char)0x77, /* [1559] */ - (xdc_Char)0x68, /* [1560] */ - (xdc_Char)0x65, /* [1561] */ - (xdc_Char)0x6e, /* [1562] */ - (xdc_Char)0x20, /* [1563] */ - (xdc_Char)0x53, /* [1564] */ - (xdc_Char)0x77, /* [1565] */ - (xdc_Char)0x69, /* [1566] */ - (xdc_Char)0x20, /* [1567] */ - (xdc_Char)0x69, /* [1568] */ - (xdc_Char)0x73, /* [1569] */ - (xdc_Char)0x20, /* [1570] */ - (xdc_Char)0x64, /* [1571] */ - (xdc_Char)0x69, /* [1572] */ - (xdc_Char)0x73, /* [1573] */ - (xdc_Char)0x61, /* [1574] */ - (xdc_Char)0x62, /* [1575] */ - (xdc_Char)0x6c, /* [1576] */ - (xdc_Char)0x65, /* [1577] */ - (xdc_Char)0x64, /* [1578] */ - (xdc_Char)0x2e, /* [1579] */ - (xdc_Char)0x0, /* [1580] */ - (xdc_Char)0x41, /* [1581] */ - (xdc_Char)0x5f, /* [1582] */ - (xdc_Char)0x62, /* [1583] */ - (xdc_Char)0x61, /* [1584] */ - (xdc_Char)0x64, /* [1585] */ - (xdc_Char)0x50, /* [1586] */ - (xdc_Char)0x72, /* [1587] */ - (xdc_Char)0x69, /* [1588] */ - (xdc_Char)0x6f, /* [1589] */ - (xdc_Char)0x72, /* [1590] */ - (xdc_Char)0x69, /* [1591] */ - (xdc_Char)0x74, /* [1592] */ - (xdc_Char)0x79, /* [1593] */ - (xdc_Char)0x3a, /* [1594] */ - (xdc_Char)0x20, /* [1595] */ - (xdc_Char)0x41, /* [1596] */ - (xdc_Char)0x6e, /* [1597] */ - (xdc_Char)0x20, /* [1598] */ - (xdc_Char)0x69, /* [1599] */ - (xdc_Char)0x6e, /* [1600] */ - (xdc_Char)0x76, /* [1601] */ - (xdc_Char)0x61, /* [1602] */ - (xdc_Char)0x6c, /* [1603] */ - (xdc_Char)0x69, /* [1604] */ - (xdc_Char)0x64, /* [1605] */ - (xdc_Char)0x20, /* [1606] */ - (xdc_Char)0x53, /* [1607] */ - (xdc_Char)0x77, /* [1608] */ - (xdc_Char)0x69, /* [1609] */ - (xdc_Char)0x20, /* [1610] */ - (xdc_Char)0x70, /* [1611] */ - (xdc_Char)0x72, /* [1612] */ - (xdc_Char)0x69, /* [1613] */ - (xdc_Char)0x6f, /* [1614] */ - (xdc_Char)0x72, /* [1615] */ - (xdc_Char)0x69, /* [1616] */ - (xdc_Char)0x74, /* [1617] */ - (xdc_Char)0x79, /* [1618] */ - (xdc_Char)0x20, /* [1619] */ - (xdc_Char)0x77, /* [1620] */ - (xdc_Char)0x61, /* [1621] */ - (xdc_Char)0x73, /* [1622] */ - (xdc_Char)0x20, /* [1623] */ - (xdc_Char)0x75, /* [1624] */ - (xdc_Char)0x73, /* [1625] */ - (xdc_Char)0x65, /* [1626] */ - (xdc_Char)0x64, /* [1627] */ - (xdc_Char)0x2e, /* [1628] */ - (xdc_Char)0x0, /* [1629] */ - (xdc_Char)0x41, /* [1630] */ - (xdc_Char)0x5f, /* [1631] */ - (xdc_Char)0x62, /* [1632] */ - (xdc_Char)0x61, /* [1633] */ - (xdc_Char)0x64, /* [1634] */ - (xdc_Char)0x54, /* [1635] */ - (xdc_Char)0x68, /* [1636] */ - (xdc_Char)0x72, /* [1637] */ - (xdc_Char)0x65, /* [1638] */ - (xdc_Char)0x61, /* [1639] */ - (xdc_Char)0x64, /* [1640] */ - (xdc_Char)0x54, /* [1641] */ - (xdc_Char)0x79, /* [1642] */ - (xdc_Char)0x70, /* [1643] */ - (xdc_Char)0x65, /* [1644] */ - (xdc_Char)0x3a, /* [1645] */ - (xdc_Char)0x20, /* [1646] */ - (xdc_Char)0x43, /* [1647] */ - (xdc_Char)0x61, /* [1648] */ - (xdc_Char)0x6e, /* [1649] */ - (xdc_Char)0x6e, /* [1650] */ - (xdc_Char)0x6f, /* [1651] */ - (xdc_Char)0x74, /* [1652] */ - (xdc_Char)0x20, /* [1653] */ - (xdc_Char)0x63, /* [1654] */ - (xdc_Char)0x72, /* [1655] */ - (xdc_Char)0x65, /* [1656] */ - (xdc_Char)0x61, /* [1657] */ - (xdc_Char)0x74, /* [1658] */ - (xdc_Char)0x65, /* [1659] */ - (xdc_Char)0x2f, /* [1660] */ - (xdc_Char)0x64, /* [1661] */ - (xdc_Char)0x65, /* [1662] */ - (xdc_Char)0x6c, /* [1663] */ - (xdc_Char)0x65, /* [1664] */ - (xdc_Char)0x74, /* [1665] */ - (xdc_Char)0x65, /* [1666] */ - (xdc_Char)0x20, /* [1667] */ - (xdc_Char)0x61, /* [1668] */ - (xdc_Char)0x20, /* [1669] */ - (xdc_Char)0x74, /* [1670] */ - (xdc_Char)0x61, /* [1671] */ - (xdc_Char)0x73, /* [1672] */ - (xdc_Char)0x6b, /* [1673] */ - (xdc_Char)0x20, /* [1674] */ - (xdc_Char)0x66, /* [1675] */ - (xdc_Char)0x72, /* [1676] */ - (xdc_Char)0x6f, /* [1677] */ - (xdc_Char)0x6d, /* [1678] */ - (xdc_Char)0x20, /* [1679] */ - (xdc_Char)0x48, /* [1680] */ - (xdc_Char)0x77, /* [1681] */ - (xdc_Char)0x69, /* [1682] */ - (xdc_Char)0x20, /* [1683] */ - (xdc_Char)0x6f, /* [1684] */ - (xdc_Char)0x72, /* [1685] */ - (xdc_Char)0x20, /* [1686] */ - (xdc_Char)0x53, /* [1687] */ - (xdc_Char)0x77, /* [1688] */ - (xdc_Char)0x69, /* [1689] */ - (xdc_Char)0x20, /* [1690] */ - (xdc_Char)0x74, /* [1691] */ - (xdc_Char)0x68, /* [1692] */ - (xdc_Char)0x72, /* [1693] */ - (xdc_Char)0x65, /* [1694] */ - (xdc_Char)0x61, /* [1695] */ - (xdc_Char)0x64, /* [1696] */ - (xdc_Char)0x2e, /* [1697] */ - (xdc_Char)0x0, /* [1698] */ - (xdc_Char)0x41, /* [1699] */ - (xdc_Char)0x5f, /* [1700] */ - (xdc_Char)0x62, /* [1701] */ - (xdc_Char)0x61, /* [1702] */ - (xdc_Char)0x64, /* [1703] */ - (xdc_Char)0x54, /* [1704] */ - (xdc_Char)0x61, /* [1705] */ - (xdc_Char)0x73, /* [1706] */ - (xdc_Char)0x6b, /* [1707] */ - (xdc_Char)0x53, /* [1708] */ - (xdc_Char)0x74, /* [1709] */ - (xdc_Char)0x61, /* [1710] */ - (xdc_Char)0x74, /* [1711] */ - (xdc_Char)0x65, /* [1712] */ - (xdc_Char)0x3a, /* [1713] */ - (xdc_Char)0x20, /* [1714] */ - (xdc_Char)0x43, /* [1715] */ - (xdc_Char)0x61, /* [1716] */ - (xdc_Char)0x6e, /* [1717] */ - (xdc_Char)0x27, /* [1718] */ - (xdc_Char)0x74, /* [1719] */ - (xdc_Char)0x20, /* [1720] */ - (xdc_Char)0x64, /* [1721] */ - (xdc_Char)0x65, /* [1722] */ - (xdc_Char)0x6c, /* [1723] */ - (xdc_Char)0x65, /* [1724] */ - (xdc_Char)0x74, /* [1725] */ - (xdc_Char)0x65, /* [1726] */ - (xdc_Char)0x20, /* [1727] */ - (xdc_Char)0x61, /* [1728] */ - (xdc_Char)0x20, /* [1729] */ - (xdc_Char)0x74, /* [1730] */ - (xdc_Char)0x61, /* [1731] */ - (xdc_Char)0x73, /* [1732] */ - (xdc_Char)0x6b, /* [1733] */ - (xdc_Char)0x20, /* [1734] */ - (xdc_Char)0x69, /* [1735] */ - (xdc_Char)0x6e, /* [1736] */ - (xdc_Char)0x20, /* [1737] */ - (xdc_Char)0x52, /* [1738] */ - (xdc_Char)0x55, /* [1739] */ - (xdc_Char)0x4e, /* [1740] */ - (xdc_Char)0x4e, /* [1741] */ - (xdc_Char)0x49, /* [1742] */ - (xdc_Char)0x4e, /* [1743] */ - (xdc_Char)0x47, /* [1744] */ - (xdc_Char)0x20, /* [1745] */ - (xdc_Char)0x73, /* [1746] */ - (xdc_Char)0x74, /* [1747] */ - (xdc_Char)0x61, /* [1748] */ - (xdc_Char)0x74, /* [1749] */ - (xdc_Char)0x65, /* [1750] */ - (xdc_Char)0x2e, /* [1751] */ - (xdc_Char)0x0, /* [1752] */ - (xdc_Char)0x41, /* [1753] */ - (xdc_Char)0x5f, /* [1754] */ - (xdc_Char)0x6e, /* [1755] */ - (xdc_Char)0x6f, /* [1756] */ - (xdc_Char)0x50, /* [1757] */ - (xdc_Char)0x65, /* [1758] */ - (xdc_Char)0x6e, /* [1759] */ - (xdc_Char)0x64, /* [1760] */ - (xdc_Char)0x45, /* [1761] */ - (xdc_Char)0x6c, /* [1762] */ - (xdc_Char)0x65, /* [1763] */ - (xdc_Char)0x6d, /* [1764] */ - (xdc_Char)0x3a, /* [1765] */ - (xdc_Char)0x20, /* [1766] */ - (xdc_Char)0x4e, /* [1767] */ - (xdc_Char)0x6f, /* [1768] */ - (xdc_Char)0x74, /* [1769] */ - (xdc_Char)0x20, /* [1770] */ - (xdc_Char)0x65, /* [1771] */ - (xdc_Char)0x6e, /* [1772] */ - (xdc_Char)0x6f, /* [1773] */ - (xdc_Char)0x75, /* [1774] */ - (xdc_Char)0x67, /* [1775] */ - (xdc_Char)0x68, /* [1776] */ - (xdc_Char)0x20, /* [1777] */ - (xdc_Char)0x69, /* [1778] */ - (xdc_Char)0x6e, /* [1779] */ - (xdc_Char)0x66, /* [1780] */ - (xdc_Char)0x6f, /* [1781] */ - (xdc_Char)0x20, /* [1782] */ - (xdc_Char)0x74, /* [1783] */ - (xdc_Char)0x6f, /* [1784] */ - (xdc_Char)0x20, /* [1785] */ - (xdc_Char)0x64, /* [1786] */ - (xdc_Char)0x65, /* [1787] */ - (xdc_Char)0x6c, /* [1788] */ - (xdc_Char)0x65, /* [1789] */ - (xdc_Char)0x74, /* [1790] */ - (xdc_Char)0x65, /* [1791] */ - (xdc_Char)0x20, /* [1792] */ - (xdc_Char)0x42, /* [1793] */ - (xdc_Char)0x4c, /* [1794] */ - (xdc_Char)0x4f, /* [1795] */ - (xdc_Char)0x43, /* [1796] */ - (xdc_Char)0x4b, /* [1797] */ - (xdc_Char)0x45, /* [1798] */ - (xdc_Char)0x44, /* [1799] */ - (xdc_Char)0x20, /* [1800] */ - (xdc_Char)0x74, /* [1801] */ - (xdc_Char)0x61, /* [1802] */ - (xdc_Char)0x73, /* [1803] */ - (xdc_Char)0x6b, /* [1804] */ - (xdc_Char)0x2e, /* [1805] */ - (xdc_Char)0x0, /* [1806] */ - (xdc_Char)0x41, /* [1807] */ - (xdc_Char)0x5f, /* [1808] */ - (xdc_Char)0x74, /* [1809] */ - (xdc_Char)0x61, /* [1810] */ - (xdc_Char)0x73, /* [1811] */ - (xdc_Char)0x6b, /* [1812] */ - (xdc_Char)0x44, /* [1813] */ - (xdc_Char)0x69, /* [1814] */ - (xdc_Char)0x73, /* [1815] */ - (xdc_Char)0x61, /* [1816] */ - (xdc_Char)0x62, /* [1817] */ - (xdc_Char)0x6c, /* [1818] */ - (xdc_Char)0x65, /* [1819] */ - (xdc_Char)0x64, /* [1820] */ - (xdc_Char)0x3a, /* [1821] */ - (xdc_Char)0x20, /* [1822] */ - (xdc_Char)0x43, /* [1823] */ - (xdc_Char)0x61, /* [1824] */ - (xdc_Char)0x6e, /* [1825] */ - (xdc_Char)0x6e, /* [1826] */ - (xdc_Char)0x6f, /* [1827] */ - (xdc_Char)0x74, /* [1828] */ - (xdc_Char)0x20, /* [1829] */ - (xdc_Char)0x63, /* [1830] */ - (xdc_Char)0x72, /* [1831] */ - (xdc_Char)0x65, /* [1832] */ - (xdc_Char)0x61, /* [1833] */ - (xdc_Char)0x74, /* [1834] */ - (xdc_Char)0x65, /* [1835] */ - (xdc_Char)0x20, /* [1836] */ - (xdc_Char)0x61, /* [1837] */ - (xdc_Char)0x20, /* [1838] */ - (xdc_Char)0x74, /* [1839] */ - (xdc_Char)0x61, /* [1840] */ - (xdc_Char)0x73, /* [1841] */ - (xdc_Char)0x6b, /* [1842] */ - (xdc_Char)0x20, /* [1843] */ - (xdc_Char)0x77, /* [1844] */ - (xdc_Char)0x68, /* [1845] */ - (xdc_Char)0x65, /* [1846] */ - (xdc_Char)0x6e, /* [1847] */ - (xdc_Char)0x20, /* [1848] */ - (xdc_Char)0x74, /* [1849] */ - (xdc_Char)0x61, /* [1850] */ - (xdc_Char)0x73, /* [1851] */ - (xdc_Char)0x6b, /* [1852] */ - (xdc_Char)0x69, /* [1853] */ - (xdc_Char)0x6e, /* [1854] */ - (xdc_Char)0x67, /* [1855] */ - (xdc_Char)0x20, /* [1856] */ - (xdc_Char)0x69, /* [1857] */ - (xdc_Char)0x73, /* [1858] */ - (xdc_Char)0x20, /* [1859] */ - (xdc_Char)0x64, /* [1860] */ - (xdc_Char)0x69, /* [1861] */ - (xdc_Char)0x73, /* [1862] */ - (xdc_Char)0x61, /* [1863] */ - (xdc_Char)0x62, /* [1864] */ - (xdc_Char)0x6c, /* [1865] */ - (xdc_Char)0x65, /* [1866] */ - (xdc_Char)0x64, /* [1867] */ - (xdc_Char)0x2e, /* [1868] */ - (xdc_Char)0x0, /* [1869] */ - (xdc_Char)0x41, /* [1870] */ - (xdc_Char)0x5f, /* [1871] */ - (xdc_Char)0x62, /* [1872] */ - (xdc_Char)0x61, /* [1873] */ - (xdc_Char)0x64, /* [1874] */ - (xdc_Char)0x50, /* [1875] */ - (xdc_Char)0x72, /* [1876] */ - (xdc_Char)0x69, /* [1877] */ - (xdc_Char)0x6f, /* [1878] */ - (xdc_Char)0x72, /* [1879] */ - (xdc_Char)0x69, /* [1880] */ - (xdc_Char)0x74, /* [1881] */ - (xdc_Char)0x79, /* [1882] */ - (xdc_Char)0x3a, /* [1883] */ - (xdc_Char)0x20, /* [1884] */ - (xdc_Char)0x41, /* [1885] */ - (xdc_Char)0x6e, /* [1886] */ - (xdc_Char)0x20, /* [1887] */ - (xdc_Char)0x69, /* [1888] */ - (xdc_Char)0x6e, /* [1889] */ - (xdc_Char)0x76, /* [1890] */ - (xdc_Char)0x61, /* [1891] */ - (xdc_Char)0x6c, /* [1892] */ - (xdc_Char)0x69, /* [1893] */ - (xdc_Char)0x64, /* [1894] */ - (xdc_Char)0x20, /* [1895] */ - (xdc_Char)0x74, /* [1896] */ - (xdc_Char)0x61, /* [1897] */ - (xdc_Char)0x73, /* [1898] */ - (xdc_Char)0x6b, /* [1899] */ - (xdc_Char)0x20, /* [1900] */ - (xdc_Char)0x70, /* [1901] */ - (xdc_Char)0x72, /* [1902] */ - (xdc_Char)0x69, /* [1903] */ - (xdc_Char)0x6f, /* [1904] */ - (xdc_Char)0x72, /* [1905] */ - (xdc_Char)0x69, /* [1906] */ - (xdc_Char)0x74, /* [1907] */ - (xdc_Char)0x79, /* [1908] */ - (xdc_Char)0x20, /* [1909] */ - (xdc_Char)0x77, /* [1910] */ - (xdc_Char)0x61, /* [1911] */ - (xdc_Char)0x73, /* [1912] */ - (xdc_Char)0x20, /* [1913] */ - (xdc_Char)0x75, /* [1914] */ - (xdc_Char)0x73, /* [1915] */ - (xdc_Char)0x65, /* [1916] */ - (xdc_Char)0x64, /* [1917] */ - (xdc_Char)0x2e, /* [1918] */ - (xdc_Char)0x0, /* [1919] */ - (xdc_Char)0x41, /* [1920] */ - (xdc_Char)0x5f, /* [1921] */ - (xdc_Char)0x62, /* [1922] */ - (xdc_Char)0x61, /* [1923] */ - (xdc_Char)0x64, /* [1924] */ - (xdc_Char)0x54, /* [1925] */ - (xdc_Char)0x69, /* [1926] */ - (xdc_Char)0x6d, /* [1927] */ - (xdc_Char)0x65, /* [1928] */ - (xdc_Char)0x6f, /* [1929] */ - (xdc_Char)0x75, /* [1930] */ - (xdc_Char)0x74, /* [1931] */ - (xdc_Char)0x3a, /* [1932] */ - (xdc_Char)0x20, /* [1933] */ - (xdc_Char)0x43, /* [1934] */ - (xdc_Char)0x61, /* [1935] */ - (xdc_Char)0x6e, /* [1936] */ - (xdc_Char)0x27, /* [1937] */ - (xdc_Char)0x74, /* [1938] */ - (xdc_Char)0x20, /* [1939] */ - (xdc_Char)0x73, /* [1940] */ - (xdc_Char)0x6c, /* [1941] */ - (xdc_Char)0x65, /* [1942] */ - (xdc_Char)0x65, /* [1943] */ - (xdc_Char)0x70, /* [1944] */ - (xdc_Char)0x20, /* [1945] */ - (xdc_Char)0x46, /* [1946] */ - (xdc_Char)0x4f, /* [1947] */ - (xdc_Char)0x52, /* [1948] */ - (xdc_Char)0x45, /* [1949] */ - (xdc_Char)0x56, /* [1950] */ - (xdc_Char)0x45, /* [1951] */ - (xdc_Char)0x52, /* [1952] */ - (xdc_Char)0x2e, /* [1953] */ - (xdc_Char)0x0, /* [1954] */ - (xdc_Char)0x41, /* [1955] */ - (xdc_Char)0x5f, /* [1956] */ - (xdc_Char)0x62, /* [1957] */ - (xdc_Char)0x61, /* [1958] */ - (xdc_Char)0x64, /* [1959] */ - (xdc_Char)0x41, /* [1960] */ - (xdc_Char)0x66, /* [1961] */ - (xdc_Char)0x66, /* [1962] */ - (xdc_Char)0x69, /* [1963] */ - (xdc_Char)0x6e, /* [1964] */ - (xdc_Char)0x69, /* [1965] */ - (xdc_Char)0x74, /* [1966] */ - (xdc_Char)0x79, /* [1967] */ - (xdc_Char)0x3a, /* [1968] */ - (xdc_Char)0x20, /* [1969] */ - (xdc_Char)0x49, /* [1970] */ - (xdc_Char)0x6e, /* [1971] */ - (xdc_Char)0x76, /* [1972] */ - (xdc_Char)0x61, /* [1973] */ - (xdc_Char)0x6c, /* [1974] */ - (xdc_Char)0x69, /* [1975] */ - (xdc_Char)0x64, /* [1976] */ - (xdc_Char)0x20, /* [1977] */ - (xdc_Char)0x61, /* [1978] */ - (xdc_Char)0x66, /* [1979] */ - (xdc_Char)0x66, /* [1980] */ - (xdc_Char)0x69, /* [1981] */ - (xdc_Char)0x6e, /* [1982] */ - (xdc_Char)0x69, /* [1983] */ - (xdc_Char)0x74, /* [1984] */ - (xdc_Char)0x79, /* [1985] */ - (xdc_Char)0x2e, /* [1986] */ - (xdc_Char)0x0, /* [1987] */ - (xdc_Char)0x41, /* [1988] */ - (xdc_Char)0x5f, /* [1989] */ - (xdc_Char)0x73, /* [1990] */ - (xdc_Char)0x6c, /* [1991] */ - (xdc_Char)0x65, /* [1992] */ - (xdc_Char)0x65, /* [1993] */ - (xdc_Char)0x70, /* [1994] */ - (xdc_Char)0x54, /* [1995] */ - (xdc_Char)0x61, /* [1996] */ - (xdc_Char)0x73, /* [1997] */ - (xdc_Char)0x6b, /* [1998] */ - (xdc_Char)0x44, /* [1999] */ - (xdc_Char)0x69, /* [2000] */ - (xdc_Char)0x73, /* [2001] */ - (xdc_Char)0x61, /* [2002] */ - (xdc_Char)0x62, /* [2003] */ - (xdc_Char)0x6c, /* [2004] */ - (xdc_Char)0x65, /* [2005] */ - (xdc_Char)0x64, /* [2006] */ - (xdc_Char)0x3a, /* [2007] */ - (xdc_Char)0x20, /* [2008] */ - (xdc_Char)0x43, /* [2009] */ - (xdc_Char)0x61, /* [2010] */ - (xdc_Char)0x6e, /* [2011] */ - (xdc_Char)0x6e, /* [2012] */ - (xdc_Char)0x6f, /* [2013] */ - (xdc_Char)0x74, /* [2014] */ - (xdc_Char)0x20, /* [2015] */ - (xdc_Char)0x63, /* [2016] */ - (xdc_Char)0x61, /* [2017] */ - (xdc_Char)0x6c, /* [2018] */ - (xdc_Char)0x6c, /* [2019] */ - (xdc_Char)0x20, /* [2020] */ - (xdc_Char)0x54, /* [2021] */ - (xdc_Char)0x61, /* [2022] */ - (xdc_Char)0x73, /* [2023] */ - (xdc_Char)0x6b, /* [2024] */ - (xdc_Char)0x5f, /* [2025] */ - (xdc_Char)0x73, /* [2026] */ - (xdc_Char)0x6c, /* [2027] */ - (xdc_Char)0x65, /* [2028] */ - (xdc_Char)0x65, /* [2029] */ - (xdc_Char)0x70, /* [2030] */ - (xdc_Char)0x28, /* [2031] */ - (xdc_Char)0x29, /* [2032] */ - (xdc_Char)0x20, /* [2033] */ - (xdc_Char)0x77, /* [2034] */ - (xdc_Char)0x68, /* [2035] */ - (xdc_Char)0x69, /* [2036] */ - (xdc_Char)0x6c, /* [2037] */ - (xdc_Char)0x65, /* [2038] */ - (xdc_Char)0x20, /* [2039] */ - (xdc_Char)0x74, /* [2040] */ - (xdc_Char)0x68, /* [2041] */ - (xdc_Char)0x65, /* [2042] */ - (xdc_Char)0x20, /* [2043] */ - (xdc_Char)0x54, /* [2044] */ - (xdc_Char)0x61, /* [2045] */ - (xdc_Char)0x73, /* [2046] */ - (xdc_Char)0x6b, /* [2047] */ - (xdc_Char)0x20, /* [2048] */ - (xdc_Char)0x73, /* [2049] */ - (xdc_Char)0x63, /* [2050] */ - (xdc_Char)0x68, /* [2051] */ - (xdc_Char)0x65, /* [2052] */ - (xdc_Char)0x64, /* [2053] */ - (xdc_Char)0x75, /* [2054] */ - (xdc_Char)0x6c, /* [2055] */ - (xdc_Char)0x65, /* [2056] */ - (xdc_Char)0x72, /* [2057] */ - (xdc_Char)0x20, /* [2058] */ - (xdc_Char)0x69, /* [2059] */ - (xdc_Char)0x73, /* [2060] */ - (xdc_Char)0x20, /* [2061] */ - (xdc_Char)0x64, /* [2062] */ - (xdc_Char)0x69, /* [2063] */ - (xdc_Char)0x73, /* [2064] */ - (xdc_Char)0x61, /* [2065] */ - (xdc_Char)0x62, /* [2066] */ - (xdc_Char)0x6c, /* [2067] */ - (xdc_Char)0x65, /* [2068] */ - (xdc_Char)0x64, /* [2069] */ - (xdc_Char)0x2e, /* [2070] */ - (xdc_Char)0x0, /* [2071] */ - (xdc_Char)0x41, /* [2072] */ - (xdc_Char)0x5f, /* [2073] */ - (xdc_Char)0x69, /* [2074] */ - (xdc_Char)0x6e, /* [2075] */ - (xdc_Char)0x76, /* [2076] */ - (xdc_Char)0x61, /* [2077] */ - (xdc_Char)0x6c, /* [2078] */ - (xdc_Char)0x69, /* [2079] */ - (xdc_Char)0x64, /* [2080] */ - (xdc_Char)0x43, /* [2081] */ - (xdc_Char)0x6f, /* [2082] */ - (xdc_Char)0x72, /* [2083] */ - (xdc_Char)0x65, /* [2084] */ - (xdc_Char)0x49, /* [2085] */ - (xdc_Char)0x64, /* [2086] */ - (xdc_Char)0x3a, /* [2087] */ - (xdc_Char)0x20, /* [2088] */ - (xdc_Char)0x43, /* [2089] */ - (xdc_Char)0x61, /* [2090] */ - (xdc_Char)0x6e, /* [2091] */ - (xdc_Char)0x6e, /* [2092] */ - (xdc_Char)0x6f, /* [2093] */ - (xdc_Char)0x74, /* [2094] */ - (xdc_Char)0x20, /* [2095] */ - (xdc_Char)0x70, /* [2096] */ - (xdc_Char)0x61, /* [2097] */ - (xdc_Char)0x73, /* [2098] */ - (xdc_Char)0x73, /* [2099] */ - (xdc_Char)0x20, /* [2100] */ - (xdc_Char)0x61, /* [2101] */ - (xdc_Char)0x20, /* [2102] */ - (xdc_Char)0x6e, /* [2103] */ - (xdc_Char)0x6f, /* [2104] */ - (xdc_Char)0x6e, /* [2105] */ - (xdc_Char)0x2d, /* [2106] */ - (xdc_Char)0x7a, /* [2107] */ - (xdc_Char)0x65, /* [2108] */ - (xdc_Char)0x72, /* [2109] */ - (xdc_Char)0x6f, /* [2110] */ - (xdc_Char)0x20, /* [2111] */ - (xdc_Char)0x43, /* [2112] */ - (xdc_Char)0x6f, /* [2113] */ - (xdc_Char)0x72, /* [2114] */ - (xdc_Char)0x65, /* [2115] */ - (xdc_Char)0x49, /* [2116] */ - (xdc_Char)0x64, /* [2117] */ - (xdc_Char)0x20, /* [2118] */ - (xdc_Char)0x69, /* [2119] */ - (xdc_Char)0x6e, /* [2120] */ - (xdc_Char)0x20, /* [2121] */ - (xdc_Char)0x61, /* [2122] */ - (xdc_Char)0x20, /* [2123] */ - (xdc_Char)0x6e, /* [2124] */ - (xdc_Char)0x6f, /* [2125] */ - (xdc_Char)0x6e, /* [2126] */ - (xdc_Char)0x2d, /* [2127] */ - (xdc_Char)0x53, /* [2128] */ - (xdc_Char)0x4d, /* [2129] */ - (xdc_Char)0x50, /* [2130] */ - (xdc_Char)0x20, /* [2131] */ - (xdc_Char)0x61, /* [2132] */ - (xdc_Char)0x70, /* [2133] */ - (xdc_Char)0x70, /* [2134] */ - (xdc_Char)0x6c, /* [2135] */ - (xdc_Char)0x69, /* [2136] */ - (xdc_Char)0x63, /* [2137] */ - (xdc_Char)0x61, /* [2138] */ - (xdc_Char)0x74, /* [2139] */ - (xdc_Char)0x69, /* [2140] */ - (xdc_Char)0x6f, /* [2141] */ - (xdc_Char)0x6e, /* [2142] */ - (xdc_Char)0x2e, /* [2143] */ - (xdc_Char)0x0, /* [2144] */ - (xdc_Char)0x41, /* [2145] */ - (xdc_Char)0x5f, /* [2146] */ - (xdc_Char)0x7a, /* [2147] */ - (xdc_Char)0x65, /* [2148] */ - (xdc_Char)0x72, /* [2149] */ - (xdc_Char)0x6f, /* [2150] */ - (xdc_Char)0x54, /* [2151] */ - (xdc_Char)0x69, /* [2152] */ - (xdc_Char)0x6d, /* [2153] */ - (xdc_Char)0x65, /* [2154] */ - (xdc_Char)0x6f, /* [2155] */ - (xdc_Char)0x75, /* [2156] */ - (xdc_Char)0x74, /* [2157] */ - (xdc_Char)0x3a, /* [2158] */ - (xdc_Char)0x20, /* [2159] */ - (xdc_Char)0x54, /* [2160] */ - (xdc_Char)0x69, /* [2161] */ - (xdc_Char)0x6d, /* [2162] */ - (xdc_Char)0x65, /* [2163] */ - (xdc_Char)0x6f, /* [2164] */ - (xdc_Char)0x75, /* [2165] */ - (xdc_Char)0x74, /* [2166] */ - (xdc_Char)0x20, /* [2167] */ - (xdc_Char)0x76, /* [2168] */ - (xdc_Char)0x61, /* [2169] */ - (xdc_Char)0x6c, /* [2170] */ - (xdc_Char)0x75, /* [2171] */ - (xdc_Char)0x65, /* [2172] */ - (xdc_Char)0x20, /* [2173] */ - (xdc_Char)0x61, /* [2174] */ - (xdc_Char)0x6e, /* [2175] */ - (xdc_Char)0x6e, /* [2176] */ - (xdc_Char)0x6f, /* [2177] */ - (xdc_Char)0x74, /* [2178] */ - (xdc_Char)0x20, /* [2179] */ - (xdc_Char)0x62, /* [2180] */ - (xdc_Char)0x65, /* [2181] */ - (xdc_Char)0x20, /* [2182] */ - (xdc_Char)0x7a, /* [2183] */ - (xdc_Char)0x65, /* [2184] */ - (xdc_Char)0x72, /* [2185] */ - (xdc_Char)0x6f, /* [2186] */ - (xdc_Char)0x0, /* [2187] */ - (xdc_Char)0x41, /* [2188] */ - (xdc_Char)0x5f, /* [2189] */ - (xdc_Char)0x69, /* [2190] */ - (xdc_Char)0x6e, /* [2191] */ - (xdc_Char)0x76, /* [2192] */ - (xdc_Char)0x61, /* [2193] */ - (xdc_Char)0x6c, /* [2194] */ - (xdc_Char)0x69, /* [2195] */ - (xdc_Char)0x64, /* [2196] */ - (xdc_Char)0x4b, /* [2197] */ - (xdc_Char)0x65, /* [2198] */ - (xdc_Char)0x79, /* [2199] */ - (xdc_Char)0x3a, /* [2200] */ - (xdc_Char)0x20, /* [2201] */ - (xdc_Char)0x74, /* [2202] */ - (xdc_Char)0x68, /* [2203] */ - (xdc_Char)0x65, /* [2204] */ - (xdc_Char)0x20, /* [2205] */ - (xdc_Char)0x6b, /* [2206] */ - (xdc_Char)0x65, /* [2207] */ - (xdc_Char)0x79, /* [2208] */ - (xdc_Char)0x20, /* [2209] */ - (xdc_Char)0x6d, /* [2210] */ - (xdc_Char)0x75, /* [2211] */ - (xdc_Char)0x73, /* [2212] */ - (xdc_Char)0x74, /* [2213] */ - (xdc_Char)0x20, /* [2214] */ - (xdc_Char)0x62, /* [2215] */ - (xdc_Char)0x65, /* [2216] */ - (xdc_Char)0x20, /* [2217] */ - (xdc_Char)0x73, /* [2218] */ - (xdc_Char)0x65, /* [2219] */ - (xdc_Char)0x74, /* [2220] */ - (xdc_Char)0x20, /* [2221] */ - (xdc_Char)0x74, /* [2222] */ - (xdc_Char)0x6f, /* [2223] */ - (xdc_Char)0x20, /* [2224] */ - (xdc_Char)0x61, /* [2225] */ - (xdc_Char)0x20, /* [2226] */ - (xdc_Char)0x6e, /* [2227] */ - (xdc_Char)0x6f, /* [2228] */ - (xdc_Char)0x6e, /* [2229] */ - (xdc_Char)0x2d, /* [2230] */ - (xdc_Char)0x64, /* [2231] */ - (xdc_Char)0x65, /* [2232] */ - (xdc_Char)0x66, /* [2233] */ - (xdc_Char)0x61, /* [2234] */ - (xdc_Char)0x75, /* [2235] */ - (xdc_Char)0x6c, /* [2236] */ - (xdc_Char)0x74, /* [2237] */ - (xdc_Char)0x20, /* [2238] */ - (xdc_Char)0x76, /* [2239] */ - (xdc_Char)0x61, /* [2240] */ - (xdc_Char)0x6c, /* [2241] */ - (xdc_Char)0x75, /* [2242] */ - (xdc_Char)0x65, /* [2243] */ - (xdc_Char)0x0, /* [2244] */ - (xdc_Char)0x41, /* [2245] */ - (xdc_Char)0x5f, /* [2246] */ - (xdc_Char)0x62, /* [2247] */ - (xdc_Char)0x61, /* [2248] */ - (xdc_Char)0x64, /* [2249] */ - (xdc_Char)0x4d, /* [2250] */ - (xdc_Char)0x6f, /* [2251] */ - (xdc_Char)0x64, /* [2252] */ - (xdc_Char)0x65, /* [2253] */ - (xdc_Char)0x6c, /* [2254] */ - (xdc_Char)0x3a, /* [2255] */ - (xdc_Char)0x20, /* [2256] */ - (xdc_Char)0x69, /* [2257] */ - (xdc_Char)0x6e, /* [2258] */ - (xdc_Char)0x76, /* [2259] */ - (xdc_Char)0x61, /* [2260] */ - (xdc_Char)0x6c, /* [2261] */ - (xdc_Char)0x69, /* [2262] */ - (xdc_Char)0x64, /* [2263] */ - (xdc_Char)0x20, /* [2264] */ - (xdc_Char)0x75, /* [2265] */ - (xdc_Char)0x73, /* [2266] */ - (xdc_Char)0x65, /* [2267] */ - (xdc_Char)0x20, /* [2268] */ - (xdc_Char)0x6f, /* [2269] */ - (xdc_Char)0x66, /* [2270] */ - (xdc_Char)0x20, /* [2271] */ - (xdc_Char)0x41, /* [2272] */ - (xdc_Char)0x50, /* [2273] */ - (xdc_Char)0x49, /* [2274] */ - (xdc_Char)0x20, /* [2275] */ - (xdc_Char)0x66, /* [2276] */ - (xdc_Char)0x6f, /* [2277] */ - (xdc_Char)0x72, /* [2278] */ - (xdc_Char)0x20, /* [2279] */ - (xdc_Char)0x63, /* [2280] */ - (xdc_Char)0x75, /* [2281] */ - (xdc_Char)0x72, /* [2282] */ - (xdc_Char)0x72, /* [2283] */ - (xdc_Char)0x65, /* [2284] */ - (xdc_Char)0x6e, /* [2285] */ - (xdc_Char)0x74, /* [2286] */ - (xdc_Char)0x20, /* [2287] */ - (xdc_Char)0x49, /* [2288] */ - (xdc_Char)0x2f, /* [2289] */ - (xdc_Char)0x4f, /* [2290] */ - (xdc_Char)0x20, /* [2291] */ - (xdc_Char)0x6d, /* [2292] */ - (xdc_Char)0x6f, /* [2293] */ - (xdc_Char)0x64, /* [2294] */ - (xdc_Char)0x65, /* [2295] */ - (xdc_Char)0x6c, /* [2296] */ - (xdc_Char)0x0, /* [2297] */ - (xdc_Char)0x41, /* [2298] */ - (xdc_Char)0x5f, /* [2299] */ - (xdc_Char)0x62, /* [2300] */ - (xdc_Char)0x61, /* [2301] */ - (xdc_Char)0x64, /* [2302] */ - (xdc_Char)0x43, /* [2303] */ - (xdc_Char)0x6f, /* [2304] */ - (xdc_Char)0x6e, /* [2305] */ - (xdc_Char)0x74, /* [2306] */ - (xdc_Char)0x65, /* [2307] */ - (xdc_Char)0x78, /* [2308] */ - (xdc_Char)0x74, /* [2309] */ - (xdc_Char)0x3a, /* [2310] */ - (xdc_Char)0x20, /* [2311] */ - (xdc_Char)0x62, /* [2312] */ - (xdc_Char)0x61, /* [2313] */ - (xdc_Char)0x64, /* [2314] */ - (xdc_Char)0x20, /* [2315] */ - (xdc_Char)0x63, /* [2316] */ - (xdc_Char)0x61, /* [2317] */ - (xdc_Char)0x6c, /* [2318] */ - (xdc_Char)0x6c, /* [2319] */ - (xdc_Char)0x69, /* [2320] */ - (xdc_Char)0x6e, /* [2321] */ - (xdc_Char)0x67, /* [2322] */ - (xdc_Char)0x20, /* [2323] */ - (xdc_Char)0x63, /* [2324] */ - (xdc_Char)0x6f, /* [2325] */ - (xdc_Char)0x6e, /* [2326] */ - (xdc_Char)0x74, /* [2327] */ - (xdc_Char)0x65, /* [2328] */ - (xdc_Char)0x78, /* [2329] */ - (xdc_Char)0x74, /* [2330] */ - (xdc_Char)0x2e, /* [2331] */ - (xdc_Char)0x20, /* [2332] */ - (xdc_Char)0x4d, /* [2333] */ - (xdc_Char)0x61, /* [2334] */ - (xdc_Char)0x79, /* [2335] */ - (xdc_Char)0x20, /* [2336] */ - (xdc_Char)0x6e, /* [2337] */ - (xdc_Char)0x6f, /* [2338] */ - (xdc_Char)0x74, /* [2339] */ - (xdc_Char)0x20, /* [2340] */ - (xdc_Char)0x62, /* [2341] */ - (xdc_Char)0x65, /* [2342] */ - (xdc_Char)0x20, /* [2343] */ - (xdc_Char)0x65, /* [2344] */ - (xdc_Char)0x6e, /* [2345] */ - (xdc_Char)0x74, /* [2346] */ - (xdc_Char)0x65, /* [2347] */ - (xdc_Char)0x72, /* [2348] */ - (xdc_Char)0x65, /* [2349] */ - (xdc_Char)0x64, /* [2350] */ - (xdc_Char)0x20, /* [2351] */ - (xdc_Char)0x66, /* [2352] */ - (xdc_Char)0x72, /* [2353] */ - (xdc_Char)0x6f, /* [2354] */ - (xdc_Char)0x6d, /* [2355] */ - (xdc_Char)0x20, /* [2356] */ - (xdc_Char)0x61, /* [2357] */ - (xdc_Char)0x20, /* [2358] */ - (xdc_Char)0x68, /* [2359] */ - (xdc_Char)0x61, /* [2360] */ - (xdc_Char)0x72, /* [2361] */ - (xdc_Char)0x64, /* [2362] */ - (xdc_Char)0x77, /* [2363] */ - (xdc_Char)0x61, /* [2364] */ - (xdc_Char)0x72, /* [2365] */ - (xdc_Char)0x65, /* [2366] */ - (xdc_Char)0x20, /* [2367] */ - (xdc_Char)0x69, /* [2368] */ - (xdc_Char)0x6e, /* [2369] */ - (xdc_Char)0x74, /* [2370] */ - (xdc_Char)0x65, /* [2371] */ - (xdc_Char)0x72, /* [2372] */ - (xdc_Char)0x72, /* [2373] */ - (xdc_Char)0x75, /* [2374] */ - (xdc_Char)0x70, /* [2375] */ - (xdc_Char)0x74, /* [2376] */ - (xdc_Char)0x20, /* [2377] */ - (xdc_Char)0x74, /* [2378] */ - (xdc_Char)0x68, /* [2379] */ - (xdc_Char)0x72, /* [2380] */ - (xdc_Char)0x65, /* [2381] */ - (xdc_Char)0x61, /* [2382] */ - (xdc_Char)0x64, /* [2383] */ - (xdc_Char)0x2e, /* [2384] */ - (xdc_Char)0x0, /* [2385] */ - (xdc_Char)0x41, /* [2386] */ - (xdc_Char)0x5f, /* [2387] */ - (xdc_Char)0x62, /* [2388] */ - (xdc_Char)0x61, /* [2389] */ - (xdc_Char)0x64, /* [2390] */ - (xdc_Char)0x43, /* [2391] */ - (xdc_Char)0x6f, /* [2392] */ - (xdc_Char)0x6e, /* [2393] */ - (xdc_Char)0x74, /* [2394] */ - (xdc_Char)0x65, /* [2395] */ - (xdc_Char)0x78, /* [2396] */ - (xdc_Char)0x74, /* [2397] */ - (xdc_Char)0x3a, /* [2398] */ - (xdc_Char)0x20, /* [2399] */ - (xdc_Char)0x62, /* [2400] */ - (xdc_Char)0x61, /* [2401] */ - (xdc_Char)0x64, /* [2402] */ - (xdc_Char)0x20, /* [2403] */ - (xdc_Char)0x63, /* [2404] */ - (xdc_Char)0x61, /* [2405] */ - (xdc_Char)0x6c, /* [2406] */ - (xdc_Char)0x6c, /* [2407] */ - (xdc_Char)0x69, /* [2408] */ - (xdc_Char)0x6e, /* [2409] */ - (xdc_Char)0x67, /* [2410] */ - (xdc_Char)0x20, /* [2411] */ - (xdc_Char)0x63, /* [2412] */ - (xdc_Char)0x6f, /* [2413] */ - (xdc_Char)0x6e, /* [2414] */ - (xdc_Char)0x74, /* [2415] */ - (xdc_Char)0x65, /* [2416] */ - (xdc_Char)0x78, /* [2417] */ - (xdc_Char)0x74, /* [2418] */ - (xdc_Char)0x2e, /* [2419] */ - (xdc_Char)0x20, /* [2420] */ - (xdc_Char)0x4d, /* [2421] */ - (xdc_Char)0x61, /* [2422] */ - (xdc_Char)0x79, /* [2423] */ - (xdc_Char)0x20, /* [2424] */ - (xdc_Char)0x6e, /* [2425] */ - (xdc_Char)0x6f, /* [2426] */ - (xdc_Char)0x74, /* [2427] */ - (xdc_Char)0x20, /* [2428] */ - (xdc_Char)0x62, /* [2429] */ - (xdc_Char)0x65, /* [2430] */ - (xdc_Char)0x20, /* [2431] */ - (xdc_Char)0x65, /* [2432] */ - (xdc_Char)0x6e, /* [2433] */ - (xdc_Char)0x74, /* [2434] */ - (xdc_Char)0x65, /* [2435] */ - (xdc_Char)0x72, /* [2436] */ - (xdc_Char)0x65, /* [2437] */ - (xdc_Char)0x64, /* [2438] */ - (xdc_Char)0x20, /* [2439] */ - (xdc_Char)0x66, /* [2440] */ - (xdc_Char)0x72, /* [2441] */ - (xdc_Char)0x6f, /* [2442] */ - (xdc_Char)0x6d, /* [2443] */ - (xdc_Char)0x20, /* [2444] */ - (xdc_Char)0x61, /* [2445] */ - (xdc_Char)0x20, /* [2446] */ - (xdc_Char)0x73, /* [2447] */ - (xdc_Char)0x6f, /* [2448] */ - (xdc_Char)0x66, /* [2449] */ - (xdc_Char)0x74, /* [2450] */ - (xdc_Char)0x77, /* [2451] */ - (xdc_Char)0x61, /* [2452] */ - (xdc_Char)0x72, /* [2453] */ - (xdc_Char)0x65, /* [2454] */ - (xdc_Char)0x20, /* [2455] */ - (xdc_Char)0x6f, /* [2456] */ - (xdc_Char)0x72, /* [2457] */ - (xdc_Char)0x20, /* [2458] */ - (xdc_Char)0x68, /* [2459] */ - (xdc_Char)0x61, /* [2460] */ - (xdc_Char)0x72, /* [2461] */ - (xdc_Char)0x64, /* [2462] */ - (xdc_Char)0x77, /* [2463] */ - (xdc_Char)0x61, /* [2464] */ - (xdc_Char)0x72, /* [2465] */ - (xdc_Char)0x65, /* [2466] */ - (xdc_Char)0x20, /* [2467] */ - (xdc_Char)0x69, /* [2468] */ - (xdc_Char)0x6e, /* [2469] */ - (xdc_Char)0x74, /* [2470] */ - (xdc_Char)0x65, /* [2471] */ - (xdc_Char)0x72, /* [2472] */ - (xdc_Char)0x72, /* [2473] */ - (xdc_Char)0x75, /* [2474] */ - (xdc_Char)0x70, /* [2475] */ - (xdc_Char)0x74, /* [2476] */ - (xdc_Char)0x20, /* [2477] */ - (xdc_Char)0x74, /* [2478] */ - (xdc_Char)0x68, /* [2479] */ - (xdc_Char)0x72, /* [2480] */ - (xdc_Char)0x65, /* [2481] */ - (xdc_Char)0x61, /* [2482] */ - (xdc_Char)0x64, /* [2483] */ - (xdc_Char)0x2e, /* [2484] */ - (xdc_Char)0x0, /* [2485] */ - (xdc_Char)0x41, /* [2486] */ - (xdc_Char)0x5f, /* [2487] */ - (xdc_Char)0x62, /* [2488] */ - (xdc_Char)0x61, /* [2489] */ - (xdc_Char)0x64, /* [2490] */ - (xdc_Char)0x43, /* [2491] */ - (xdc_Char)0x6f, /* [2492] */ - (xdc_Char)0x6e, /* [2493] */ - (xdc_Char)0x74, /* [2494] */ - (xdc_Char)0x65, /* [2495] */ - (xdc_Char)0x78, /* [2496] */ - (xdc_Char)0x74, /* [2497] */ - (xdc_Char)0x3a, /* [2498] */ - (xdc_Char)0x20, /* [2499] */ - (xdc_Char)0x62, /* [2500] */ - (xdc_Char)0x61, /* [2501] */ - (xdc_Char)0x64, /* [2502] */ - (xdc_Char)0x20, /* [2503] */ - (xdc_Char)0x63, /* [2504] */ - (xdc_Char)0x61, /* [2505] */ - (xdc_Char)0x6c, /* [2506] */ - (xdc_Char)0x6c, /* [2507] */ - (xdc_Char)0x69, /* [2508] */ - (xdc_Char)0x6e, /* [2509] */ - (xdc_Char)0x67, /* [2510] */ - (xdc_Char)0x20, /* [2511] */ - (xdc_Char)0x63, /* [2512] */ - (xdc_Char)0x6f, /* [2513] */ - (xdc_Char)0x6e, /* [2514] */ - (xdc_Char)0x74, /* [2515] */ - (xdc_Char)0x65, /* [2516] */ - (xdc_Char)0x78, /* [2517] */ - (xdc_Char)0x74, /* [2518] */ - (xdc_Char)0x2e, /* [2519] */ - (xdc_Char)0x20, /* [2520] */ - (xdc_Char)0x53, /* [2521] */ - (xdc_Char)0x65, /* [2522] */ - (xdc_Char)0x65, /* [2523] */ - (xdc_Char)0x20, /* [2524] */ - (xdc_Char)0x47, /* [2525] */ - (xdc_Char)0x61, /* [2526] */ - (xdc_Char)0x74, /* [2527] */ - (xdc_Char)0x65, /* [2528] */ - (xdc_Char)0x4d, /* [2529] */ - (xdc_Char)0x75, /* [2530] */ - (xdc_Char)0x74, /* [2531] */ - (xdc_Char)0x65, /* [2532] */ - (xdc_Char)0x78, /* [2533] */ - (xdc_Char)0x50, /* [2534] */ - (xdc_Char)0x72, /* [2535] */ - (xdc_Char)0x69, /* [2536] */ - (xdc_Char)0x20, /* [2537] */ - (xdc_Char)0x41, /* [2538] */ - (xdc_Char)0x50, /* [2539] */ - (xdc_Char)0x49, /* [2540] */ - (xdc_Char)0x20, /* [2541] */ - (xdc_Char)0x64, /* [2542] */ - (xdc_Char)0x6f, /* [2543] */ - (xdc_Char)0x63, /* [2544] */ - (xdc_Char)0x20, /* [2545] */ - (xdc_Char)0x66, /* [2546] */ - (xdc_Char)0x6f, /* [2547] */ - (xdc_Char)0x72, /* [2548] */ - (xdc_Char)0x20, /* [2549] */ - (xdc_Char)0x64, /* [2550] */ - (xdc_Char)0x65, /* [2551] */ - (xdc_Char)0x74, /* [2552] */ - (xdc_Char)0x61, /* [2553] */ - (xdc_Char)0x69, /* [2554] */ - (xdc_Char)0x6c, /* [2555] */ - (xdc_Char)0x73, /* [2556] */ - (xdc_Char)0x2e, /* [2557] */ - (xdc_Char)0x0, /* [2558] */ - (xdc_Char)0x41, /* [2559] */ - (xdc_Char)0x5f, /* [2560] */ - (xdc_Char)0x65, /* [2561] */ - (xdc_Char)0x6e, /* [2562] */ - (xdc_Char)0x74, /* [2563] */ - (xdc_Char)0x65, /* [2564] */ - (xdc_Char)0x72, /* [2565] */ - (xdc_Char)0x54, /* [2566] */ - (xdc_Char)0x61, /* [2567] */ - (xdc_Char)0x73, /* [2568] */ - (xdc_Char)0x6b, /* [2569] */ - (xdc_Char)0x44, /* [2570] */ - (xdc_Char)0x69, /* [2571] */ - (xdc_Char)0x73, /* [2572] */ - (xdc_Char)0x61, /* [2573] */ - (xdc_Char)0x62, /* [2574] */ - (xdc_Char)0x6c, /* [2575] */ - (xdc_Char)0x65, /* [2576] */ - (xdc_Char)0x64, /* [2577] */ - (xdc_Char)0x3a, /* [2578] */ - (xdc_Char)0x20, /* [2579] */ - (xdc_Char)0x43, /* [2580] */ - (xdc_Char)0x61, /* [2581] */ - (xdc_Char)0x6e, /* [2582] */ - (xdc_Char)0x6e, /* [2583] */ - (xdc_Char)0x6f, /* [2584] */ - (xdc_Char)0x74, /* [2585] */ - (xdc_Char)0x20, /* [2586] */ - (xdc_Char)0x63, /* [2587] */ - (xdc_Char)0x61, /* [2588] */ - (xdc_Char)0x6c, /* [2589] */ - (xdc_Char)0x6c, /* [2590] */ - (xdc_Char)0x20, /* [2591] */ - (xdc_Char)0x47, /* [2592] */ - (xdc_Char)0x61, /* [2593] */ - (xdc_Char)0x74, /* [2594] */ - (xdc_Char)0x65, /* [2595] */ - (xdc_Char)0x4d, /* [2596] */ - (xdc_Char)0x75, /* [2597] */ - (xdc_Char)0x74, /* [2598] */ - (xdc_Char)0x65, /* [2599] */ - (xdc_Char)0x78, /* [2600] */ - (xdc_Char)0x50, /* [2601] */ - (xdc_Char)0x72, /* [2602] */ - (xdc_Char)0x69, /* [2603] */ - (xdc_Char)0x5f, /* [2604] */ - (xdc_Char)0x65, /* [2605] */ - (xdc_Char)0x6e, /* [2606] */ - (xdc_Char)0x74, /* [2607] */ - (xdc_Char)0x65, /* [2608] */ - (xdc_Char)0x72, /* [2609] */ - (xdc_Char)0x28, /* [2610] */ - (xdc_Char)0x29, /* [2611] */ - (xdc_Char)0x20, /* [2612] */ - (xdc_Char)0x77, /* [2613] */ - (xdc_Char)0x68, /* [2614] */ - (xdc_Char)0x69, /* [2615] */ - (xdc_Char)0x6c, /* [2616] */ - (xdc_Char)0x65, /* [2617] */ - (xdc_Char)0x20, /* [2618] */ - (xdc_Char)0x74, /* [2619] */ - (xdc_Char)0x68, /* [2620] */ - (xdc_Char)0x65, /* [2621] */ - (xdc_Char)0x20, /* [2622] */ - (xdc_Char)0x54, /* [2623] */ - (xdc_Char)0x61, /* [2624] */ - (xdc_Char)0x73, /* [2625] */ - (xdc_Char)0x6b, /* [2626] */ - (xdc_Char)0x20, /* [2627] */ - (xdc_Char)0x6f, /* [2628] */ - (xdc_Char)0x72, /* [2629] */ - (xdc_Char)0x20, /* [2630] */ - (xdc_Char)0x53, /* [2631] */ - (xdc_Char)0x77, /* [2632] */ - (xdc_Char)0x69, /* [2633] */ - (xdc_Char)0x20, /* [2634] */ - (xdc_Char)0x73, /* [2635] */ - (xdc_Char)0x63, /* [2636] */ - (xdc_Char)0x68, /* [2637] */ - (xdc_Char)0x65, /* [2638] */ - (xdc_Char)0x64, /* [2639] */ - (xdc_Char)0x75, /* [2640] */ - (xdc_Char)0x6c, /* [2641] */ - (xdc_Char)0x65, /* [2642] */ - (xdc_Char)0x72, /* [2643] */ - (xdc_Char)0x20, /* [2644] */ - (xdc_Char)0x69, /* [2645] */ - (xdc_Char)0x73, /* [2646] */ - (xdc_Char)0x20, /* [2647] */ - (xdc_Char)0x64, /* [2648] */ - (xdc_Char)0x69, /* [2649] */ - (xdc_Char)0x73, /* [2650] */ - (xdc_Char)0x61, /* [2651] */ - (xdc_Char)0x62, /* [2652] */ - (xdc_Char)0x6c, /* [2653] */ - (xdc_Char)0x65, /* [2654] */ - (xdc_Char)0x64, /* [2655] */ - (xdc_Char)0x2e, /* [2656] */ - (xdc_Char)0x0, /* [2657] */ - (xdc_Char)0x41, /* [2658] */ - (xdc_Char)0x5f, /* [2659] */ - (xdc_Char)0x62, /* [2660] */ - (xdc_Char)0x61, /* [2661] */ - (xdc_Char)0x64, /* [2662] */ - (xdc_Char)0x43, /* [2663] */ - (xdc_Char)0x6f, /* [2664] */ - (xdc_Char)0x6e, /* [2665] */ - (xdc_Char)0x74, /* [2666] */ - (xdc_Char)0x65, /* [2667] */ - (xdc_Char)0x78, /* [2668] */ - (xdc_Char)0x74, /* [2669] */ - (xdc_Char)0x3a, /* [2670] */ - (xdc_Char)0x20, /* [2671] */ - (xdc_Char)0x62, /* [2672] */ - (xdc_Char)0x61, /* [2673] */ - (xdc_Char)0x64, /* [2674] */ - (xdc_Char)0x20, /* [2675] */ - (xdc_Char)0x63, /* [2676] */ - (xdc_Char)0x61, /* [2677] */ - (xdc_Char)0x6c, /* [2678] */ - (xdc_Char)0x6c, /* [2679] */ - (xdc_Char)0x69, /* [2680] */ - (xdc_Char)0x6e, /* [2681] */ - (xdc_Char)0x67, /* [2682] */ - (xdc_Char)0x20, /* [2683] */ - (xdc_Char)0x63, /* [2684] */ - (xdc_Char)0x6f, /* [2685] */ - (xdc_Char)0x6e, /* [2686] */ - (xdc_Char)0x74, /* [2687] */ - (xdc_Char)0x65, /* [2688] */ - (xdc_Char)0x78, /* [2689] */ - (xdc_Char)0x74, /* [2690] */ - (xdc_Char)0x2e, /* [2691] */ - (xdc_Char)0x20, /* [2692] */ - (xdc_Char)0x53, /* [2693] */ - (xdc_Char)0x65, /* [2694] */ - (xdc_Char)0x65, /* [2695] */ - (xdc_Char)0x20, /* [2696] */ - (xdc_Char)0x47, /* [2697] */ - (xdc_Char)0x61, /* [2698] */ - (xdc_Char)0x74, /* [2699] */ - (xdc_Char)0x65, /* [2700] */ - (xdc_Char)0x4d, /* [2701] */ - (xdc_Char)0x75, /* [2702] */ - (xdc_Char)0x74, /* [2703] */ - (xdc_Char)0x65, /* [2704] */ - (xdc_Char)0x78, /* [2705] */ - (xdc_Char)0x20, /* [2706] */ - (xdc_Char)0x41, /* [2707] */ - (xdc_Char)0x50, /* [2708] */ - (xdc_Char)0x49, /* [2709] */ - (xdc_Char)0x20, /* [2710] */ - (xdc_Char)0x64, /* [2711] */ - (xdc_Char)0x6f, /* [2712] */ - (xdc_Char)0x63, /* [2713] */ - (xdc_Char)0x20, /* [2714] */ - (xdc_Char)0x66, /* [2715] */ - (xdc_Char)0x6f, /* [2716] */ - (xdc_Char)0x72, /* [2717] */ - (xdc_Char)0x20, /* [2718] */ - (xdc_Char)0x64, /* [2719] */ - (xdc_Char)0x65, /* [2720] */ - (xdc_Char)0x74, /* [2721] */ - (xdc_Char)0x61, /* [2722] */ - (xdc_Char)0x69, /* [2723] */ - (xdc_Char)0x6c, /* [2724] */ - (xdc_Char)0x73, /* [2725] */ - (xdc_Char)0x2e, /* [2726] */ - (xdc_Char)0x0, /* [2727] */ - (xdc_Char)0x41, /* [2728] */ - (xdc_Char)0x5f, /* [2729] */ - (xdc_Char)0x62, /* [2730] */ - (xdc_Char)0x61, /* [2731] */ - (xdc_Char)0x64, /* [2732] */ - (xdc_Char)0x43, /* [2733] */ - (xdc_Char)0x6f, /* [2734] */ - (xdc_Char)0x6e, /* [2735] */ - (xdc_Char)0x74, /* [2736] */ - (xdc_Char)0x65, /* [2737] */ - (xdc_Char)0x78, /* [2738] */ - (xdc_Char)0x74, /* [2739] */ - (xdc_Char)0x3a, /* [2740] */ - (xdc_Char)0x20, /* [2741] */ - (xdc_Char)0x62, /* [2742] */ - (xdc_Char)0x61, /* [2743] */ - (xdc_Char)0x64, /* [2744] */ - (xdc_Char)0x20, /* [2745] */ - (xdc_Char)0x63, /* [2746] */ - (xdc_Char)0x61, /* [2747] */ - (xdc_Char)0x6c, /* [2748] */ - (xdc_Char)0x6c, /* [2749] */ - (xdc_Char)0x69, /* [2750] */ - (xdc_Char)0x6e, /* [2751] */ - (xdc_Char)0x67, /* [2752] */ - (xdc_Char)0x20, /* [2753] */ - (xdc_Char)0x63, /* [2754] */ - (xdc_Char)0x6f, /* [2755] */ - (xdc_Char)0x6e, /* [2756] */ - (xdc_Char)0x74, /* [2757] */ - (xdc_Char)0x65, /* [2758] */ - (xdc_Char)0x78, /* [2759] */ - (xdc_Char)0x74, /* [2760] */ - (xdc_Char)0x2e, /* [2761] */ - (xdc_Char)0x20, /* [2762] */ - (xdc_Char)0x53, /* [2763] */ - (xdc_Char)0x65, /* [2764] */ - (xdc_Char)0x65, /* [2765] */ - (xdc_Char)0x20, /* [2766] */ - (xdc_Char)0x47, /* [2767] */ - (xdc_Char)0x61, /* [2768] */ - (xdc_Char)0x74, /* [2769] */ - (xdc_Char)0x65, /* [2770] */ - (xdc_Char)0x53, /* [2771] */ - (xdc_Char)0x70, /* [2772] */ - (xdc_Char)0x69, /* [2773] */ - (xdc_Char)0x6e, /* [2774] */ - (xdc_Char)0x6c, /* [2775] */ - (xdc_Char)0x6f, /* [2776] */ - (xdc_Char)0x63, /* [2777] */ - (xdc_Char)0x6b, /* [2778] */ - (xdc_Char)0x20, /* [2779] */ - (xdc_Char)0x41, /* [2780] */ - (xdc_Char)0x50, /* [2781] */ - (xdc_Char)0x49, /* [2782] */ - (xdc_Char)0x20, /* [2783] */ - (xdc_Char)0x64, /* [2784] */ - (xdc_Char)0x6f, /* [2785] */ - (xdc_Char)0x63, /* [2786] */ - (xdc_Char)0x20, /* [2787] */ - (xdc_Char)0x66, /* [2788] */ - (xdc_Char)0x6f, /* [2789] */ - (xdc_Char)0x72, /* [2790] */ - (xdc_Char)0x20, /* [2791] */ - (xdc_Char)0x64, /* [2792] */ - (xdc_Char)0x65, /* [2793] */ - (xdc_Char)0x74, /* [2794] */ - (xdc_Char)0x61, /* [2795] */ - (xdc_Char)0x69, /* [2796] */ - (xdc_Char)0x6c, /* [2797] */ - (xdc_Char)0x73, /* [2798] */ - (xdc_Char)0x2e, /* [2799] */ - (xdc_Char)0x0, /* [2800] */ - (xdc_Char)0x41, /* [2801] */ - (xdc_Char)0x5f, /* [2802] */ - (xdc_Char)0x69, /* [2803] */ - (xdc_Char)0x6e, /* [2804] */ - (xdc_Char)0x76, /* [2805] */ - (xdc_Char)0x61, /* [2806] */ - (xdc_Char)0x6c, /* [2807] */ - (xdc_Char)0x69, /* [2808] */ - (xdc_Char)0x64, /* [2809] */ - (xdc_Char)0x51, /* [2810] */ - (xdc_Char)0x75, /* [2811] */ - (xdc_Char)0x61, /* [2812] */ - (xdc_Char)0x6c, /* [2813] */ - (xdc_Char)0x69, /* [2814] */ - (xdc_Char)0x74, /* [2815] */ - (xdc_Char)0x79, /* [2816] */ - (xdc_Char)0x3a, /* [2817] */ - (xdc_Char)0x20, /* [2818] */ - (xdc_Char)0x53, /* [2819] */ - (xdc_Char)0x65, /* [2820] */ - (xdc_Char)0x65, /* [2821] */ - (xdc_Char)0x20, /* [2822] */ - (xdc_Char)0x47, /* [2823] */ - (xdc_Char)0x61, /* [2824] */ - (xdc_Char)0x74, /* [2825] */ - (xdc_Char)0x65, /* [2826] */ - (xdc_Char)0x53, /* [2827] */ - (xdc_Char)0x70, /* [2828] */ - (xdc_Char)0x69, /* [2829] */ - (xdc_Char)0x6e, /* [2830] */ - (xdc_Char)0x6c, /* [2831] */ - (xdc_Char)0x6f, /* [2832] */ - (xdc_Char)0x63, /* [2833] */ - (xdc_Char)0x6b, /* [2834] */ - (xdc_Char)0x20, /* [2835] */ - (xdc_Char)0x41, /* [2836] */ - (xdc_Char)0x50, /* [2837] */ - (xdc_Char)0x49, /* [2838] */ - (xdc_Char)0x20, /* [2839] */ - (xdc_Char)0x64, /* [2840] */ - (xdc_Char)0x6f, /* [2841] */ - (xdc_Char)0x63, /* [2842] */ - (xdc_Char)0x20, /* [2843] */ - (xdc_Char)0x66, /* [2844] */ - (xdc_Char)0x6f, /* [2845] */ - (xdc_Char)0x72, /* [2846] */ - (xdc_Char)0x20, /* [2847] */ - (xdc_Char)0x64, /* [2848] */ - (xdc_Char)0x65, /* [2849] */ - (xdc_Char)0x74, /* [2850] */ - (xdc_Char)0x61, /* [2851] */ - (xdc_Char)0x69, /* [2852] */ - (xdc_Char)0x6c, /* [2853] */ - (xdc_Char)0x73, /* [2854] */ - (xdc_Char)0x2e, /* [2855] */ - (xdc_Char)0x0, /* [2856] */ - (xdc_Char)0x62, /* [2857] */ - (xdc_Char)0x75, /* [2858] */ - (xdc_Char)0x66, /* [2859] */ - (xdc_Char)0x20, /* [2860] */ - (xdc_Char)0x70, /* [2861] */ - (xdc_Char)0x61, /* [2862] */ - (xdc_Char)0x72, /* [2863] */ - (xdc_Char)0x61, /* [2864] */ - (xdc_Char)0x6d, /* [2865] */ - (xdc_Char)0x65, /* [2866] */ - (xdc_Char)0x74, /* [2867] */ - (xdc_Char)0x65, /* [2868] */ - (xdc_Char)0x72, /* [2869] */ - (xdc_Char)0x20, /* [2870] */ - (xdc_Char)0x63, /* [2871] */ - (xdc_Char)0x61, /* [2872] */ - (xdc_Char)0x6e, /* [2873] */ - (xdc_Char)0x6e, /* [2874] */ - (xdc_Char)0x6f, /* [2875] */ - (xdc_Char)0x74, /* [2876] */ - (xdc_Char)0x20, /* [2877] */ - (xdc_Char)0x62, /* [2878] */ - (xdc_Char)0x65, /* [2879] */ - (xdc_Char)0x20, /* [2880] */ - (xdc_Char)0x6e, /* [2881] */ - (xdc_Char)0x75, /* [2882] */ - (xdc_Char)0x6c, /* [2883] */ - (xdc_Char)0x6c, /* [2884] */ - (xdc_Char)0x0, /* [2885] */ - (xdc_Char)0x62, /* [2886] */ - (xdc_Char)0x75, /* [2887] */ - (xdc_Char)0x66, /* [2888] */ - (xdc_Char)0x20, /* [2889] */ - (xdc_Char)0x6e, /* [2890] */ - (xdc_Char)0x6f, /* [2891] */ - (xdc_Char)0x74, /* [2892] */ - (xdc_Char)0x20, /* [2893] */ - (xdc_Char)0x70, /* [2894] */ - (xdc_Char)0x72, /* [2895] */ - (xdc_Char)0x6f, /* [2896] */ - (xdc_Char)0x70, /* [2897] */ - (xdc_Char)0x65, /* [2898] */ - (xdc_Char)0x72, /* [2899] */ - (xdc_Char)0x6c, /* [2900] */ - (xdc_Char)0x79, /* [2901] */ - (xdc_Char)0x20, /* [2902] */ - (xdc_Char)0x61, /* [2903] */ - (xdc_Char)0x6c, /* [2904] */ - (xdc_Char)0x69, /* [2905] */ - (xdc_Char)0x67, /* [2906] */ - (xdc_Char)0x6e, /* [2907] */ - (xdc_Char)0x65, /* [2908] */ - (xdc_Char)0x64, /* [2909] */ - (xdc_Char)0x0, /* [2910] */ - (xdc_Char)0x61, /* [2911] */ - (xdc_Char)0x6c, /* [2912] */ - (xdc_Char)0x69, /* [2913] */ - (xdc_Char)0x67, /* [2914] */ - (xdc_Char)0x6e, /* [2915] */ - (xdc_Char)0x20, /* [2916] */ - (xdc_Char)0x70, /* [2917] */ - (xdc_Char)0x61, /* [2918] */ - (xdc_Char)0x72, /* [2919] */ - (xdc_Char)0x61, /* [2920] */ - (xdc_Char)0x6d, /* [2921] */ - (xdc_Char)0x65, /* [2922] */ - (xdc_Char)0x74, /* [2923] */ - (xdc_Char)0x65, /* [2924] */ - (xdc_Char)0x72, /* [2925] */ - (xdc_Char)0x20, /* [2926] */ - (xdc_Char)0x6d, /* [2927] */ - (xdc_Char)0x75, /* [2928] */ - (xdc_Char)0x73, /* [2929] */ - (xdc_Char)0x74, /* [2930] */ - (xdc_Char)0x20, /* [2931] */ - (xdc_Char)0x62, /* [2932] */ - (xdc_Char)0x65, /* [2933] */ - (xdc_Char)0x20, /* [2934] */ - (xdc_Char)0x30, /* [2935] */ - (xdc_Char)0x20, /* [2936] */ - (xdc_Char)0x6f, /* [2937] */ - (xdc_Char)0x72, /* [2938] */ - (xdc_Char)0x20, /* [2939] */ - (xdc_Char)0x61, /* [2940] */ - (xdc_Char)0x20, /* [2941] */ - (xdc_Char)0x70, /* [2942] */ - (xdc_Char)0x6f, /* [2943] */ - (xdc_Char)0x77, /* [2944] */ - (xdc_Char)0x65, /* [2945] */ - (xdc_Char)0x72, /* [2946] */ - (xdc_Char)0x20, /* [2947] */ - (xdc_Char)0x6f, /* [2948] */ - (xdc_Char)0x66, /* [2949] */ - (xdc_Char)0x20, /* [2950] */ - (xdc_Char)0x32, /* [2951] */ - (xdc_Char)0x20, /* [2952] */ - (xdc_Char)0x3e, /* [2953] */ - (xdc_Char)0x3d, /* [2954] */ - (xdc_Char)0x20, /* [2955] */ - (xdc_Char)0x74, /* [2956] */ - (xdc_Char)0x68, /* [2957] */ - (xdc_Char)0x65, /* [2958] */ - (xdc_Char)0x20, /* [2959] */ - (xdc_Char)0x76, /* [2960] */ - (xdc_Char)0x61, /* [2961] */ - (xdc_Char)0x6c, /* [2962] */ - (xdc_Char)0x75, /* [2963] */ - (xdc_Char)0x65, /* [2964] */ - (xdc_Char)0x20, /* [2965] */ - (xdc_Char)0x6f, /* [2966] */ - (xdc_Char)0x66, /* [2967] */ - (xdc_Char)0x20, /* [2968] */ - (xdc_Char)0x4d, /* [2969] */ - (xdc_Char)0x65, /* [2970] */ - (xdc_Char)0x6d, /* [2971] */ - (xdc_Char)0x6f, /* [2972] */ - (xdc_Char)0x72, /* [2973] */ - (xdc_Char)0x79, /* [2974] */ - (xdc_Char)0x5f, /* [2975] */ - (xdc_Char)0x67, /* [2976] */ - (xdc_Char)0x65, /* [2977] */ - (xdc_Char)0x74, /* [2978] */ - (xdc_Char)0x4d, /* [2979] */ - (xdc_Char)0x61, /* [2980] */ - (xdc_Char)0x78, /* [2981] */ - (xdc_Char)0x44, /* [2982] */ - (xdc_Char)0x65, /* [2983] */ - (xdc_Char)0x66, /* [2984] */ - (xdc_Char)0x61, /* [2985] */ - (xdc_Char)0x75, /* [2986] */ - (xdc_Char)0x6c, /* [2987] */ - (xdc_Char)0x74, /* [2988] */ - (xdc_Char)0x54, /* [2989] */ - (xdc_Char)0x79, /* [2990] */ - (xdc_Char)0x70, /* [2991] */ - (xdc_Char)0x65, /* [2992] */ - (xdc_Char)0x41, /* [2993] */ - (xdc_Char)0x6c, /* [2994] */ - (xdc_Char)0x69, /* [2995] */ - (xdc_Char)0x67, /* [2996] */ - (xdc_Char)0x6e, /* [2997] */ - (xdc_Char)0x28, /* [2998] */ - (xdc_Char)0x29, /* [2999] */ - (xdc_Char)0x0, /* [3000] */ - (xdc_Char)0x61, /* [3001] */ - (xdc_Char)0x6c, /* [3002] */ - (xdc_Char)0x69, /* [3003] */ - (xdc_Char)0x67, /* [3004] */ - (xdc_Char)0x6e, /* [3005] */ - (xdc_Char)0x20, /* [3006] */ - (xdc_Char)0x70, /* [3007] */ - (xdc_Char)0x61, /* [3008] */ - (xdc_Char)0x72, /* [3009] */ - (xdc_Char)0x61, /* [3010] */ - (xdc_Char)0x6d, /* [3011] */ - (xdc_Char)0x65, /* [3012] */ - (xdc_Char)0x74, /* [3013] */ - (xdc_Char)0x65, /* [3014] */ - (xdc_Char)0x72, /* [3015] */ - (xdc_Char)0x20, /* [3016] */ - (xdc_Char)0x31, /* [3017] */ - (xdc_Char)0x29, /* [3018] */ - (xdc_Char)0x20, /* [3019] */ - (xdc_Char)0x6d, /* [3020] */ - (xdc_Char)0x75, /* [3021] */ - (xdc_Char)0x73, /* [3022] */ - (xdc_Char)0x74, /* [3023] */ - (xdc_Char)0x20, /* [3024] */ - (xdc_Char)0x62, /* [3025] */ - (xdc_Char)0x65, /* [3026] */ - (xdc_Char)0x20, /* [3027] */ - (xdc_Char)0x30, /* [3028] */ - (xdc_Char)0x20, /* [3029] */ - (xdc_Char)0x6f, /* [3030] */ - (xdc_Char)0x72, /* [3031] */ - (xdc_Char)0x20, /* [3032] */ - (xdc_Char)0x61, /* [3033] */ - (xdc_Char)0x20, /* [3034] */ - (xdc_Char)0x70, /* [3035] */ - (xdc_Char)0x6f, /* [3036] */ - (xdc_Char)0x77, /* [3037] */ - (xdc_Char)0x65, /* [3038] */ - (xdc_Char)0x72, /* [3039] */ - (xdc_Char)0x20, /* [3040] */ - (xdc_Char)0x6f, /* [3041] */ - (xdc_Char)0x66, /* [3042] */ - (xdc_Char)0x20, /* [3043] */ - (xdc_Char)0x32, /* [3044] */ - (xdc_Char)0x20, /* [3045] */ - (xdc_Char)0x61, /* [3046] */ - (xdc_Char)0x6e, /* [3047] */ - (xdc_Char)0x64, /* [3048] */ - (xdc_Char)0x20, /* [3049] */ - (xdc_Char)0x32, /* [3050] */ - (xdc_Char)0x29, /* [3051] */ - (xdc_Char)0x20, /* [3052] */ - (xdc_Char)0x6e, /* [3053] */ - (xdc_Char)0x6f, /* [3054] */ - (xdc_Char)0x74, /* [3055] */ - (xdc_Char)0x20, /* [3056] */ - (xdc_Char)0x67, /* [3057] */ - (xdc_Char)0x72, /* [3058] */ - (xdc_Char)0x65, /* [3059] */ - (xdc_Char)0x61, /* [3060] */ - (xdc_Char)0x74, /* [3061] */ - (xdc_Char)0x65, /* [3062] */ - (xdc_Char)0x72, /* [3063] */ - (xdc_Char)0x20, /* [3064] */ - (xdc_Char)0x74, /* [3065] */ - (xdc_Char)0x68, /* [3066] */ - (xdc_Char)0x61, /* [3067] */ - (xdc_Char)0x6e, /* [3068] */ - (xdc_Char)0x20, /* [3069] */ - (xdc_Char)0x74, /* [3070] */ - (xdc_Char)0x68, /* [3071] */ - (xdc_Char)0x65, /* [3072] */ - (xdc_Char)0x20, /* [3073] */ - (xdc_Char)0x68, /* [3074] */ - (xdc_Char)0x65, /* [3075] */ - (xdc_Char)0x61, /* [3076] */ - (xdc_Char)0x70, /* [3077] */ - (xdc_Char)0x73, /* [3078] */ - (xdc_Char)0x20, /* [3079] */ - (xdc_Char)0x61, /* [3080] */ - (xdc_Char)0x6c, /* [3081] */ - (xdc_Char)0x69, /* [3082] */ - (xdc_Char)0x67, /* [3083] */ - (xdc_Char)0x6e, /* [3084] */ - (xdc_Char)0x6d, /* [3085] */ - (xdc_Char)0x65, /* [3086] */ - (xdc_Char)0x6e, /* [3087] */ - (xdc_Char)0x74, /* [3088] */ - (xdc_Char)0x0, /* [3089] */ - (xdc_Char)0x62, /* [3090] */ - (xdc_Char)0x6c, /* [3091] */ - (xdc_Char)0x6f, /* [3092] */ - (xdc_Char)0x63, /* [3093] */ - (xdc_Char)0x6b, /* [3094] */ - (xdc_Char)0x53, /* [3095] */ - (xdc_Char)0x69, /* [3096] */ - (xdc_Char)0x7a, /* [3097] */ - (xdc_Char)0x65, /* [3098] */ - (xdc_Char)0x20, /* [3099] */ - (xdc_Char)0x6d, /* [3100] */ - (xdc_Char)0x75, /* [3101] */ - (xdc_Char)0x73, /* [3102] */ - (xdc_Char)0x74, /* [3103] */ - (xdc_Char)0x20, /* [3104] */ - (xdc_Char)0x62, /* [3105] */ - (xdc_Char)0x65, /* [3106] */ - (xdc_Char)0x20, /* [3107] */ - (xdc_Char)0x6c, /* [3108] */ - (xdc_Char)0x61, /* [3109] */ - (xdc_Char)0x72, /* [3110] */ - (xdc_Char)0x67, /* [3111] */ - (xdc_Char)0x65, /* [3112] */ - (xdc_Char)0x20, /* [3113] */ - (xdc_Char)0x65, /* [3114] */ - (xdc_Char)0x6e, /* [3115] */ - (xdc_Char)0x6f, /* [3116] */ - (xdc_Char)0x75, /* [3117] */ - (xdc_Char)0x67, /* [3118] */ - (xdc_Char)0x68, /* [3119] */ - (xdc_Char)0x20, /* [3120] */ - (xdc_Char)0x74, /* [3121] */ - (xdc_Char)0x6f, /* [3122] */ - (xdc_Char)0x20, /* [3123] */ - (xdc_Char)0x68, /* [3124] */ - (xdc_Char)0x6f, /* [3125] */ - (xdc_Char)0x6c, /* [3126] */ - (xdc_Char)0x64, /* [3127] */ - (xdc_Char)0x20, /* [3128] */ - (xdc_Char)0x61, /* [3129] */ - (xdc_Char)0x74, /* [3130] */ - (xdc_Char)0x6c, /* [3131] */ - (xdc_Char)0x65, /* [3132] */ - (xdc_Char)0x61, /* [3133] */ - (xdc_Char)0x73, /* [3134] */ - (xdc_Char)0x74, /* [3135] */ - (xdc_Char)0x20, /* [3136] */ - (xdc_Char)0x74, /* [3137] */ - (xdc_Char)0x77, /* [3138] */ - (xdc_Char)0x6f, /* [3139] */ - (xdc_Char)0x20, /* [3140] */ - (xdc_Char)0x70, /* [3141] */ - (xdc_Char)0x6f, /* [3142] */ - (xdc_Char)0x69, /* [3143] */ - (xdc_Char)0x6e, /* [3144] */ - (xdc_Char)0x74, /* [3145] */ - (xdc_Char)0x65, /* [3146] */ - (xdc_Char)0x72, /* [3147] */ - (xdc_Char)0x73, /* [3148] */ - (xdc_Char)0x0, /* [3149] */ - (xdc_Char)0x6e, /* [3150] */ - (xdc_Char)0x75, /* [3151] */ - (xdc_Char)0x6d, /* [3152] */ - (xdc_Char)0x42, /* [3153] */ - (xdc_Char)0x6c, /* [3154] */ - (xdc_Char)0x6f, /* [3155] */ - (xdc_Char)0x63, /* [3156] */ - (xdc_Char)0x6b, /* [3157] */ - (xdc_Char)0x73, /* [3158] */ - (xdc_Char)0x20, /* [3159] */ - (xdc_Char)0x63, /* [3160] */ - (xdc_Char)0x61, /* [3161] */ - (xdc_Char)0x6e, /* [3162] */ - (xdc_Char)0x6e, /* [3163] */ - (xdc_Char)0x6f, /* [3164] */ - (xdc_Char)0x74, /* [3165] */ - (xdc_Char)0x20, /* [3166] */ - (xdc_Char)0x62, /* [3167] */ - (xdc_Char)0x65, /* [3168] */ - (xdc_Char)0x20, /* [3169] */ - (xdc_Char)0x7a, /* [3170] */ - (xdc_Char)0x65, /* [3171] */ - (xdc_Char)0x72, /* [3172] */ - (xdc_Char)0x6f, /* [3173] */ - (xdc_Char)0x0, /* [3174] */ - (xdc_Char)0x62, /* [3175] */ - (xdc_Char)0x75, /* [3176] */ - (xdc_Char)0x66, /* [3177] */ - (xdc_Char)0x53, /* [3178] */ - (xdc_Char)0x69, /* [3179] */ - (xdc_Char)0x7a, /* [3180] */ - (xdc_Char)0x65, /* [3181] */ - (xdc_Char)0x20, /* [3182] */ - (xdc_Char)0x63, /* [3183] */ - (xdc_Char)0x61, /* [3184] */ - (xdc_Char)0x6e, /* [3185] */ - (xdc_Char)0x6e, /* [3186] */ - (xdc_Char)0x6f, /* [3187] */ - (xdc_Char)0x74, /* [3188] */ - (xdc_Char)0x20, /* [3189] */ - (xdc_Char)0x62, /* [3190] */ - (xdc_Char)0x65, /* [3191] */ - (xdc_Char)0x20, /* [3192] */ - (xdc_Char)0x7a, /* [3193] */ - (xdc_Char)0x65, /* [3194] */ - (xdc_Char)0x72, /* [3195] */ - (xdc_Char)0x6f, /* [3196] */ - (xdc_Char)0x0, /* [3197] */ - (xdc_Char)0x48, /* [3198] */ - (xdc_Char)0x65, /* [3199] */ - (xdc_Char)0x61, /* [3200] */ - (xdc_Char)0x70, /* [3201] */ - (xdc_Char)0x42, /* [3202] */ - (xdc_Char)0x75, /* [3203] */ - (xdc_Char)0x66, /* [3204] */ - (xdc_Char)0x5f, /* [3205] */ - (xdc_Char)0x63, /* [3206] */ - (xdc_Char)0x72, /* [3207] */ - (xdc_Char)0x65, /* [3208] */ - (xdc_Char)0x61, /* [3209] */ - (xdc_Char)0x74, /* [3210] */ - (xdc_Char)0x65, /* [3211] */ - (xdc_Char)0x27, /* [3212] */ - (xdc_Char)0x73, /* [3213] */ - (xdc_Char)0x20, /* [3214] */ - (xdc_Char)0x62, /* [3215] */ - (xdc_Char)0x75, /* [3216] */ - (xdc_Char)0x66, /* [3217] */ - (xdc_Char)0x53, /* [3218] */ - (xdc_Char)0x69, /* [3219] */ - (xdc_Char)0x7a, /* [3220] */ - (xdc_Char)0x65, /* [3221] */ - (xdc_Char)0x20, /* [3222] */ - (xdc_Char)0x70, /* [3223] */ - (xdc_Char)0x61, /* [3224] */ - (xdc_Char)0x72, /* [3225] */ - (xdc_Char)0x61, /* [3226] */ - (xdc_Char)0x6d, /* [3227] */ - (xdc_Char)0x65, /* [3228] */ - (xdc_Char)0x74, /* [3229] */ - (xdc_Char)0x65, /* [3230] */ - (xdc_Char)0x72, /* [3231] */ - (xdc_Char)0x20, /* [3232] */ - (xdc_Char)0x69, /* [3233] */ - (xdc_Char)0x73, /* [3234] */ - (xdc_Char)0x20, /* [3235] */ - (xdc_Char)0x69, /* [3236] */ - (xdc_Char)0x6e, /* [3237] */ - (xdc_Char)0x76, /* [3238] */ - (xdc_Char)0x61, /* [3239] */ - (xdc_Char)0x6c, /* [3240] */ - (xdc_Char)0x69, /* [3241] */ - (xdc_Char)0x64, /* [3242] */ - (xdc_Char)0x20, /* [3243] */ - (xdc_Char)0x28, /* [3244] */ - (xdc_Char)0x74, /* [3245] */ - (xdc_Char)0x6f, /* [3246] */ - (xdc_Char)0x6f, /* [3247] */ - (xdc_Char)0x20, /* [3248] */ - (xdc_Char)0x73, /* [3249] */ - (xdc_Char)0x6d, /* [3250] */ - (xdc_Char)0x61, /* [3251] */ - (xdc_Char)0x6c, /* [3252] */ - (xdc_Char)0x6c, /* [3253] */ - (xdc_Char)0x29, /* [3254] */ - (xdc_Char)0x0, /* [3255] */ - (xdc_Char)0x43, /* [3256] */ - (xdc_Char)0x61, /* [3257] */ - (xdc_Char)0x6e, /* [3258] */ - (xdc_Char)0x6e, /* [3259] */ - (xdc_Char)0x6f, /* [3260] */ - (xdc_Char)0x74, /* [3261] */ - (xdc_Char)0x20, /* [3262] */ - (xdc_Char)0x63, /* [3263] */ - (xdc_Char)0x61, /* [3264] */ - (xdc_Char)0x6c, /* [3265] */ - (xdc_Char)0x6c, /* [3266] */ - (xdc_Char)0x20, /* [3267] */ - (xdc_Char)0x48, /* [3268] */ - (xdc_Char)0x65, /* [3269] */ - (xdc_Char)0x61, /* [3270] */ - (xdc_Char)0x70, /* [3271] */ - (xdc_Char)0x42, /* [3272] */ - (xdc_Char)0x75, /* [3273] */ - (xdc_Char)0x66, /* [3274] */ - (xdc_Char)0x5f, /* [3275] */ - (xdc_Char)0x66, /* [3276] */ - (xdc_Char)0x72, /* [3277] */ - (xdc_Char)0x65, /* [3278] */ - (xdc_Char)0x65, /* [3279] */ - (xdc_Char)0x20, /* [3280] */ - (xdc_Char)0x77, /* [3281] */ - (xdc_Char)0x68, /* [3282] */ - (xdc_Char)0x65, /* [3283] */ - (xdc_Char)0x6e, /* [3284] */ - (xdc_Char)0x20, /* [3285] */ - (xdc_Char)0x6e, /* [3286] */ - (xdc_Char)0x6f, /* [3287] */ - (xdc_Char)0x20, /* [3288] */ - (xdc_Char)0x62, /* [3289] */ - (xdc_Char)0x6c, /* [3290] */ - (xdc_Char)0x6f, /* [3291] */ - (xdc_Char)0x63, /* [3292] */ - (xdc_Char)0x6b, /* [3293] */ - (xdc_Char)0x73, /* [3294] */ - (xdc_Char)0x20, /* [3295] */ - (xdc_Char)0x68, /* [3296] */ - (xdc_Char)0x61, /* [3297] */ - (xdc_Char)0x76, /* [3298] */ - (xdc_Char)0x65, /* [3299] */ - (xdc_Char)0x20, /* [3300] */ - (xdc_Char)0x62, /* [3301] */ - (xdc_Char)0x65, /* [3302] */ - (xdc_Char)0x65, /* [3303] */ - (xdc_Char)0x6e, /* [3304] */ - (xdc_Char)0x20, /* [3305] */ - (xdc_Char)0x61, /* [3306] */ - (xdc_Char)0x6c, /* [3307] */ - (xdc_Char)0x6c, /* [3308] */ - (xdc_Char)0x6f, /* [3309] */ - (xdc_Char)0x63, /* [3310] */ - (xdc_Char)0x61, /* [3311] */ - (xdc_Char)0x74, /* [3312] */ - (xdc_Char)0x65, /* [3313] */ - (xdc_Char)0x64, /* [3314] */ - (xdc_Char)0x0, /* [3315] */ - (xdc_Char)0x41, /* [3316] */ - (xdc_Char)0x5f, /* [3317] */ - (xdc_Char)0x69, /* [3318] */ - (xdc_Char)0x6e, /* [3319] */ - (xdc_Char)0x76, /* [3320] */ - (xdc_Char)0x61, /* [3321] */ - (xdc_Char)0x6c, /* [3322] */ - (xdc_Char)0x69, /* [3323] */ - (xdc_Char)0x64, /* [3324] */ - (xdc_Char)0x46, /* [3325] */ - (xdc_Char)0x72, /* [3326] */ - (xdc_Char)0x65, /* [3327] */ - (xdc_Char)0x65, /* [3328] */ - (xdc_Char)0x3a, /* [3329] */ - (xdc_Char)0x20, /* [3330] */ - (xdc_Char)0x49, /* [3331] */ - (xdc_Char)0x6e, /* [3332] */ - (xdc_Char)0x76, /* [3333] */ - (xdc_Char)0x61, /* [3334] */ - (xdc_Char)0x6c, /* [3335] */ - (xdc_Char)0x69, /* [3336] */ - (xdc_Char)0x64, /* [3337] */ - (xdc_Char)0x20, /* [3338] */ - (xdc_Char)0x66, /* [3339] */ - (xdc_Char)0x72, /* [3340] */ - (xdc_Char)0x65, /* [3341] */ - (xdc_Char)0x65, /* [3342] */ - (xdc_Char)0x0, /* [3343] */ - (xdc_Char)0x41, /* [3344] */ - (xdc_Char)0x5f, /* [3345] */ - (xdc_Char)0x7a, /* [3346] */ - (xdc_Char)0x65, /* [3347] */ - (xdc_Char)0x72, /* [3348] */ - (xdc_Char)0x6f, /* [3349] */ - (xdc_Char)0x42, /* [3350] */ - (xdc_Char)0x6c, /* [3351] */ - (xdc_Char)0x6f, /* [3352] */ - (xdc_Char)0x63, /* [3353] */ - (xdc_Char)0x6b, /* [3354] */ - (xdc_Char)0x3a, /* [3355] */ - (xdc_Char)0x20, /* [3356] */ - (xdc_Char)0x43, /* [3357] */ - (xdc_Char)0x61, /* [3358] */ - (xdc_Char)0x6e, /* [3359] */ - (xdc_Char)0x6e, /* [3360] */ - (xdc_Char)0x6f, /* [3361] */ - (xdc_Char)0x74, /* [3362] */ - (xdc_Char)0x20, /* [3363] */ - (xdc_Char)0x61, /* [3364] */ - (xdc_Char)0x6c, /* [3365] */ - (xdc_Char)0x6c, /* [3366] */ - (xdc_Char)0x6f, /* [3367] */ - (xdc_Char)0x63, /* [3368] */ - (xdc_Char)0x61, /* [3369] */ - (xdc_Char)0x74, /* [3370] */ - (xdc_Char)0x65, /* [3371] */ - (xdc_Char)0x20, /* [3372] */ - (xdc_Char)0x73, /* [3373] */ - (xdc_Char)0x69, /* [3374] */ - (xdc_Char)0x7a, /* [3375] */ - (xdc_Char)0x65, /* [3376] */ - (xdc_Char)0x20, /* [3377] */ - (xdc_Char)0x30, /* [3378] */ - (xdc_Char)0x0, /* [3379] */ - (xdc_Char)0x41, /* [3380] */ - (xdc_Char)0x5f, /* [3381] */ - (xdc_Char)0x68, /* [3382] */ - (xdc_Char)0x65, /* [3383] */ - (xdc_Char)0x61, /* [3384] */ - (xdc_Char)0x70, /* [3385] */ - (xdc_Char)0x53, /* [3386] */ - (xdc_Char)0x69, /* [3387] */ - (xdc_Char)0x7a, /* [3388] */ - (xdc_Char)0x65, /* [3389] */ - (xdc_Char)0x3a, /* [3390] */ - (xdc_Char)0x20, /* [3391] */ - (xdc_Char)0x52, /* [3392] */ - (xdc_Char)0x65, /* [3393] */ - (xdc_Char)0x71, /* [3394] */ - (xdc_Char)0x75, /* [3395] */ - (xdc_Char)0x65, /* [3396] */ - (xdc_Char)0x73, /* [3397] */ - (xdc_Char)0x74, /* [3398] */ - (xdc_Char)0x65, /* [3399] */ - (xdc_Char)0x64, /* [3400] */ - (xdc_Char)0x20, /* [3401] */ - (xdc_Char)0x68, /* [3402] */ - (xdc_Char)0x65, /* [3403] */ - (xdc_Char)0x61, /* [3404] */ - (xdc_Char)0x70, /* [3405] */ - (xdc_Char)0x20, /* [3406] */ - (xdc_Char)0x73, /* [3407] */ - (xdc_Char)0x69, /* [3408] */ - (xdc_Char)0x7a, /* [3409] */ - (xdc_Char)0x65, /* [3410] */ - (xdc_Char)0x20, /* [3411] */ - (xdc_Char)0x69, /* [3412] */ - (xdc_Char)0x73, /* [3413] */ - (xdc_Char)0x20, /* [3414] */ - (xdc_Char)0x74, /* [3415] */ - (xdc_Char)0x6f, /* [3416] */ - (xdc_Char)0x6f, /* [3417] */ - (xdc_Char)0x20, /* [3418] */ - (xdc_Char)0x73, /* [3419] */ - (xdc_Char)0x6d, /* [3420] */ - (xdc_Char)0x61, /* [3421] */ - (xdc_Char)0x6c, /* [3422] */ - (xdc_Char)0x6c, /* [3423] */ - (xdc_Char)0x0, /* [3424] */ - (xdc_Char)0x41, /* [3425] */ - (xdc_Char)0x5f, /* [3426] */ - (xdc_Char)0x61, /* [3427] */ - (xdc_Char)0x6c, /* [3428] */ - (xdc_Char)0x69, /* [3429] */ - (xdc_Char)0x67, /* [3430] */ - (xdc_Char)0x6e, /* [3431] */ - (xdc_Char)0x3a, /* [3432] */ - (xdc_Char)0x20, /* [3433] */ - (xdc_Char)0x52, /* [3434] */ - (xdc_Char)0x65, /* [3435] */ - (xdc_Char)0x71, /* [3436] */ - (xdc_Char)0x75, /* [3437] */ - (xdc_Char)0x65, /* [3438] */ - (xdc_Char)0x73, /* [3439] */ - (xdc_Char)0x74, /* [3440] */ - (xdc_Char)0x65, /* [3441] */ - (xdc_Char)0x64, /* [3442] */ - (xdc_Char)0x20, /* [3443] */ - (xdc_Char)0x61, /* [3444] */ - (xdc_Char)0x6c, /* [3445] */ - (xdc_Char)0x69, /* [3446] */ - (xdc_Char)0x67, /* [3447] */ - (xdc_Char)0x6e, /* [3448] */ - (xdc_Char)0x20, /* [3449] */ - (xdc_Char)0x69, /* [3450] */ - (xdc_Char)0x73, /* [3451] */ - (xdc_Char)0x20, /* [3452] */ - (xdc_Char)0x6e, /* [3453] */ - (xdc_Char)0x6f, /* [3454] */ - (xdc_Char)0x74, /* [3455] */ - (xdc_Char)0x20, /* [3456] */ - (xdc_Char)0x61, /* [3457] */ - (xdc_Char)0x20, /* [3458] */ - (xdc_Char)0x70, /* [3459] */ - (xdc_Char)0x6f, /* [3460] */ - (xdc_Char)0x77, /* [3461] */ - (xdc_Char)0x65, /* [3462] */ - (xdc_Char)0x72, /* [3463] */ - (xdc_Char)0x20, /* [3464] */ - (xdc_Char)0x6f, /* [3465] */ - (xdc_Char)0x66, /* [3466] */ - (xdc_Char)0x20, /* [3467] */ - (xdc_Char)0x32, /* [3468] */ - (xdc_Char)0x0, /* [3469] */ - (xdc_Char)0x49, /* [3470] */ - (xdc_Char)0x6e, /* [3471] */ - (xdc_Char)0x76, /* [3472] */ - (xdc_Char)0x61, /* [3473] */ - (xdc_Char)0x6c, /* [3474] */ - (xdc_Char)0x69, /* [3475] */ - (xdc_Char)0x64, /* [3476] */ - (xdc_Char)0x20, /* [3477] */ - (xdc_Char)0x62, /* [3478] */ - (xdc_Char)0x6c, /* [3479] */ - (xdc_Char)0x6f, /* [3480] */ - (xdc_Char)0x63, /* [3481] */ - (xdc_Char)0x6b, /* [3482] */ - (xdc_Char)0x20, /* [3483] */ - (xdc_Char)0x61, /* [3484] */ - (xdc_Char)0x64, /* [3485] */ - (xdc_Char)0x64, /* [3486] */ - (xdc_Char)0x72, /* [3487] */ - (xdc_Char)0x65, /* [3488] */ - (xdc_Char)0x73, /* [3489] */ - (xdc_Char)0x73, /* [3490] */ - (xdc_Char)0x20, /* [3491] */ - (xdc_Char)0x6f, /* [3492] */ - (xdc_Char)0x6e, /* [3493] */ - (xdc_Char)0x20, /* [3494] */ - (xdc_Char)0x74, /* [3495] */ - (xdc_Char)0x68, /* [3496] */ - (xdc_Char)0x65, /* [3497] */ - (xdc_Char)0x20, /* [3498] */ - (xdc_Char)0x66, /* [3499] */ - (xdc_Char)0x72, /* [3500] */ - (xdc_Char)0x65, /* [3501] */ - (xdc_Char)0x65, /* [3502] */ - (xdc_Char)0x2e, /* [3503] */ - (xdc_Char)0x20, /* [3504] */ - (xdc_Char)0x46, /* [3505] */ - (xdc_Char)0x61, /* [3506] */ - (xdc_Char)0x69, /* [3507] */ - (xdc_Char)0x6c, /* [3508] */ - (xdc_Char)0x65, /* [3509] */ - (xdc_Char)0x64, /* [3510] */ - (xdc_Char)0x20, /* [3511] */ - (xdc_Char)0x74, /* [3512] */ - (xdc_Char)0x6f, /* [3513] */ - (xdc_Char)0x20, /* [3514] */ - (xdc_Char)0x66, /* [3515] */ - (xdc_Char)0x72, /* [3516] */ - (xdc_Char)0x65, /* [3517] */ - (xdc_Char)0x65, /* [3518] */ - (xdc_Char)0x20, /* [3519] */ - (xdc_Char)0x62, /* [3520] */ - (xdc_Char)0x6c, /* [3521] */ - (xdc_Char)0x6f, /* [3522] */ - (xdc_Char)0x63, /* [3523] */ - (xdc_Char)0x6b, /* [3524] */ - (xdc_Char)0x20, /* [3525] */ - (xdc_Char)0x62, /* [3526] */ - (xdc_Char)0x61, /* [3527] */ - (xdc_Char)0x63, /* [3528] */ - (xdc_Char)0x6b, /* [3529] */ - (xdc_Char)0x20, /* [3530] */ - (xdc_Char)0x74, /* [3531] */ - (xdc_Char)0x6f, /* [3532] */ - (xdc_Char)0x20, /* [3533] */ - (xdc_Char)0x68, /* [3534] */ - (xdc_Char)0x65, /* [3535] */ - (xdc_Char)0x61, /* [3536] */ - (xdc_Char)0x70, /* [3537] */ - (xdc_Char)0x2e, /* [3538] */ - (xdc_Char)0x0, /* [3539] */ - (xdc_Char)0x41, /* [3540] */ - (xdc_Char)0x5f, /* [3541] */ - (xdc_Char)0x64, /* [3542] */ - (xdc_Char)0x6f, /* [3543] */ - (xdc_Char)0x75, /* [3544] */ - (xdc_Char)0x62, /* [3545] */ - (xdc_Char)0x6c, /* [3546] */ - (xdc_Char)0x65, /* [3547] */ - (xdc_Char)0x46, /* [3548] */ - (xdc_Char)0x72, /* [3549] */ - (xdc_Char)0x65, /* [3550] */ - (xdc_Char)0x65, /* [3551] */ - (xdc_Char)0x3a, /* [3552] */ - (xdc_Char)0x20, /* [3553] */ - (xdc_Char)0x42, /* [3554] */ - (xdc_Char)0x75, /* [3555] */ - (xdc_Char)0x66, /* [3556] */ - (xdc_Char)0x66, /* [3557] */ - (xdc_Char)0x65, /* [3558] */ - (xdc_Char)0x72, /* [3559] */ - (xdc_Char)0x20, /* [3560] */ - (xdc_Char)0x61, /* [3561] */ - (xdc_Char)0x6c, /* [3562] */ - (xdc_Char)0x72, /* [3563] */ - (xdc_Char)0x65, /* [3564] */ - (xdc_Char)0x61, /* [3565] */ - (xdc_Char)0x64, /* [3566] */ - (xdc_Char)0x79, /* [3567] */ - (xdc_Char)0x20, /* [3568] */ - (xdc_Char)0x66, /* [3569] */ - (xdc_Char)0x72, /* [3570] */ - (xdc_Char)0x65, /* [3571] */ - (xdc_Char)0x65, /* [3572] */ - (xdc_Char)0x0, /* [3573] */ - (xdc_Char)0x41, /* [3574] */ - (xdc_Char)0x5f, /* [3575] */ - (xdc_Char)0x62, /* [3576] */ - (xdc_Char)0x75, /* [3577] */ - (xdc_Char)0x66, /* [3578] */ - (xdc_Char)0x4f, /* [3579] */ - (xdc_Char)0x76, /* [3580] */ - (xdc_Char)0x65, /* [3581] */ - (xdc_Char)0x72, /* [3582] */ - (xdc_Char)0x66, /* [3583] */ - (xdc_Char)0x6c, /* [3584] */ - (xdc_Char)0x6f, /* [3585] */ - (xdc_Char)0x77, /* [3586] */ - (xdc_Char)0x3a, /* [3587] */ - (xdc_Char)0x20, /* [3588] */ - (xdc_Char)0x42, /* [3589] */ - (xdc_Char)0x75, /* [3590] */ - (xdc_Char)0x66, /* [3591] */ - (xdc_Char)0x66, /* [3592] */ - (xdc_Char)0x65, /* [3593] */ - (xdc_Char)0x72, /* [3594] */ - (xdc_Char)0x20, /* [3595] */ - (xdc_Char)0x6f, /* [3596] */ - (xdc_Char)0x76, /* [3597] */ - (xdc_Char)0x65, /* [3598] */ - (xdc_Char)0x72, /* [3599] */ - (xdc_Char)0x66, /* [3600] */ - (xdc_Char)0x6c, /* [3601] */ - (xdc_Char)0x6f, /* [3602] */ - (xdc_Char)0x77, /* [3603] */ - (xdc_Char)0x0, /* [3604] */ - (xdc_Char)0x41, /* [3605] */ - (xdc_Char)0x5f, /* [3606] */ - (xdc_Char)0x6e, /* [3607] */ - (xdc_Char)0x6f, /* [3608] */ - (xdc_Char)0x74, /* [3609] */ - (xdc_Char)0x45, /* [3610] */ - (xdc_Char)0x6d, /* [3611] */ - (xdc_Char)0x70, /* [3612] */ - (xdc_Char)0x74, /* [3613] */ - (xdc_Char)0x79, /* [3614] */ - (xdc_Char)0x3a, /* [3615] */ - (xdc_Char)0x20, /* [3616] */ - (xdc_Char)0x48, /* [3617] */ - (xdc_Char)0x65, /* [3618] */ - (xdc_Char)0x61, /* [3619] */ - (xdc_Char)0x70, /* [3620] */ - (xdc_Char)0x20, /* [3621] */ - (xdc_Char)0x6e, /* [3622] */ - (xdc_Char)0x6f, /* [3623] */ - (xdc_Char)0x74, /* [3624] */ - (xdc_Char)0x20, /* [3625] */ - (xdc_Char)0x65, /* [3626] */ - (xdc_Char)0x6d, /* [3627] */ - (xdc_Char)0x70, /* [3628] */ - (xdc_Char)0x74, /* [3629] */ - (xdc_Char)0x79, /* [3630] */ - (xdc_Char)0x0, /* [3631] */ - (xdc_Char)0x41, /* [3632] */ - (xdc_Char)0x5f, /* [3633] */ - (xdc_Char)0x6e, /* [3634] */ - (xdc_Char)0x75, /* [3635] */ - (xdc_Char)0x6c, /* [3636] */ - (xdc_Char)0x6c, /* [3637] */ - (xdc_Char)0x4f, /* [3638] */ - (xdc_Char)0x62, /* [3639] */ - (xdc_Char)0x6a, /* [3640] */ - (xdc_Char)0x65, /* [3641] */ - (xdc_Char)0x63, /* [3642] */ - (xdc_Char)0x74, /* [3643] */ - (xdc_Char)0x3a, /* [3644] */ - (xdc_Char)0x20, /* [3645] */ - (xdc_Char)0x48, /* [3646] */ - (xdc_Char)0x65, /* [3647] */ - (xdc_Char)0x61, /* [3648] */ - (xdc_Char)0x70, /* [3649] */ - (xdc_Char)0x54, /* [3650] */ - (xdc_Char)0x72, /* [3651] */ - (xdc_Char)0x61, /* [3652] */ - (xdc_Char)0x63, /* [3653] */ - (xdc_Char)0x6b, /* [3654] */ - (xdc_Char)0x5f, /* [3655] */ - (xdc_Char)0x70, /* [3656] */ - (xdc_Char)0x72, /* [3657] */ - (xdc_Char)0x69, /* [3658] */ - (xdc_Char)0x6e, /* [3659] */ - (xdc_Char)0x74, /* [3660] */ - (xdc_Char)0x48, /* [3661] */ - (xdc_Char)0x65, /* [3662] */ - (xdc_Char)0x61, /* [3663] */ - (xdc_Char)0x70, /* [3664] */ - (xdc_Char)0x20, /* [3665] */ - (xdc_Char)0x63, /* [3666] */ - (xdc_Char)0x61, /* [3667] */ - (xdc_Char)0x6c, /* [3668] */ - (xdc_Char)0x6c, /* [3669] */ - (xdc_Char)0x65, /* [3670] */ - (xdc_Char)0x64, /* [3671] */ - (xdc_Char)0x20, /* [3672] */ - (xdc_Char)0x77, /* [3673] */ - (xdc_Char)0x69, /* [3674] */ - (xdc_Char)0x74, /* [3675] */ - (xdc_Char)0x68, /* [3676] */ - (xdc_Char)0x20, /* [3677] */ - (xdc_Char)0x6e, /* [3678] */ - (xdc_Char)0x75, /* [3679] */ - (xdc_Char)0x6c, /* [3680] */ - (xdc_Char)0x6c, /* [3681] */ - (xdc_Char)0x20, /* [3682] */ - (xdc_Char)0x6f, /* [3683] */ - (xdc_Char)0x62, /* [3684] */ - (xdc_Char)0x6a, /* [3685] */ - (xdc_Char)0x0, /* [3686] */ - (xdc_Char)0x61, /* [3687] */ - (xdc_Char)0x73, /* [3688] */ - (xdc_Char)0x73, /* [3689] */ - (xdc_Char)0x65, /* [3690] */ - (xdc_Char)0x72, /* [3691] */ - (xdc_Char)0x74, /* [3692] */ - (xdc_Char)0x69, /* [3693] */ - (xdc_Char)0x6f, /* [3694] */ - (xdc_Char)0x6e, /* [3695] */ - (xdc_Char)0x20, /* [3696] */ - (xdc_Char)0x66, /* [3697] */ - (xdc_Char)0x61, /* [3698] */ - (xdc_Char)0x69, /* [3699] */ - (xdc_Char)0x6c, /* [3700] */ - (xdc_Char)0x75, /* [3701] */ - (xdc_Char)0x72, /* [3702] */ - (xdc_Char)0x65, /* [3703] */ - (xdc_Char)0x25, /* [3704] */ - (xdc_Char)0x73, /* [3705] */ - (xdc_Char)0x25, /* [3706] */ - (xdc_Char)0x73, /* [3707] */ - (xdc_Char)0x0, /* [3708] */ - (xdc_Char)0x25, /* [3709] */ - (xdc_Char)0x24, /* [3710] */ - (xdc_Char)0x53, /* [3711] */ - (xdc_Char)0x0, /* [3712] */ - (xdc_Char)0x6f, /* [3713] */ - (xdc_Char)0x75, /* [3714] */ - (xdc_Char)0x74, /* [3715] */ - (xdc_Char)0x20, /* [3716] */ - (xdc_Char)0x6f, /* [3717] */ - (xdc_Char)0x66, /* [3718] */ - (xdc_Char)0x20, /* [3719] */ - (xdc_Char)0x6d, /* [3720] */ - (xdc_Char)0x65, /* [3721] */ - (xdc_Char)0x6d, /* [3722] */ - (xdc_Char)0x6f, /* [3723] */ - (xdc_Char)0x72, /* [3724] */ - (xdc_Char)0x79, /* [3725] */ - (xdc_Char)0x3a, /* [3726] */ - (xdc_Char)0x20, /* [3727] */ - (xdc_Char)0x68, /* [3728] */ - (xdc_Char)0x65, /* [3729] */ - (xdc_Char)0x61, /* [3730] */ - (xdc_Char)0x70, /* [3731] */ - (xdc_Char)0x3d, /* [3732] */ - (xdc_Char)0x30, /* [3733] */ - (xdc_Char)0x78, /* [3734] */ - (xdc_Char)0x25, /* [3735] */ - (xdc_Char)0x78, /* [3736] */ - (xdc_Char)0x2c, /* [3737] */ - (xdc_Char)0x20, /* [3738] */ - (xdc_Char)0x73, /* [3739] */ - (xdc_Char)0x69, /* [3740] */ - (xdc_Char)0x7a, /* [3741] */ - (xdc_Char)0x65, /* [3742] */ - (xdc_Char)0x3d, /* [3743] */ - (xdc_Char)0x25, /* [3744] */ - (xdc_Char)0x75, /* [3745] */ - (xdc_Char)0x0, /* [3746] */ - (xdc_Char)0x25, /* [3747] */ - (xdc_Char)0x73, /* [3748] */ - (xdc_Char)0x20, /* [3749] */ - (xdc_Char)0x30, /* [3750] */ - (xdc_Char)0x78, /* [3751] */ - (xdc_Char)0x25, /* [3752] */ - (xdc_Char)0x78, /* [3753] */ - (xdc_Char)0x0, /* [3754] */ - (xdc_Char)0x45, /* [3755] */ - (xdc_Char)0x5f, /* [3756] */ - (xdc_Char)0x62, /* [3757] */ - (xdc_Char)0x61, /* [3758] */ - (xdc_Char)0x64, /* [3759] */ - (xdc_Char)0x4c, /* [3760] */ - (xdc_Char)0x65, /* [3761] */ - (xdc_Char)0x76, /* [3762] */ - (xdc_Char)0x65, /* [3763] */ - (xdc_Char)0x6c, /* [3764] */ - (xdc_Char)0x3a, /* [3765] */ - (xdc_Char)0x20, /* [3766] */ - (xdc_Char)0x42, /* [3767] */ - (xdc_Char)0x61, /* [3768] */ - (xdc_Char)0x64, /* [3769] */ - (xdc_Char)0x20, /* [3770] */ - (xdc_Char)0x66, /* [3771] */ - (xdc_Char)0x69, /* [3772] */ - (xdc_Char)0x6c, /* [3773] */ - (xdc_Char)0x74, /* [3774] */ - (xdc_Char)0x65, /* [3775] */ - (xdc_Char)0x72, /* [3776] */ - (xdc_Char)0x20, /* [3777] */ - (xdc_Char)0x6c, /* [3778] */ - (xdc_Char)0x65, /* [3779] */ - (xdc_Char)0x76, /* [3780] */ - (xdc_Char)0x65, /* [3781] */ - (xdc_Char)0x6c, /* [3782] */ - (xdc_Char)0x20, /* [3783] */ - (xdc_Char)0x76, /* [3784] */ - (xdc_Char)0x61, /* [3785] */ - (xdc_Char)0x6c, /* [3786] */ - (xdc_Char)0x75, /* [3787] */ - (xdc_Char)0x65, /* [3788] */ - (xdc_Char)0x3a, /* [3789] */ - (xdc_Char)0x20, /* [3790] */ - (xdc_Char)0x25, /* [3791] */ - (xdc_Char)0x64, /* [3792] */ - (xdc_Char)0x0, /* [3793] */ - (xdc_Char)0x66, /* [3794] */ - (xdc_Char)0x72, /* [3795] */ - (xdc_Char)0x65, /* [3796] */ - (xdc_Char)0x65, /* [3797] */ - (xdc_Char)0x28, /* [3798] */ - (xdc_Char)0x29, /* [3799] */ - (xdc_Char)0x20, /* [3800] */ - (xdc_Char)0x69, /* [3801] */ - (xdc_Char)0x6e, /* [3802] */ - (xdc_Char)0x76, /* [3803] */ - (xdc_Char)0x61, /* [3804] */ - (xdc_Char)0x6c, /* [3805] */ - (xdc_Char)0x69, /* [3806] */ - (xdc_Char)0x64, /* [3807] */ - (xdc_Char)0x20, /* [3808] */ - (xdc_Char)0x69, /* [3809] */ - (xdc_Char)0x6e, /* [3810] */ - (xdc_Char)0x20, /* [3811] */ - (xdc_Char)0x67, /* [3812] */ - (xdc_Char)0x72, /* [3813] */ - (xdc_Char)0x6f, /* [3814] */ - (xdc_Char)0x77, /* [3815] */ - (xdc_Char)0x74, /* [3816] */ - (xdc_Char)0x68, /* [3817] */ - (xdc_Char)0x2d, /* [3818] */ - (xdc_Char)0x6f, /* [3819] */ - (xdc_Char)0x6e, /* [3820] */ - (xdc_Char)0x6c, /* [3821] */ - (xdc_Char)0x79, /* [3822] */ - (xdc_Char)0x20, /* [3823] */ - (xdc_Char)0x48, /* [3824] */ - (xdc_Char)0x65, /* [3825] */ - (xdc_Char)0x61, /* [3826] */ - (xdc_Char)0x70, /* [3827] */ - (xdc_Char)0x4d, /* [3828] */ - (xdc_Char)0x69, /* [3829] */ - (xdc_Char)0x6e, /* [3830] */ - (xdc_Char)0x0, /* [3831] */ - (xdc_Char)0x54, /* [3832] */ - (xdc_Char)0x68, /* [3833] */ - (xdc_Char)0x65, /* [3834] */ - (xdc_Char)0x20, /* [3835] */ - (xdc_Char)0x52, /* [3836] */ - (xdc_Char)0x54, /* [3837] */ - (xdc_Char)0x53, /* [3838] */ - (xdc_Char)0x20, /* [3839] */ - (xdc_Char)0x68, /* [3840] */ - (xdc_Char)0x65, /* [3841] */ - (xdc_Char)0x61, /* [3842] */ - (xdc_Char)0x70, /* [3843] */ - (xdc_Char)0x20, /* [3844] */ - (xdc_Char)0x69, /* [3845] */ - (xdc_Char)0x73, /* [3846] */ - (xdc_Char)0x20, /* [3847] */ - (xdc_Char)0x75, /* [3848] */ - (xdc_Char)0x73, /* [3849] */ - (xdc_Char)0x65, /* [3850] */ - (xdc_Char)0x64, /* [3851] */ - (xdc_Char)0x20, /* [3852] */ - (xdc_Char)0x75, /* [3853] */ - (xdc_Char)0x70, /* [3854] */ - (xdc_Char)0x2e, /* [3855] */ - (xdc_Char)0x20, /* [3856] */ - (xdc_Char)0x45, /* [3857] */ - (xdc_Char)0x78, /* [3858] */ - (xdc_Char)0x61, /* [3859] */ - (xdc_Char)0x6d, /* [3860] */ - (xdc_Char)0x69, /* [3861] */ - (xdc_Char)0x6e, /* [3862] */ - (xdc_Char)0x65, /* [3863] */ - (xdc_Char)0x20, /* [3864] */ - (xdc_Char)0x50, /* [3865] */ - (xdc_Char)0x72, /* [3866] */ - (xdc_Char)0x6f, /* [3867] */ - (xdc_Char)0x67, /* [3868] */ - (xdc_Char)0x72, /* [3869] */ - (xdc_Char)0x61, /* [3870] */ - (xdc_Char)0x6d, /* [3871] */ - (xdc_Char)0x2e, /* [3872] */ - (xdc_Char)0x68, /* [3873] */ - (xdc_Char)0x65, /* [3874] */ - (xdc_Char)0x61, /* [3875] */ - (xdc_Char)0x70, /* [3876] */ - (xdc_Char)0x2e, /* [3877] */ - (xdc_Char)0x0, /* [3878] */ - (xdc_Char)0x45, /* [3879] */ - (xdc_Char)0x5f, /* [3880] */ - (xdc_Char)0x62, /* [3881] */ - (xdc_Char)0x61, /* [3882] */ - (xdc_Char)0x64, /* [3883] */ - (xdc_Char)0x43, /* [3884] */ - (xdc_Char)0x6f, /* [3885] */ - (xdc_Char)0x6d, /* [3886] */ - (xdc_Char)0x6d, /* [3887] */ - (xdc_Char)0x61, /* [3888] */ - (xdc_Char)0x6e, /* [3889] */ - (xdc_Char)0x64, /* [3890] */ - (xdc_Char)0x3a, /* [3891] */ - (xdc_Char)0x20, /* [3892] */ - (xdc_Char)0x52, /* [3893] */ - (xdc_Char)0x65, /* [3894] */ - (xdc_Char)0x63, /* [3895] */ - (xdc_Char)0x65, /* [3896] */ - (xdc_Char)0x69, /* [3897] */ - (xdc_Char)0x76, /* [3898] */ - (xdc_Char)0x65, /* [3899] */ - (xdc_Char)0x64, /* [3900] */ - (xdc_Char)0x20, /* [3901] */ - (xdc_Char)0x69, /* [3902] */ - (xdc_Char)0x6e, /* [3903] */ - (xdc_Char)0x76, /* [3904] */ - (xdc_Char)0x61, /* [3905] */ - (xdc_Char)0x6c, /* [3906] */ - (xdc_Char)0x69, /* [3907] */ - (xdc_Char)0x64, /* [3908] */ - (xdc_Char)0x20, /* [3909] */ - (xdc_Char)0x63, /* [3910] */ - (xdc_Char)0x6f, /* [3911] */ - (xdc_Char)0x6d, /* [3912] */ - (xdc_Char)0x6d, /* [3913] */ - (xdc_Char)0x61, /* [3914] */ - (xdc_Char)0x6e, /* [3915] */ - (xdc_Char)0x64, /* [3916] */ - (xdc_Char)0x2c, /* [3917] */ - (xdc_Char)0x20, /* [3918] */ - (xdc_Char)0x69, /* [3919] */ - (xdc_Char)0x64, /* [3920] */ - (xdc_Char)0x3a, /* [3921] */ - (xdc_Char)0x20, /* [3922] */ - (xdc_Char)0x25, /* [3923] */ - (xdc_Char)0x64, /* [3924] */ - (xdc_Char)0x2e, /* [3925] */ - (xdc_Char)0x0, /* [3926] */ - (xdc_Char)0x45, /* [3927] */ - (xdc_Char)0x5f, /* [3928] */ - (xdc_Char)0x61, /* [3929] */ - (xdc_Char)0x6c, /* [3930] */ - (xdc_Char)0x72, /* [3931] */ - (xdc_Char)0x65, /* [3932] */ - (xdc_Char)0x61, /* [3933] */ - (xdc_Char)0x64, /* [3934] */ - (xdc_Char)0x79, /* [3935] */ - (xdc_Char)0x44, /* [3936] */ - (xdc_Char)0x65, /* [3937] */ - (xdc_Char)0x66, /* [3938] */ - (xdc_Char)0x69, /* [3939] */ - (xdc_Char)0x6e, /* [3940] */ - (xdc_Char)0x65, /* [3941] */ - (xdc_Char)0x64, /* [3942] */ - (xdc_Char)0x3a, /* [3943] */ - (xdc_Char)0x20, /* [3944] */ - (xdc_Char)0x48, /* [3945] */ - (xdc_Char)0x77, /* [3946] */ - (xdc_Char)0x69, /* [3947] */ - (xdc_Char)0x20, /* [3948] */ - (xdc_Char)0x61, /* [3949] */ - (xdc_Char)0x6c, /* [3950] */ - (xdc_Char)0x72, /* [3951] */ - (xdc_Char)0x65, /* [3952] */ - (xdc_Char)0x61, /* [3953] */ - (xdc_Char)0x64, /* [3954] */ - (xdc_Char)0x79, /* [3955] */ - (xdc_Char)0x20, /* [3956] */ - (xdc_Char)0x64, /* [3957] */ - (xdc_Char)0x65, /* [3958] */ - (xdc_Char)0x66, /* [3959] */ - (xdc_Char)0x69, /* [3960] */ - (xdc_Char)0x6e, /* [3961] */ - (xdc_Char)0x65, /* [3962] */ - (xdc_Char)0x64, /* [3963] */ - (xdc_Char)0x3a, /* [3964] */ - (xdc_Char)0x20, /* [3965] */ - (xdc_Char)0x69, /* [3966] */ - (xdc_Char)0x6e, /* [3967] */ - (xdc_Char)0x74, /* [3968] */ - (xdc_Char)0x72, /* [3969] */ - (xdc_Char)0x23, /* [3970] */ - (xdc_Char)0x20, /* [3971] */ - (xdc_Char)0x25, /* [3972] */ - (xdc_Char)0x64, /* [3973] */ - (xdc_Char)0x0, /* [3974] */ - (xdc_Char)0x45, /* [3975] */ - (xdc_Char)0x5f, /* [3976] */ - (xdc_Char)0x68, /* [3977] */ - (xdc_Char)0x77, /* [3978] */ - (xdc_Char)0x69, /* [3979] */ - (xdc_Char)0x4c, /* [3980] */ - (xdc_Char)0x69, /* [3981] */ - (xdc_Char)0x6d, /* [3982] */ - (xdc_Char)0x69, /* [3983] */ - (xdc_Char)0x74, /* [3984] */ - (xdc_Char)0x45, /* [3985] */ - (xdc_Char)0x78, /* [3986] */ - (xdc_Char)0x63, /* [3987] */ - (xdc_Char)0x65, /* [3988] */ - (xdc_Char)0x65, /* [3989] */ - (xdc_Char)0x64, /* [3990] */ - (xdc_Char)0x65, /* [3991] */ - (xdc_Char)0x64, /* [3992] */ - (xdc_Char)0x3a, /* [3993] */ - (xdc_Char)0x20, /* [3994] */ - (xdc_Char)0x54, /* [3995] */ - (xdc_Char)0x6f, /* [3996] */ - (xdc_Char)0x6f, /* [3997] */ - (xdc_Char)0x20, /* [3998] */ - (xdc_Char)0x6d, /* [3999] */ - (xdc_Char)0x61, /* [4000] */ - (xdc_Char)0x6e, /* [4001] */ - (xdc_Char)0x79, /* [4002] */ - (xdc_Char)0x20, /* [4003] */ - (xdc_Char)0x69, /* [4004] */ - (xdc_Char)0x6e, /* [4005] */ - (xdc_Char)0x74, /* [4006] */ - (xdc_Char)0x65, /* [4007] */ - (xdc_Char)0x72, /* [4008] */ - (xdc_Char)0x72, /* [4009] */ - (xdc_Char)0x75, /* [4010] */ - (xdc_Char)0x70, /* [4011] */ - (xdc_Char)0x74, /* [4012] */ - (xdc_Char)0x73, /* [4013] */ - (xdc_Char)0x20, /* [4014] */ - (xdc_Char)0x64, /* [4015] */ - (xdc_Char)0x65, /* [4016] */ - (xdc_Char)0x66, /* [4017] */ - (xdc_Char)0x69, /* [4018] */ - (xdc_Char)0x6e, /* [4019] */ - (xdc_Char)0x65, /* [4020] */ - (xdc_Char)0x64, /* [4021] */ - (xdc_Char)0x0, /* [4022] */ - (xdc_Char)0x45, /* [4023] */ - (xdc_Char)0x5f, /* [4024] */ - (xdc_Char)0x65, /* [4025] */ - (xdc_Char)0x78, /* [4026] */ - (xdc_Char)0x63, /* [4027] */ - (xdc_Char)0x65, /* [4028] */ - (xdc_Char)0x70, /* [4029] */ - (xdc_Char)0x74, /* [4030] */ - (xdc_Char)0x69, /* [4031] */ - (xdc_Char)0x6f, /* [4032] */ - (xdc_Char)0x6e, /* [4033] */ - (xdc_Char)0x3a, /* [4034] */ - (xdc_Char)0x20, /* [4035] */ - (xdc_Char)0x69, /* [4036] */ - (xdc_Char)0x64, /* [4037] */ - (xdc_Char)0x20, /* [4038] */ - (xdc_Char)0x3d, /* [4039] */ - (xdc_Char)0x20, /* [4040] */ - (xdc_Char)0x25, /* [4041] */ - (xdc_Char)0x64, /* [4042] */ - (xdc_Char)0x2c, /* [4043] */ - (xdc_Char)0x20, /* [4044] */ - (xdc_Char)0x70, /* [4045] */ - (xdc_Char)0x63, /* [4046] */ - (xdc_Char)0x20, /* [4047] */ - (xdc_Char)0x3d, /* [4048] */ - (xdc_Char)0x20, /* [4049] */ - (xdc_Char)0x25, /* [4050] */ - (xdc_Char)0x30, /* [4051] */ - (xdc_Char)0x38, /* [4052] */ - (xdc_Char)0x78, /* [4053] */ - (xdc_Char)0x2e, /* [4054] */ - (xdc_Char)0xa, /* [4055] */ - (xdc_Char)0x54, /* [4056] */ - (xdc_Char)0x6f, /* [4057] */ - (xdc_Char)0x20, /* [4058] */ - (xdc_Char)0x73, /* [4059] */ - (xdc_Char)0x65, /* [4060] */ - (xdc_Char)0x65, /* [4061] */ - (xdc_Char)0x20, /* [4062] */ - (xdc_Char)0x6d, /* [4063] */ - (xdc_Char)0x6f, /* [4064] */ - (xdc_Char)0x72, /* [4065] */ - (xdc_Char)0x65, /* [4066] */ - (xdc_Char)0x20, /* [4067] */ - (xdc_Char)0x65, /* [4068] */ - (xdc_Char)0x78, /* [4069] */ - (xdc_Char)0x63, /* [4070] */ - (xdc_Char)0x65, /* [4071] */ - (xdc_Char)0x70, /* [4072] */ - (xdc_Char)0x74, /* [4073] */ - (xdc_Char)0x69, /* [4074] */ - (xdc_Char)0x6f, /* [4075] */ - (xdc_Char)0x6e, /* [4076] */ - (xdc_Char)0x20, /* [4077] */ - (xdc_Char)0x64, /* [4078] */ - (xdc_Char)0x65, /* [4079] */ - (xdc_Char)0x74, /* [4080] */ - (xdc_Char)0x61, /* [4081] */ - (xdc_Char)0x69, /* [4082] */ - (xdc_Char)0x6c, /* [4083] */ - (xdc_Char)0x2c, /* [4084] */ - (xdc_Char)0x20, /* [4085] */ - (xdc_Char)0x73, /* [4086] */ - (xdc_Char)0x65, /* [4087] */ - (xdc_Char)0x74, /* [4088] */ - (xdc_Char)0x20, /* [4089] */ - (xdc_Char)0x74, /* [4090] */ - (xdc_Char)0x69, /* [4091] */ - (xdc_Char)0x2e, /* [4092] */ - (xdc_Char)0x73, /* [4093] */ - (xdc_Char)0x79, /* [4094] */ - (xdc_Char)0x73, /* [4095] */ - (xdc_Char)0x62, /* [4096] */ - (xdc_Char)0x69, /* [4097] */ - (xdc_Char)0x6f, /* [4098] */ - (xdc_Char)0x73, /* [4099] */ - (xdc_Char)0x2e, /* [4100] */ - (xdc_Char)0x66, /* [4101] */ - (xdc_Char)0x61, /* [4102] */ - (xdc_Char)0x6d, /* [4103] */ - (xdc_Char)0x69, /* [4104] */ - (xdc_Char)0x6c, /* [4105] */ - (xdc_Char)0x79, /* [4106] */ - (xdc_Char)0x2e, /* [4107] */ - (xdc_Char)0x61, /* [4108] */ - (xdc_Char)0x72, /* [4109] */ - (xdc_Char)0x6d, /* [4110] */ - (xdc_Char)0x2e, /* [4111] */ - (xdc_Char)0x6d, /* [4112] */ - (xdc_Char)0x33, /* [4113] */ - (xdc_Char)0x2e, /* [4114] */ - (xdc_Char)0x48, /* [4115] */ - (xdc_Char)0x77, /* [4116] */ - (xdc_Char)0x69, /* [4117] */ - (xdc_Char)0x2e, /* [4118] */ - (xdc_Char)0x65, /* [4119] */ - (xdc_Char)0x6e, /* [4120] */ - (xdc_Char)0x61, /* [4121] */ - (xdc_Char)0x62, /* [4122] */ - (xdc_Char)0x6c, /* [4123] */ - (xdc_Char)0x65, /* [4124] */ - (xdc_Char)0x45, /* [4125] */ - (xdc_Char)0x78, /* [4126] */ - (xdc_Char)0x63, /* [4127] */ - (xdc_Char)0x65, /* [4128] */ - (xdc_Char)0x70, /* [4129] */ - (xdc_Char)0x74, /* [4130] */ - (xdc_Char)0x69, /* [4131] */ - (xdc_Char)0x6f, /* [4132] */ - (xdc_Char)0x6e, /* [4133] */ - (xdc_Char)0x20, /* [4134] */ - (xdc_Char)0x3d, /* [4135] */ - (xdc_Char)0x20, /* [4136] */ - (xdc_Char)0x74, /* [4137] */ - (xdc_Char)0x72, /* [4138] */ - (xdc_Char)0x75, /* [4139] */ - (xdc_Char)0x65, /* [4140] */ - (xdc_Char)0x20, /* [4141] */ - (xdc_Char)0x6f, /* [4142] */ - (xdc_Char)0x72, /* [4143] */ - (xdc_Char)0x2c, /* [4144] */ - (xdc_Char)0xa, /* [4145] */ - (xdc_Char)0x65, /* [4146] */ - (xdc_Char)0x78, /* [4147] */ - (xdc_Char)0x61, /* [4148] */ - (xdc_Char)0x6d, /* [4149] */ - (xdc_Char)0x69, /* [4150] */ - (xdc_Char)0x6e, /* [4151] */ - (xdc_Char)0x65, /* [4152] */ - (xdc_Char)0x20, /* [4153] */ - (xdc_Char)0x74, /* [4154] */ - (xdc_Char)0x68, /* [4155] */ - (xdc_Char)0x65, /* [4156] */ - (xdc_Char)0x20, /* [4157] */ - (xdc_Char)0x45, /* [4158] */ - (xdc_Char)0x78, /* [4159] */ - (xdc_Char)0x63, /* [4160] */ - (xdc_Char)0x65, /* [4161] */ - (xdc_Char)0x70, /* [4162] */ - (xdc_Char)0x74, /* [4163] */ - (xdc_Char)0x69, /* [4164] */ - (xdc_Char)0x6f, /* [4165] */ - (xdc_Char)0x6e, /* [4166] */ - (xdc_Char)0x20, /* [4167] */ - (xdc_Char)0x76, /* [4168] */ - (xdc_Char)0x69, /* [4169] */ - (xdc_Char)0x65, /* [4170] */ - (xdc_Char)0x77, /* [4171] */ - (xdc_Char)0x20, /* [4172] */ - (xdc_Char)0x66, /* [4173] */ - (xdc_Char)0x6f, /* [4174] */ - (xdc_Char)0x72, /* [4175] */ - (xdc_Char)0x20, /* [4176] */ - (xdc_Char)0x74, /* [4177] */ - (xdc_Char)0x68, /* [4178] */ - (xdc_Char)0x65, /* [4179] */ - (xdc_Char)0x20, /* [4180] */ - (xdc_Char)0x74, /* [4181] */ - (xdc_Char)0x69, /* [4182] */ - (xdc_Char)0x2e, /* [4183] */ - (xdc_Char)0x73, /* [4184] */ - (xdc_Char)0x79, /* [4185] */ - (xdc_Char)0x73, /* [4186] */ - (xdc_Char)0x62, /* [4187] */ - (xdc_Char)0x69, /* [4188] */ - (xdc_Char)0x6f, /* [4189] */ - (xdc_Char)0x73, /* [4190] */ - (xdc_Char)0x2e, /* [4191] */ - (xdc_Char)0x66, /* [4192] */ - (xdc_Char)0x61, /* [4193] */ - (xdc_Char)0x6d, /* [4194] */ - (xdc_Char)0x69, /* [4195] */ - (xdc_Char)0x6c, /* [4196] */ - (xdc_Char)0x79, /* [4197] */ - (xdc_Char)0x2e, /* [4198] */ - (xdc_Char)0x61, /* [4199] */ - (xdc_Char)0x72, /* [4200] */ - (xdc_Char)0x6d, /* [4201] */ - (xdc_Char)0x2e, /* [4202] */ - (xdc_Char)0x6d, /* [4203] */ - (xdc_Char)0x33, /* [4204] */ - (xdc_Char)0x2e, /* [4205] */ - (xdc_Char)0x48, /* [4206] */ - (xdc_Char)0x77, /* [4207] */ - (xdc_Char)0x69, /* [4208] */ - (xdc_Char)0x20, /* [4209] */ - (xdc_Char)0x6d, /* [4210] */ - (xdc_Char)0x6f, /* [4211] */ - (xdc_Char)0x64, /* [4212] */ - (xdc_Char)0x75, /* [4213] */ - (xdc_Char)0x6c, /* [4214] */ - (xdc_Char)0x65, /* [4215] */ - (xdc_Char)0x20, /* [4216] */ - (xdc_Char)0x75, /* [4217] */ - (xdc_Char)0x73, /* [4218] */ - (xdc_Char)0x69, /* [4219] */ - (xdc_Char)0x6e, /* [4220] */ - (xdc_Char)0x67, /* [4221] */ - (xdc_Char)0x20, /* [4222] */ - (xdc_Char)0x52, /* [4223] */ - (xdc_Char)0x4f, /* [4224] */ - (xdc_Char)0x56, /* [4225] */ - (xdc_Char)0x2e, /* [4226] */ - (xdc_Char)0x0, /* [4227] */ - (xdc_Char)0x45, /* [4228] */ - (xdc_Char)0x5f, /* [4229] */ - (xdc_Char)0x6e, /* [4230] */ - (xdc_Char)0x6f, /* [4231] */ - (xdc_Char)0x49, /* [4232] */ - (xdc_Char)0x73, /* [4233] */ - (xdc_Char)0x72, /* [4234] */ - (xdc_Char)0x3a, /* [4235] */ - (xdc_Char)0x20, /* [4236] */ - (xdc_Char)0x69, /* [4237] */ - (xdc_Char)0x64, /* [4238] */ - (xdc_Char)0x20, /* [4239] */ - (xdc_Char)0x3d, /* [4240] */ - (xdc_Char)0x20, /* [4241] */ - (xdc_Char)0x25, /* [4242] */ - (xdc_Char)0x64, /* [4243] */ - (xdc_Char)0x2c, /* [4244] */ - (xdc_Char)0x20, /* [4245] */ - (xdc_Char)0x70, /* [4246] */ - (xdc_Char)0x63, /* [4247] */ - (xdc_Char)0x20, /* [4248] */ - (xdc_Char)0x3d, /* [4249] */ - (xdc_Char)0x20, /* [4250] */ - (xdc_Char)0x25, /* [4251] */ - (xdc_Char)0x30, /* [4252] */ - (xdc_Char)0x38, /* [4253] */ - (xdc_Char)0x78, /* [4254] */ - (xdc_Char)0x0, /* [4255] */ - (xdc_Char)0x45, /* [4256] */ - (xdc_Char)0x5f, /* [4257] */ - (xdc_Char)0x4e, /* [4258] */ - (xdc_Char)0x4d, /* [4259] */ - (xdc_Char)0x49, /* [4260] */ - (xdc_Char)0x3a, /* [4261] */ - (xdc_Char)0x20, /* [4262] */ - (xdc_Char)0x25, /* [4263] */ - (xdc_Char)0x73, /* [4264] */ - (xdc_Char)0x0, /* [4265] */ - (xdc_Char)0x45, /* [4266] */ - (xdc_Char)0x5f, /* [4267] */ - (xdc_Char)0x68, /* [4268] */ - (xdc_Char)0x61, /* [4269] */ - (xdc_Char)0x72, /* [4270] */ - (xdc_Char)0x64, /* [4271] */ - (xdc_Char)0x46, /* [4272] */ - (xdc_Char)0x61, /* [4273] */ - (xdc_Char)0x75, /* [4274] */ - (xdc_Char)0x6c, /* [4275] */ - (xdc_Char)0x74, /* [4276] */ - (xdc_Char)0x3a, /* [4277] */ - (xdc_Char)0x20, /* [4278] */ - (xdc_Char)0x25, /* [4279] */ - (xdc_Char)0x73, /* [4280] */ - (xdc_Char)0x0, /* [4281] */ - (xdc_Char)0x45, /* [4282] */ - (xdc_Char)0x5f, /* [4283] */ - (xdc_Char)0x6d, /* [4284] */ - (xdc_Char)0x65, /* [4285] */ - (xdc_Char)0x6d, /* [4286] */ - (xdc_Char)0x46, /* [4287] */ - (xdc_Char)0x61, /* [4288] */ - (xdc_Char)0x75, /* [4289] */ - (xdc_Char)0x6c, /* [4290] */ - (xdc_Char)0x74, /* [4291] */ - (xdc_Char)0x3a, /* [4292] */ - (xdc_Char)0x20, /* [4293] */ - (xdc_Char)0x25, /* [4294] */ - (xdc_Char)0x73, /* [4295] */ - (xdc_Char)0x2c, /* [4296] */ - (xdc_Char)0x20, /* [4297] */ - (xdc_Char)0x61, /* [4298] */ - (xdc_Char)0x64, /* [4299] */ - (xdc_Char)0x64, /* [4300] */ - (xdc_Char)0x72, /* [4301] */ - (xdc_Char)0x65, /* [4302] */ - (xdc_Char)0x73, /* [4303] */ - (xdc_Char)0x73, /* [4304] */ - (xdc_Char)0x3a, /* [4305] */ - (xdc_Char)0x20, /* [4306] */ - (xdc_Char)0x25, /* [4307] */ - (xdc_Char)0x30, /* [4308] */ - (xdc_Char)0x38, /* [4309] */ - (xdc_Char)0x78, /* [4310] */ - (xdc_Char)0x0, /* [4311] */ - (xdc_Char)0x45, /* [4312] */ - (xdc_Char)0x5f, /* [4313] */ - (xdc_Char)0x62, /* [4314] */ - (xdc_Char)0x75, /* [4315] */ - (xdc_Char)0x73, /* [4316] */ - (xdc_Char)0x46, /* [4317] */ - (xdc_Char)0x61, /* [4318] */ - (xdc_Char)0x75, /* [4319] */ - (xdc_Char)0x6c, /* [4320] */ - (xdc_Char)0x74, /* [4321] */ - (xdc_Char)0x3a, /* [4322] */ - (xdc_Char)0x20, /* [4323] */ - (xdc_Char)0x25, /* [4324] */ - (xdc_Char)0x73, /* [4325] */ - (xdc_Char)0x2c, /* [4326] */ - (xdc_Char)0x20, /* [4327] */ - (xdc_Char)0x61, /* [4328] */ - (xdc_Char)0x64, /* [4329] */ - (xdc_Char)0x64, /* [4330] */ - (xdc_Char)0x72, /* [4331] */ - (xdc_Char)0x65, /* [4332] */ - (xdc_Char)0x73, /* [4333] */ - (xdc_Char)0x73, /* [4334] */ - (xdc_Char)0x3a, /* [4335] */ - (xdc_Char)0x20, /* [4336] */ - (xdc_Char)0x25, /* [4337] */ - (xdc_Char)0x30, /* [4338] */ - (xdc_Char)0x38, /* [4339] */ - (xdc_Char)0x78, /* [4340] */ - (xdc_Char)0x0, /* [4341] */ - (xdc_Char)0x45, /* [4342] */ - (xdc_Char)0x5f, /* [4343] */ - (xdc_Char)0x75, /* [4344] */ - (xdc_Char)0x73, /* [4345] */ - (xdc_Char)0x61, /* [4346] */ - (xdc_Char)0x67, /* [4347] */ - (xdc_Char)0x65, /* [4348] */ - (xdc_Char)0x46, /* [4349] */ - (xdc_Char)0x61, /* [4350] */ - (xdc_Char)0x75, /* [4351] */ - (xdc_Char)0x6c, /* [4352] */ - (xdc_Char)0x74, /* [4353] */ - (xdc_Char)0x3a, /* [4354] */ - (xdc_Char)0x20, /* [4355] */ - (xdc_Char)0x25, /* [4356] */ - (xdc_Char)0x73, /* [4357] */ - (xdc_Char)0x0, /* [4358] */ - (xdc_Char)0x45, /* [4359] */ - (xdc_Char)0x5f, /* [4360] */ - (xdc_Char)0x73, /* [4361] */ - (xdc_Char)0x76, /* [4362] */ - (xdc_Char)0x43, /* [4363] */ - (xdc_Char)0x61, /* [4364] */ - (xdc_Char)0x6c, /* [4365] */ - (xdc_Char)0x6c, /* [4366] */ - (xdc_Char)0x3a, /* [4367] */ - (xdc_Char)0x20, /* [4368] */ - (xdc_Char)0x73, /* [4369] */ - (xdc_Char)0x76, /* [4370] */ - (xdc_Char)0x4e, /* [4371] */ - (xdc_Char)0x75, /* [4372] */ - (xdc_Char)0x6d, /* [4373] */ - (xdc_Char)0x20, /* [4374] */ - (xdc_Char)0x3d, /* [4375] */ - (xdc_Char)0x20, /* [4376] */ - (xdc_Char)0x25, /* [4377] */ - (xdc_Char)0x64, /* [4378] */ - (xdc_Char)0x0, /* [4379] */ - (xdc_Char)0x45, /* [4380] */ - (xdc_Char)0x5f, /* [4381] */ - (xdc_Char)0x64, /* [4382] */ - (xdc_Char)0x65, /* [4383] */ - (xdc_Char)0x62, /* [4384] */ - (xdc_Char)0x75, /* [4385] */ - (xdc_Char)0x67, /* [4386] */ - (xdc_Char)0x4d, /* [4387] */ - (xdc_Char)0x6f, /* [4388] */ - (xdc_Char)0x6e, /* [4389] */ - (xdc_Char)0x3a, /* [4390] */ - (xdc_Char)0x20, /* [4391] */ - (xdc_Char)0x25, /* [4392] */ - (xdc_Char)0x73, /* [4393] */ - (xdc_Char)0x0, /* [4394] */ - (xdc_Char)0x45, /* [4395] */ - (xdc_Char)0x5f, /* [4396] */ - (xdc_Char)0x72, /* [4397] */ - (xdc_Char)0x65, /* [4398] */ - (xdc_Char)0x73, /* [4399] */ - (xdc_Char)0x65, /* [4400] */ - (xdc_Char)0x72, /* [4401] */ - (xdc_Char)0x76, /* [4402] */ - (xdc_Char)0x65, /* [4403] */ - (xdc_Char)0x64, /* [4404] */ - (xdc_Char)0x3a, /* [4405] */ - (xdc_Char)0x20, /* [4406] */ - (xdc_Char)0x25, /* [4407] */ - (xdc_Char)0x73, /* [4408] */ - (xdc_Char)0x20, /* [4409] */ - (xdc_Char)0x25, /* [4410] */ - (xdc_Char)0x64, /* [4411] */ - (xdc_Char)0x0, /* [4412] */ - (xdc_Char)0x45, /* [4413] */ - (xdc_Char)0x5f, /* [4414] */ - (xdc_Char)0x69, /* [4415] */ - (xdc_Char)0x6e, /* [4416] */ - (xdc_Char)0x76, /* [4417] */ - (xdc_Char)0x61, /* [4418] */ - (xdc_Char)0x6c, /* [4419] */ - (xdc_Char)0x69, /* [4420] */ - (xdc_Char)0x64, /* [4421] */ - (xdc_Char)0x54, /* [4422] */ - (xdc_Char)0x69, /* [4423] */ - (xdc_Char)0x6d, /* [4424] */ - (xdc_Char)0x65, /* [4425] */ - (xdc_Char)0x72, /* [4426] */ - (xdc_Char)0x3a, /* [4427] */ - (xdc_Char)0x20, /* [4428] */ - (xdc_Char)0x49, /* [4429] */ - (xdc_Char)0x6e, /* [4430] */ - (xdc_Char)0x76, /* [4431] */ - (xdc_Char)0x61, /* [4432] */ - (xdc_Char)0x6c, /* [4433] */ - (xdc_Char)0x69, /* [4434] */ - (xdc_Char)0x64, /* [4435] */ - (xdc_Char)0x20, /* [4436] */ - (xdc_Char)0x54, /* [4437] */ - (xdc_Char)0x69, /* [4438] */ - (xdc_Char)0x6d, /* [4439] */ - (xdc_Char)0x65, /* [4440] */ - (xdc_Char)0x72, /* [4441] */ - (xdc_Char)0x20, /* [4442] */ - (xdc_Char)0x49, /* [4443] */ - (xdc_Char)0x64, /* [4444] */ - (xdc_Char)0x20, /* [4445] */ - (xdc_Char)0x25, /* [4446] */ - (xdc_Char)0x64, /* [4447] */ - (xdc_Char)0x0, /* [4448] */ - (xdc_Char)0x45, /* [4449] */ - (xdc_Char)0x5f, /* [4450] */ - (xdc_Char)0x6e, /* [4451] */ - (xdc_Char)0x6f, /* [4452] */ - (xdc_Char)0x74, /* [4453] */ - (xdc_Char)0x41, /* [4454] */ - (xdc_Char)0x76, /* [4455] */ - (xdc_Char)0x61, /* [4456] */ - (xdc_Char)0x69, /* [4457] */ - (xdc_Char)0x6c, /* [4458] */ - (xdc_Char)0x61, /* [4459] */ - (xdc_Char)0x62, /* [4460] */ - (xdc_Char)0x6c, /* [4461] */ - (xdc_Char)0x65, /* [4462] */ - (xdc_Char)0x3a, /* [4463] */ - (xdc_Char)0x20, /* [4464] */ - (xdc_Char)0x54, /* [4465] */ - (xdc_Char)0x69, /* [4466] */ - (xdc_Char)0x6d, /* [4467] */ - (xdc_Char)0x65, /* [4468] */ - (xdc_Char)0x72, /* [4469] */ - (xdc_Char)0x20, /* [4470] */ - (xdc_Char)0x6e, /* [4471] */ - (xdc_Char)0x6f, /* [4472] */ - (xdc_Char)0x74, /* [4473] */ - (xdc_Char)0x20, /* [4474] */ - (xdc_Char)0x61, /* [4475] */ - (xdc_Char)0x76, /* [4476] */ - (xdc_Char)0x61, /* [4477] */ - (xdc_Char)0x69, /* [4478] */ - (xdc_Char)0x6c, /* [4479] */ - (xdc_Char)0x61, /* [4480] */ - (xdc_Char)0x62, /* [4481] */ - (xdc_Char)0x6c, /* [4482] */ - (xdc_Char)0x65, /* [4483] */ - (xdc_Char)0x20, /* [4484] */ - (xdc_Char)0x25, /* [4485] */ - (xdc_Char)0x64, /* [4486] */ - (xdc_Char)0x0, /* [4487] */ - (xdc_Char)0x45, /* [4488] */ - (xdc_Char)0x5f, /* [4489] */ - (xdc_Char)0x63, /* [4490] */ - (xdc_Char)0x61, /* [4491] */ - (xdc_Char)0x6e, /* [4492] */ - (xdc_Char)0x6e, /* [4493] */ - (xdc_Char)0x6f, /* [4494] */ - (xdc_Char)0x74, /* [4495] */ - (xdc_Char)0x53, /* [4496] */ - (xdc_Char)0x75, /* [4497] */ - (xdc_Char)0x70, /* [4498] */ - (xdc_Char)0x70, /* [4499] */ - (xdc_Char)0x6f, /* [4500] */ - (xdc_Char)0x72, /* [4501] */ - (xdc_Char)0x74, /* [4502] */ - (xdc_Char)0x3a, /* [4503] */ - (xdc_Char)0x20, /* [4504] */ - (xdc_Char)0x54, /* [4505] */ - (xdc_Char)0x69, /* [4506] */ - (xdc_Char)0x6d, /* [4507] */ - (xdc_Char)0x65, /* [4508] */ - (xdc_Char)0x72, /* [4509] */ - (xdc_Char)0x20, /* [4510] */ - (xdc_Char)0x63, /* [4511] */ - (xdc_Char)0x61, /* [4512] */ - (xdc_Char)0x6e, /* [4513] */ - (xdc_Char)0x6e, /* [4514] */ - (xdc_Char)0x6f, /* [4515] */ - (xdc_Char)0x74, /* [4516] */ - (xdc_Char)0x20, /* [4517] */ - (xdc_Char)0x73, /* [4518] */ - (xdc_Char)0x75, /* [4519] */ - (xdc_Char)0x70, /* [4520] */ - (xdc_Char)0x70, /* [4521] */ - (xdc_Char)0x6f, /* [4522] */ - (xdc_Char)0x72, /* [4523] */ - (xdc_Char)0x74, /* [4524] */ - (xdc_Char)0x20, /* [4525] */ - (xdc_Char)0x72, /* [4526] */ - (xdc_Char)0x65, /* [4527] */ - (xdc_Char)0x71, /* [4528] */ - (xdc_Char)0x75, /* [4529] */ - (xdc_Char)0x65, /* [4530] */ - (xdc_Char)0x73, /* [4531] */ - (xdc_Char)0x74, /* [4532] */ - (xdc_Char)0x65, /* [4533] */ - (xdc_Char)0x64, /* [4534] */ - (xdc_Char)0x20, /* [4535] */ - (xdc_Char)0x70, /* [4536] */ - (xdc_Char)0x65, /* [4537] */ - (xdc_Char)0x72, /* [4538] */ - (xdc_Char)0x69, /* [4539] */ - (xdc_Char)0x6f, /* [4540] */ - (xdc_Char)0x64, /* [4541] */ - (xdc_Char)0x20, /* [4542] */ - (xdc_Char)0x25, /* [4543] */ - (xdc_Char)0x64, /* [4544] */ - (xdc_Char)0x0, /* [4545] */ - (xdc_Char)0x45, /* [4546] */ - (xdc_Char)0x5f, /* [4547] */ - (xdc_Char)0x73, /* [4548] */ - (xdc_Char)0x74, /* [4549] */ - (xdc_Char)0x61, /* [4550] */ - (xdc_Char)0x63, /* [4551] */ - (xdc_Char)0x6b, /* [4552] */ - (xdc_Char)0x4f, /* [4553] */ - (xdc_Char)0x76, /* [4554] */ - (xdc_Char)0x65, /* [4555] */ - (xdc_Char)0x72, /* [4556] */ - (xdc_Char)0x66, /* [4557] */ - (xdc_Char)0x6c, /* [4558] */ - (xdc_Char)0x6f, /* [4559] */ - (xdc_Char)0x77, /* [4560] */ - (xdc_Char)0x3a, /* [4561] */ - (xdc_Char)0x20, /* [4562] */ - (xdc_Char)0x54, /* [4563] */ - (xdc_Char)0x61, /* [4564] */ - (xdc_Char)0x73, /* [4565] */ - (xdc_Char)0x6b, /* [4566] */ - (xdc_Char)0x20, /* [4567] */ - (xdc_Char)0x30, /* [4568] */ - (xdc_Char)0x78, /* [4569] */ - (xdc_Char)0x25, /* [4570] */ - (xdc_Char)0x78, /* [4571] */ - (xdc_Char)0x20, /* [4572] */ - (xdc_Char)0x73, /* [4573] */ - (xdc_Char)0x74, /* [4574] */ - (xdc_Char)0x61, /* [4575] */ - (xdc_Char)0x63, /* [4576] */ - (xdc_Char)0x6b, /* [4577] */ - (xdc_Char)0x20, /* [4578] */ - (xdc_Char)0x6f, /* [4579] */ - (xdc_Char)0x76, /* [4580] */ - (xdc_Char)0x65, /* [4581] */ - (xdc_Char)0x72, /* [4582] */ - (xdc_Char)0x66, /* [4583] */ - (xdc_Char)0x6c, /* [4584] */ - (xdc_Char)0x6f, /* [4585] */ - (xdc_Char)0x77, /* [4586] */ - (xdc_Char)0x2e, /* [4587] */ - (xdc_Char)0x0, /* [4588] */ - (xdc_Char)0x45, /* [4589] */ - (xdc_Char)0x5f, /* [4590] */ - (xdc_Char)0x73, /* [4591] */ - (xdc_Char)0x70, /* [4592] */ - (xdc_Char)0x4f, /* [4593] */ - (xdc_Char)0x75, /* [4594] */ - (xdc_Char)0x74, /* [4595] */ - (xdc_Char)0x4f, /* [4596] */ - (xdc_Char)0x66, /* [4597] */ - (xdc_Char)0x42, /* [4598] */ - (xdc_Char)0x6f, /* [4599] */ - (xdc_Char)0x75, /* [4600] */ - (xdc_Char)0x6e, /* [4601] */ - (xdc_Char)0x64, /* [4602] */ - (xdc_Char)0x73, /* [4603] */ - (xdc_Char)0x3a, /* [4604] */ - (xdc_Char)0x20, /* [4605] */ - (xdc_Char)0x54, /* [4606] */ - (xdc_Char)0x61, /* [4607] */ - (xdc_Char)0x73, /* [4608] */ - (xdc_Char)0x6b, /* [4609] */ - (xdc_Char)0x20, /* [4610] */ - (xdc_Char)0x30, /* [4611] */ - (xdc_Char)0x78, /* [4612] */ - (xdc_Char)0x25, /* [4613] */ - (xdc_Char)0x78, /* [4614] */ - (xdc_Char)0x20, /* [4615] */ - (xdc_Char)0x73, /* [4616] */ - (xdc_Char)0x74, /* [4617] */ - (xdc_Char)0x61, /* [4618] */ - (xdc_Char)0x63, /* [4619] */ - (xdc_Char)0x6b, /* [4620] */ - (xdc_Char)0x20, /* [4621] */ - (xdc_Char)0x65, /* [4622] */ - (xdc_Char)0x72, /* [4623] */ - (xdc_Char)0x72, /* [4624] */ - (xdc_Char)0x6f, /* [4625] */ - (xdc_Char)0x72, /* [4626] */ - (xdc_Char)0x2c, /* [4627] */ - (xdc_Char)0x20, /* [4628] */ - (xdc_Char)0x53, /* [4629] */ - (xdc_Char)0x50, /* [4630] */ - (xdc_Char)0x20, /* [4631] */ - (xdc_Char)0x3d, /* [4632] */ - (xdc_Char)0x20, /* [4633] */ - (xdc_Char)0x30, /* [4634] */ - (xdc_Char)0x78, /* [4635] */ - (xdc_Char)0x25, /* [4636] */ - (xdc_Char)0x78, /* [4637] */ - (xdc_Char)0x2e, /* [4638] */ - (xdc_Char)0x0, /* [4639] */ - (xdc_Char)0x45, /* [4640] */ - (xdc_Char)0x5f, /* [4641] */ - (xdc_Char)0x64, /* [4642] */ - (xdc_Char)0x65, /* [4643] */ - (xdc_Char)0x6c, /* [4644] */ - (xdc_Char)0x65, /* [4645] */ - (xdc_Char)0x74, /* [4646] */ - (xdc_Char)0x65, /* [4647] */ - (xdc_Char)0x4e, /* [4648] */ - (xdc_Char)0x6f, /* [4649] */ - (xdc_Char)0x74, /* [4650] */ - (xdc_Char)0x41, /* [4651] */ - (xdc_Char)0x6c, /* [4652] */ - (xdc_Char)0x6c, /* [4653] */ - (xdc_Char)0x6f, /* [4654] */ - (xdc_Char)0x77, /* [4655] */ - (xdc_Char)0x65, /* [4656] */ - (xdc_Char)0x64, /* [4657] */ - (xdc_Char)0x3a, /* [4658] */ - (xdc_Char)0x20, /* [4659] */ - (xdc_Char)0x54, /* [4660] */ - (xdc_Char)0x61, /* [4661] */ - (xdc_Char)0x73, /* [4662] */ - (xdc_Char)0x6b, /* [4663] */ - (xdc_Char)0x20, /* [4664] */ - (xdc_Char)0x30, /* [4665] */ - (xdc_Char)0x78, /* [4666] */ - (xdc_Char)0x25, /* [4667] */ - (xdc_Char)0x78, /* [4668] */ - (xdc_Char)0x2e, /* [4669] */ - (xdc_Char)0x0, /* [4670] */ - (xdc_Char)0x45, /* [4671] */ - (xdc_Char)0x5f, /* [4672] */ - (xdc_Char)0x73, /* [4673] */ - (xdc_Char)0x74, /* [4674] */ - (xdc_Char)0x61, /* [4675] */ - (xdc_Char)0x63, /* [4676] */ - (xdc_Char)0x6b, /* [4677] */ - (xdc_Char)0x4f, /* [4678] */ - (xdc_Char)0x76, /* [4679] */ - (xdc_Char)0x65, /* [4680] */ - (xdc_Char)0x72, /* [4681] */ - (xdc_Char)0x66, /* [4682] */ - (xdc_Char)0x6c, /* [4683] */ - (xdc_Char)0x6f, /* [4684] */ - (xdc_Char)0x77, /* [4685] */ - (xdc_Char)0x3a, /* [4686] */ - (xdc_Char)0x20, /* [4687] */ - (xdc_Char)0x49, /* [4688] */ - (xdc_Char)0x53, /* [4689] */ - (xdc_Char)0x52, /* [4690] */ - (xdc_Char)0x20, /* [4691] */ - (xdc_Char)0x73, /* [4692] */ - (xdc_Char)0x74, /* [4693] */ - (xdc_Char)0x61, /* [4694] */ - (xdc_Char)0x63, /* [4695] */ - (xdc_Char)0x6b, /* [4696] */ - (xdc_Char)0x20, /* [4697] */ - (xdc_Char)0x6f, /* [4698] */ - (xdc_Char)0x76, /* [4699] */ - (xdc_Char)0x65, /* [4700] */ - (xdc_Char)0x72, /* [4701] */ - (xdc_Char)0x66, /* [4702] */ - (xdc_Char)0x6c, /* [4703] */ - (xdc_Char)0x6f, /* [4704] */ - (xdc_Char)0x77, /* [4705] */ - (xdc_Char)0x2e, /* [4706] */ - (xdc_Char)0x0, /* [4707] */ - (xdc_Char)0x45, /* [4708] */ - (xdc_Char)0x5f, /* [4709] */ - (xdc_Char)0x6e, /* [4710] */ - (xdc_Char)0x6f, /* [4711] */ - (xdc_Char)0x61, /* [4712] */ - (xdc_Char)0x6c, /* [4713] */ - (xdc_Char)0x74, /* [4714] */ - (xdc_Char)0x63, /* [4715] */ - (xdc_Char)0x6c, /* [4716] */ - (xdc_Char)0x6b, /* [4717] */ - (xdc_Char)0x3a, /* [4718] */ - (xdc_Char)0x20, /* [4719] */ - (xdc_Char)0x54, /* [4720] */ - (xdc_Char)0x69, /* [4721] */ - (xdc_Char)0x6d, /* [4722] */ - (xdc_Char)0x65, /* [4723] */ - (xdc_Char)0x72, /* [4724] */ - (xdc_Char)0x20, /* [4725] */ - (xdc_Char)0x64, /* [4726] */ - (xdc_Char)0x6f, /* [4727] */ - (xdc_Char)0x65, /* [4728] */ - (xdc_Char)0x73, /* [4729] */ - (xdc_Char)0x20, /* [4730] */ - (xdc_Char)0x6e, /* [4731] */ - (xdc_Char)0x6f, /* [4732] */ - (xdc_Char)0x74, /* [4733] */ - (xdc_Char)0x20, /* [4734] */ - (xdc_Char)0x73, /* [4735] */ - (xdc_Char)0x75, /* [4736] */ - (xdc_Char)0x70, /* [4737] */ - (xdc_Char)0x70, /* [4738] */ - (xdc_Char)0x6f, /* [4739] */ - (xdc_Char)0x72, /* [4740] */ - (xdc_Char)0x74, /* [4741] */ - (xdc_Char)0x20, /* [4742] */ - (xdc_Char)0x61, /* [4743] */ - (xdc_Char)0x6c, /* [4744] */ - (xdc_Char)0x74, /* [4745] */ - (xdc_Char)0x63, /* [4746] */ - (xdc_Char)0x6c, /* [4747] */ - (xdc_Char)0x6b, /* [4748] */ - (xdc_Char)0x0, /* [4749] */ - (xdc_Char)0x45, /* [4750] */ - (xdc_Char)0x5f, /* [4751] */ - (xdc_Char)0x6e, /* [4752] */ - (xdc_Char)0x6f, /* [4753] */ - (xdc_Char)0x74, /* [4754] */ - (xdc_Char)0x46, /* [4755] */ - (xdc_Char)0x6f, /* [4756] */ - (xdc_Char)0x75, /* [4757] */ - (xdc_Char)0x6e, /* [4758] */ - (xdc_Char)0x64, /* [4759] */ - (xdc_Char)0x3a, /* [4760] */ - (xdc_Char)0x20, /* [4761] */ - (xdc_Char)0x25, /* [4762] */ - (xdc_Char)0x73, /* [4763] */ - (xdc_Char)0x20, /* [4764] */ - (xdc_Char)0x6e, /* [4765] */ - (xdc_Char)0x61, /* [4766] */ - (xdc_Char)0x6d, /* [4767] */ - (xdc_Char)0x65, /* [4768] */ - (xdc_Char)0x20, /* [4769] */ - (xdc_Char)0x6e, /* [4770] */ - (xdc_Char)0x6f, /* [4771] */ - (xdc_Char)0x74, /* [4772] */ - (xdc_Char)0x20, /* [4773] */ - (xdc_Char)0x66, /* [4774] */ - (xdc_Char)0x6f, /* [4775] */ - (xdc_Char)0x75, /* [4776] */ - (xdc_Char)0x6e, /* [4777] */ - (xdc_Char)0x64, /* [4778] */ - (xdc_Char)0x0, /* [4779] */ - (xdc_Char)0x45, /* [4780] */ - (xdc_Char)0x5f, /* [4781] */ - (xdc_Char)0x63, /* [4782] */ - (xdc_Char)0x72, /* [4783] */ - (xdc_Char)0x65, /* [4784] */ - (xdc_Char)0x61, /* [4785] */ - (xdc_Char)0x74, /* [4786] */ - (xdc_Char)0x65, /* [4787] */ - (xdc_Char)0x46, /* [4788] */ - (xdc_Char)0x61, /* [4789] */ - (xdc_Char)0x69, /* [4790] */ - (xdc_Char)0x6c, /* [4791] */ - (xdc_Char)0x65, /* [4792] */ - (xdc_Char)0x64, /* [4793] */ - (xdc_Char)0x3a, /* [4794] */ - (xdc_Char)0x20, /* [4795] */ - (xdc_Char)0x6d, /* [4796] */ - (xdc_Char)0x64, /* [4797] */ - (xdc_Char)0x43, /* [4798] */ - (xdc_Char)0x72, /* [4799] */ - (xdc_Char)0x65, /* [4800] */ - (xdc_Char)0x61, /* [4801] */ - (xdc_Char)0x74, /* [4802] */ - (xdc_Char)0x65, /* [4803] */ - (xdc_Char)0x43, /* [4804] */ - (xdc_Char)0x68, /* [4805] */ - (xdc_Char)0x61, /* [4806] */ - (xdc_Char)0x6e, /* [4807] */ - (xdc_Char)0x20, /* [4808] */ - (xdc_Char)0x72, /* [4809] */ - (xdc_Char)0x65, /* [4810] */ - (xdc_Char)0x74, /* [4811] */ - (xdc_Char)0x75, /* [4812] */ - (xdc_Char)0x72, /* [4813] */ - (xdc_Char)0x6e, /* [4814] */ - (xdc_Char)0x65, /* [4815] */ - (xdc_Char)0x64, /* [4816] */ - (xdc_Char)0x20, /* [4817] */ - (xdc_Char)0x65, /* [4818] */ - (xdc_Char)0x72, /* [4819] */ - (xdc_Char)0x72, /* [4820] */ - (xdc_Char)0x6f, /* [4821] */ - (xdc_Char)0x72, /* [4822] */ - (xdc_Char)0x20, /* [4823] */ - (xdc_Char)0x25, /* [4824] */ - (xdc_Char)0x64, /* [4825] */ - (xdc_Char)0x0, /* [4826] */ - (xdc_Char)0x45, /* [4827] */ - (xdc_Char)0x5f, /* [4828] */ - (xdc_Char)0x70, /* [4829] */ - (xdc_Char)0x72, /* [4830] */ - (xdc_Char)0x69, /* [4831] */ - (xdc_Char)0x6f, /* [4832] */ - (xdc_Char)0x72, /* [4833] */ - (xdc_Char)0x69, /* [4834] */ - (xdc_Char)0x74, /* [4835] */ - (xdc_Char)0x79, /* [4836] */ - (xdc_Char)0x3a, /* [4837] */ - (xdc_Char)0x20, /* [4838] */ - (xdc_Char)0x54, /* [4839] */ - (xdc_Char)0x68, /* [4840] */ - (xdc_Char)0x72, /* [4841] */ - (xdc_Char)0x65, /* [4842] */ - (xdc_Char)0x61, /* [4843] */ - (xdc_Char)0x64, /* [4844] */ - (xdc_Char)0x20, /* [4845] */ - (xdc_Char)0x70, /* [4846] */ - (xdc_Char)0x72, /* [4847] */ - (xdc_Char)0x69, /* [4848] */ - (xdc_Char)0x6f, /* [4849] */ - (xdc_Char)0x72, /* [4850] */ - (xdc_Char)0x69, /* [4851] */ - (xdc_Char)0x74, /* [4852] */ - (xdc_Char)0x79, /* [4853] */ - (xdc_Char)0x20, /* [4854] */ - (xdc_Char)0x69, /* [4855] */ - (xdc_Char)0x73, /* [4856] */ - (xdc_Char)0x20, /* [4857] */ - (xdc_Char)0x69, /* [4858] */ - (xdc_Char)0x6e, /* [4859] */ - (xdc_Char)0x76, /* [4860] */ - (xdc_Char)0x61, /* [4861] */ - (xdc_Char)0x6c, /* [4862] */ - (xdc_Char)0x69, /* [4863] */ - (xdc_Char)0x64, /* [4864] */ - (xdc_Char)0x20, /* [4865] */ - (xdc_Char)0x25, /* [4866] */ - (xdc_Char)0x64, /* [4867] */ - (xdc_Char)0x0, /* [4868] */ - (xdc_Char)0x72, /* [4869] */ - (xdc_Char)0x65, /* [4870] */ - (xdc_Char)0x71, /* [4871] */ - (xdc_Char)0x75, /* [4872] */ - (xdc_Char)0x65, /* [4873] */ - (xdc_Char)0x73, /* [4874] */ - (xdc_Char)0x74, /* [4875] */ - (xdc_Char)0x65, /* [4876] */ - (xdc_Char)0x64, /* [4877] */ - (xdc_Char)0x20, /* [4878] */ - (xdc_Char)0x73, /* [4879] */ - (xdc_Char)0x69, /* [4880] */ - (xdc_Char)0x7a, /* [4881] */ - (xdc_Char)0x65, /* [4882] */ - (xdc_Char)0x20, /* [4883] */ - (xdc_Char)0x69, /* [4884] */ - (xdc_Char)0x73, /* [4885] */ - (xdc_Char)0x20, /* [4886] */ - (xdc_Char)0x74, /* [4887] */ - (xdc_Char)0x6f, /* [4888] */ - (xdc_Char)0x6f, /* [4889] */ - (xdc_Char)0x20, /* [4890] */ - (xdc_Char)0x62, /* [4891] */ - (xdc_Char)0x69, /* [4892] */ - (xdc_Char)0x67, /* [4893] */ - (xdc_Char)0x3a, /* [4894] */ - (xdc_Char)0x20, /* [4895] */ - (xdc_Char)0x68, /* [4896] */ - (xdc_Char)0x61, /* [4897] */ - (xdc_Char)0x6e, /* [4898] */ - (xdc_Char)0x64, /* [4899] */ - (xdc_Char)0x6c, /* [4900] */ - (xdc_Char)0x65, /* [4901] */ - (xdc_Char)0x3d, /* [4902] */ - (xdc_Char)0x30, /* [4903] */ - (xdc_Char)0x78, /* [4904] */ - (xdc_Char)0x25, /* [4905] */ - (xdc_Char)0x78, /* [4906] */ - (xdc_Char)0x2c, /* [4907] */ - (xdc_Char)0x20, /* [4908] */ - (xdc_Char)0x73, /* [4909] */ - (xdc_Char)0x69, /* [4910] */ - (xdc_Char)0x7a, /* [4911] */ - (xdc_Char)0x65, /* [4912] */ - (xdc_Char)0x3d, /* [4913] */ - (xdc_Char)0x25, /* [4914] */ - (xdc_Char)0x75, /* [4915] */ - (xdc_Char)0x0, /* [4916] */ - (xdc_Char)0x6f, /* [4917] */ - (xdc_Char)0x75, /* [4918] */ - (xdc_Char)0x74, /* [4919] */ - (xdc_Char)0x20, /* [4920] */ - (xdc_Char)0x6f, /* [4921] */ - (xdc_Char)0x66, /* [4922] */ - (xdc_Char)0x20, /* [4923] */ - (xdc_Char)0x6d, /* [4924] */ - (xdc_Char)0x65, /* [4925] */ - (xdc_Char)0x6d, /* [4926] */ - (xdc_Char)0x6f, /* [4927] */ - (xdc_Char)0x72, /* [4928] */ - (xdc_Char)0x79, /* [4929] */ - (xdc_Char)0x3a, /* [4930] */ - (xdc_Char)0x20, /* [4931] */ - (xdc_Char)0x68, /* [4932] */ - (xdc_Char)0x61, /* [4933] */ - (xdc_Char)0x6e, /* [4934] */ - (xdc_Char)0x64, /* [4935] */ - (xdc_Char)0x6c, /* [4936] */ - (xdc_Char)0x65, /* [4937] */ - (xdc_Char)0x3d, /* [4938] */ - (xdc_Char)0x30, /* [4939] */ - (xdc_Char)0x78, /* [4940] */ - (xdc_Char)0x25, /* [4941] */ - (xdc_Char)0x78, /* [4942] */ - (xdc_Char)0x2c, /* [4943] */ - (xdc_Char)0x20, /* [4944] */ - (xdc_Char)0x73, /* [4945] */ - (xdc_Char)0x69, /* [4946] */ - (xdc_Char)0x7a, /* [4947] */ - (xdc_Char)0x65, /* [4948] */ - (xdc_Char)0x3d, /* [4949] */ - (xdc_Char)0x25, /* [4950] */ - (xdc_Char)0x75, /* [4951] */ - (xdc_Char)0x0, /* [4952] */ - (xdc_Char)0x3c, /* [4953] */ - (xdc_Char)0x2d, /* [4954] */ - (xdc_Char)0x2d, /* [4955] */ - (xdc_Char)0x20, /* [4956] */ - (xdc_Char)0x63, /* [4957] */ - (xdc_Char)0x6f, /* [4958] */ - (xdc_Char)0x6e, /* [4959] */ - (xdc_Char)0x73, /* [4960] */ - (xdc_Char)0x74, /* [4961] */ - (xdc_Char)0x72, /* [4962] */ - (xdc_Char)0x75, /* [4963] */ - (xdc_Char)0x63, /* [4964] */ - (xdc_Char)0x74, /* [4965] */ - (xdc_Char)0x3a, /* [4966] */ - (xdc_Char)0x20, /* [4967] */ - (xdc_Char)0x25, /* [4968] */ - (xdc_Char)0x70, /* [4969] */ - (xdc_Char)0x28, /* [4970] */ - (xdc_Char)0x27, /* [4971] */ - (xdc_Char)0x25, /* [4972] */ - (xdc_Char)0x73, /* [4973] */ - (xdc_Char)0x27, /* [4974] */ - (xdc_Char)0x29, /* [4975] */ - (xdc_Char)0x0, /* [4976] */ - (xdc_Char)0x3c, /* [4977] */ - (xdc_Char)0x2d, /* [4978] */ - (xdc_Char)0x2d, /* [4979] */ - (xdc_Char)0x20, /* [4980] */ - (xdc_Char)0x63, /* [4981] */ - (xdc_Char)0x72, /* [4982] */ - (xdc_Char)0x65, /* [4983] */ - (xdc_Char)0x61, /* [4984] */ - (xdc_Char)0x74, /* [4985] */ - (xdc_Char)0x65, /* [4986] */ - (xdc_Char)0x3a, /* [4987] */ - (xdc_Char)0x20, /* [4988] */ - (xdc_Char)0x25, /* [4989] */ - (xdc_Char)0x70, /* [4990] */ - (xdc_Char)0x28, /* [4991] */ - (xdc_Char)0x27, /* [4992] */ - (xdc_Char)0x25, /* [4993] */ - (xdc_Char)0x73, /* [4994] */ - (xdc_Char)0x27, /* [4995] */ - (xdc_Char)0x29, /* [4996] */ - (xdc_Char)0x0, /* [4997] */ - (xdc_Char)0x2d, /* [4998] */ - (xdc_Char)0x2d, /* [4999] */ - (xdc_Char)0x3e, /* [5000] */ - (xdc_Char)0x20, /* [5001] */ - (xdc_Char)0x64, /* [5002] */ - (xdc_Char)0x65, /* [5003] */ - (xdc_Char)0x73, /* [5004] */ - (xdc_Char)0x74, /* [5005] */ - (xdc_Char)0x72, /* [5006] */ - (xdc_Char)0x75, /* [5007] */ - (xdc_Char)0x63, /* [5008] */ - (xdc_Char)0x74, /* [5009] */ - (xdc_Char)0x3a, /* [5010] */ - (xdc_Char)0x20, /* [5011] */ - (xdc_Char)0x28, /* [5012] */ - (xdc_Char)0x25, /* [5013] */ - (xdc_Char)0x70, /* [5014] */ - (xdc_Char)0x29, /* [5015] */ - (xdc_Char)0x0, /* [5016] */ - (xdc_Char)0x2d, /* [5017] */ - (xdc_Char)0x2d, /* [5018] */ - (xdc_Char)0x3e, /* [5019] */ - (xdc_Char)0x20, /* [5020] */ - (xdc_Char)0x64, /* [5021] */ - (xdc_Char)0x65, /* [5022] */ - (xdc_Char)0x6c, /* [5023] */ - (xdc_Char)0x65, /* [5024] */ - (xdc_Char)0x74, /* [5025] */ - (xdc_Char)0x65, /* [5026] */ - (xdc_Char)0x3a, /* [5027] */ - (xdc_Char)0x20, /* [5028] */ - (xdc_Char)0x28, /* [5029] */ - (xdc_Char)0x25, /* [5030] */ - (xdc_Char)0x70, /* [5031] */ - (xdc_Char)0x29, /* [5032] */ - (xdc_Char)0x0, /* [5033] */ - (xdc_Char)0x45, /* [5034] */ - (xdc_Char)0x52, /* [5035] */ - (xdc_Char)0x52, /* [5036] */ - (xdc_Char)0x4f, /* [5037] */ - (xdc_Char)0x52, /* [5038] */ - (xdc_Char)0x3a, /* [5039] */ - (xdc_Char)0x20, /* [5040] */ - (xdc_Char)0x25, /* [5041] */ - (xdc_Char)0x24, /* [5042] */ - (xdc_Char)0x46, /* [5043] */ - (xdc_Char)0x25, /* [5044] */ - (xdc_Char)0x24, /* [5045] */ - (xdc_Char)0x53, /* [5046] */ - (xdc_Char)0x0, /* [5047] */ - (xdc_Char)0x57, /* [5048] */ - (xdc_Char)0x41, /* [5049] */ - (xdc_Char)0x52, /* [5050] */ - (xdc_Char)0x4e, /* [5051] */ - (xdc_Char)0x49, /* [5052] */ - (xdc_Char)0x4e, /* [5053] */ - (xdc_Char)0x47, /* [5054] */ - (xdc_Char)0x3a, /* [5055] */ - (xdc_Char)0x20, /* [5056] */ - (xdc_Char)0x25, /* [5057] */ - (xdc_Char)0x24, /* [5058] */ - (xdc_Char)0x46, /* [5059] */ - (xdc_Char)0x25, /* [5060] */ - (xdc_Char)0x24, /* [5061] */ - (xdc_Char)0x53, /* [5062] */ - (xdc_Char)0x0, /* [5063] */ - (xdc_Char)0x25, /* [5064] */ - (xdc_Char)0x24, /* [5065] */ - (xdc_Char)0x46, /* [5066] */ - (xdc_Char)0x25, /* [5067] */ - (xdc_Char)0x24, /* [5068] */ - (xdc_Char)0x53, /* [5069] */ - (xdc_Char)0x0, /* [5070] */ - (xdc_Char)0x53, /* [5071] */ - (xdc_Char)0x74, /* [5072] */ - (xdc_Char)0x61, /* [5073] */ - (xdc_Char)0x72, /* [5074] */ - (xdc_Char)0x74, /* [5075] */ - (xdc_Char)0x3a, /* [5076] */ - (xdc_Char)0x20, /* [5077] */ - (xdc_Char)0x25, /* [5078] */ - (xdc_Char)0x24, /* [5079] */ - (xdc_Char)0x53, /* [5080] */ - (xdc_Char)0x0, /* [5081] */ - (xdc_Char)0x53, /* [5082] */ - (xdc_Char)0x74, /* [5083] */ - (xdc_Char)0x6f, /* [5084] */ - (xdc_Char)0x70, /* [5085] */ - (xdc_Char)0x3a, /* [5086] */ - (xdc_Char)0x20, /* [5087] */ - (xdc_Char)0x25, /* [5088] */ - (xdc_Char)0x24, /* [5089] */ - (xdc_Char)0x53, /* [5090] */ - (xdc_Char)0x0, /* [5091] */ - (xdc_Char)0x53, /* [5092] */ - (xdc_Char)0x74, /* [5093] */ - (xdc_Char)0x61, /* [5094] */ - (xdc_Char)0x72, /* [5095] */ - (xdc_Char)0x74, /* [5096] */ - (xdc_Char)0x49, /* [5097] */ - (xdc_Char)0x6e, /* [5098] */ - (xdc_Char)0x73, /* [5099] */ - (xdc_Char)0x74, /* [5100] */ - (xdc_Char)0x61, /* [5101] */ - (xdc_Char)0x6e, /* [5102] */ - (xdc_Char)0x63, /* [5103] */ - (xdc_Char)0x65, /* [5104] */ - (xdc_Char)0x3a, /* [5105] */ - (xdc_Char)0x20, /* [5106] */ - (xdc_Char)0x25, /* [5107] */ - (xdc_Char)0x24, /* [5108] */ - (xdc_Char)0x53, /* [5109] */ - (xdc_Char)0x0, /* [5110] */ - (xdc_Char)0x53, /* [5111] */ - (xdc_Char)0x74, /* [5112] */ - (xdc_Char)0x6f, /* [5113] */ - (xdc_Char)0x70, /* [5114] */ - (xdc_Char)0x49, /* [5115] */ - (xdc_Char)0x6e, /* [5116] */ - (xdc_Char)0x73, /* [5117] */ - (xdc_Char)0x74, /* [5118] */ - (xdc_Char)0x61, /* [5119] */ - (xdc_Char)0x6e, /* [5120] */ - (xdc_Char)0x63, /* [5121] */ - (xdc_Char)0x65, /* [5122] */ - (xdc_Char)0x3a, /* [5123] */ - (xdc_Char)0x20, /* [5124] */ - (xdc_Char)0x25, /* [5125] */ - (xdc_Char)0x24, /* [5126] */ - (xdc_Char)0x53, /* [5127] */ - (xdc_Char)0x0, /* [5128] */ - (xdc_Char)0x4c, /* [5129] */ - (xdc_Char)0x4d, /* [5130] */ - (xdc_Char)0x5f, /* [5131] */ - (xdc_Char)0x62, /* [5132] */ - (xdc_Char)0x65, /* [5133] */ - (xdc_Char)0x67, /* [5134] */ - (xdc_Char)0x69, /* [5135] */ - (xdc_Char)0x6e, /* [5136] */ - (xdc_Char)0x3a, /* [5137] */ - (xdc_Char)0x20, /* [5138] */ - (xdc_Char)0x68, /* [5139] */ - (xdc_Char)0x77, /* [5140] */ - (xdc_Char)0x69, /* [5141] */ - (xdc_Char)0x3a, /* [5142] */ - (xdc_Char)0x20, /* [5143] */ - (xdc_Char)0x30, /* [5144] */ - (xdc_Char)0x78, /* [5145] */ - (xdc_Char)0x25, /* [5146] */ - (xdc_Char)0x78, /* [5147] */ - (xdc_Char)0x2c, /* [5148] */ - (xdc_Char)0x20, /* [5149] */ - (xdc_Char)0x66, /* [5150] */ - (xdc_Char)0x75, /* [5151] */ - (xdc_Char)0x6e, /* [5152] */ - (xdc_Char)0x63, /* [5153] */ - (xdc_Char)0x3a, /* [5154] */ - (xdc_Char)0x20, /* [5155] */ - (xdc_Char)0x30, /* [5156] */ - (xdc_Char)0x78, /* [5157] */ - (xdc_Char)0x25, /* [5158] */ - (xdc_Char)0x78, /* [5159] */ - (xdc_Char)0x2c, /* [5160] */ - (xdc_Char)0x20, /* [5161] */ - (xdc_Char)0x70, /* [5162] */ - (xdc_Char)0x72, /* [5163] */ - (xdc_Char)0x65, /* [5164] */ - (xdc_Char)0x54, /* [5165] */ - (xdc_Char)0x68, /* [5166] */ - (xdc_Char)0x72, /* [5167] */ - (xdc_Char)0x65, /* [5168] */ - (xdc_Char)0x61, /* [5169] */ - (xdc_Char)0x64, /* [5170] */ - (xdc_Char)0x3a, /* [5171] */ - (xdc_Char)0x20, /* [5172] */ - (xdc_Char)0x25, /* [5173] */ - (xdc_Char)0x64, /* [5174] */ - (xdc_Char)0x2c, /* [5175] */ - (xdc_Char)0x20, /* [5176] */ - (xdc_Char)0x69, /* [5177] */ - (xdc_Char)0x6e, /* [5178] */ - (xdc_Char)0x74, /* [5179] */ - (xdc_Char)0x4e, /* [5180] */ - (xdc_Char)0x75, /* [5181] */ - (xdc_Char)0x6d, /* [5182] */ - (xdc_Char)0x3a, /* [5183] */ - (xdc_Char)0x20, /* [5184] */ - (xdc_Char)0x25, /* [5185] */ - (xdc_Char)0x64, /* [5186] */ - (xdc_Char)0x2c, /* [5187] */ - (xdc_Char)0x20, /* [5188] */ - (xdc_Char)0x69, /* [5189] */ - (xdc_Char)0x72, /* [5190] */ - (xdc_Char)0x70, /* [5191] */ - (xdc_Char)0x3a, /* [5192] */ - (xdc_Char)0x20, /* [5193] */ - (xdc_Char)0x30, /* [5194] */ - (xdc_Char)0x78, /* [5195] */ - (xdc_Char)0x25, /* [5196] */ - (xdc_Char)0x78, /* [5197] */ - (xdc_Char)0x0, /* [5198] */ - (xdc_Char)0x4c, /* [5199] */ - (xdc_Char)0x44, /* [5200] */ - (xdc_Char)0x5f, /* [5201] */ - (xdc_Char)0x65, /* [5202] */ - (xdc_Char)0x6e, /* [5203] */ - (xdc_Char)0x64, /* [5204] */ - (xdc_Char)0x3a, /* [5205] */ - (xdc_Char)0x20, /* [5206] */ - (xdc_Char)0x68, /* [5207] */ - (xdc_Char)0x77, /* [5208] */ - (xdc_Char)0x69, /* [5209] */ - (xdc_Char)0x3a, /* [5210] */ - (xdc_Char)0x20, /* [5211] */ - (xdc_Char)0x30, /* [5212] */ - (xdc_Char)0x78, /* [5213] */ - (xdc_Char)0x25, /* [5214] */ - (xdc_Char)0x78, /* [5215] */ - (xdc_Char)0x0, /* [5216] */ - (xdc_Char)0x4c, /* [5217] */ - (xdc_Char)0x57, /* [5218] */ - (xdc_Char)0x5f, /* [5219] */ - (xdc_Char)0x64, /* [5220] */ - (xdc_Char)0x65, /* [5221] */ - (xdc_Char)0x6c, /* [5222] */ - (xdc_Char)0x61, /* [5223] */ - (xdc_Char)0x79, /* [5224] */ - (xdc_Char)0x65, /* [5225] */ - (xdc_Char)0x64, /* [5226] */ - (xdc_Char)0x3a, /* [5227] */ - (xdc_Char)0x20, /* [5228] */ - (xdc_Char)0x64, /* [5229] */ - (xdc_Char)0x65, /* [5230] */ - (xdc_Char)0x6c, /* [5231] */ - (xdc_Char)0x61, /* [5232] */ - (xdc_Char)0x79, /* [5233] */ - (xdc_Char)0x3a, /* [5234] */ - (xdc_Char)0x20, /* [5235] */ - (xdc_Char)0x25, /* [5236] */ - (xdc_Char)0x64, /* [5237] */ - (xdc_Char)0x0, /* [5238] */ - (xdc_Char)0x4c, /* [5239] */ - (xdc_Char)0x4d, /* [5240] */ - (xdc_Char)0x5f, /* [5241] */ - (xdc_Char)0x74, /* [5242] */ - (xdc_Char)0x69, /* [5243] */ - (xdc_Char)0x63, /* [5244] */ - (xdc_Char)0x6b, /* [5245] */ - (xdc_Char)0x3a, /* [5246] */ - (xdc_Char)0x20, /* [5247] */ - (xdc_Char)0x74, /* [5248] */ - (xdc_Char)0x69, /* [5249] */ - (xdc_Char)0x63, /* [5250] */ - (xdc_Char)0x6b, /* [5251] */ - (xdc_Char)0x3a, /* [5252] */ - (xdc_Char)0x20, /* [5253] */ - (xdc_Char)0x25, /* [5254] */ - (xdc_Char)0x64, /* [5255] */ - (xdc_Char)0x0, /* [5256] */ - (xdc_Char)0x4c, /* [5257] */ - (xdc_Char)0x4d, /* [5258] */ - (xdc_Char)0x5f, /* [5259] */ - (xdc_Char)0x62, /* [5260] */ - (xdc_Char)0x65, /* [5261] */ - (xdc_Char)0x67, /* [5262] */ - (xdc_Char)0x69, /* [5263] */ - (xdc_Char)0x6e, /* [5264] */ - (xdc_Char)0x3a, /* [5265] */ - (xdc_Char)0x20, /* [5266] */ - (xdc_Char)0x63, /* [5267] */ - (xdc_Char)0x6c, /* [5268] */ - (xdc_Char)0x6b, /* [5269] */ - (xdc_Char)0x3a, /* [5270] */ - (xdc_Char)0x20, /* [5271] */ - (xdc_Char)0x30, /* [5272] */ - (xdc_Char)0x78, /* [5273] */ - (xdc_Char)0x25, /* [5274] */ - (xdc_Char)0x78, /* [5275] */ - (xdc_Char)0x2c, /* [5276] */ - (xdc_Char)0x20, /* [5277] */ - (xdc_Char)0x66, /* [5278] */ - (xdc_Char)0x75, /* [5279] */ - (xdc_Char)0x6e, /* [5280] */ - (xdc_Char)0x63, /* [5281] */ - (xdc_Char)0x3a, /* [5282] */ - (xdc_Char)0x20, /* [5283] */ - (xdc_Char)0x30, /* [5284] */ - (xdc_Char)0x78, /* [5285] */ - (xdc_Char)0x25, /* [5286] */ - (xdc_Char)0x78, /* [5287] */ - (xdc_Char)0x0, /* [5288] */ - (xdc_Char)0x4c, /* [5289] */ - (xdc_Char)0x4d, /* [5290] */ - (xdc_Char)0x5f, /* [5291] */ - (xdc_Char)0x70, /* [5292] */ - (xdc_Char)0x6f, /* [5293] */ - (xdc_Char)0x73, /* [5294] */ - (xdc_Char)0x74, /* [5295] */ - (xdc_Char)0x3a, /* [5296] */ - (xdc_Char)0x20, /* [5297] */ - (xdc_Char)0x65, /* [5298] */ - (xdc_Char)0x76, /* [5299] */ - (xdc_Char)0x65, /* [5300] */ - (xdc_Char)0x6e, /* [5301] */ - (xdc_Char)0x74, /* [5302] */ - (xdc_Char)0x3a, /* [5303] */ - (xdc_Char)0x20, /* [5304] */ - (xdc_Char)0x30, /* [5305] */ - (xdc_Char)0x78, /* [5306] */ - (xdc_Char)0x25, /* [5307] */ - (xdc_Char)0x78, /* [5308] */ - (xdc_Char)0x2c, /* [5309] */ - (xdc_Char)0x20, /* [5310] */ - (xdc_Char)0x63, /* [5311] */ - (xdc_Char)0x75, /* [5312] */ - (xdc_Char)0x72, /* [5313] */ - (xdc_Char)0x72, /* [5314] */ - (xdc_Char)0x45, /* [5315] */ - (xdc_Char)0x76, /* [5316] */ - (xdc_Char)0x65, /* [5317] */ - (xdc_Char)0x6e, /* [5318] */ - (xdc_Char)0x74, /* [5319] */ - (xdc_Char)0x73, /* [5320] */ - (xdc_Char)0x3a, /* [5321] */ - (xdc_Char)0x20, /* [5322] */ - (xdc_Char)0x30, /* [5323] */ - (xdc_Char)0x78, /* [5324] */ - (xdc_Char)0x25, /* [5325] */ - (xdc_Char)0x78, /* [5326] */ - (xdc_Char)0x2c, /* [5327] */ - (xdc_Char)0x20, /* [5328] */ - (xdc_Char)0x65, /* [5329] */ - (xdc_Char)0x76, /* [5330] */ - (xdc_Char)0x65, /* [5331] */ - (xdc_Char)0x6e, /* [5332] */ - (xdc_Char)0x74, /* [5333] */ - (xdc_Char)0x49, /* [5334] */ - (xdc_Char)0x64, /* [5335] */ - (xdc_Char)0x3a, /* [5336] */ - (xdc_Char)0x20, /* [5337] */ - (xdc_Char)0x30, /* [5338] */ - (xdc_Char)0x78, /* [5339] */ - (xdc_Char)0x25, /* [5340] */ - (xdc_Char)0x78, /* [5341] */ - (xdc_Char)0x0, /* [5342] */ - (xdc_Char)0x4c, /* [5343] */ - (xdc_Char)0x4d, /* [5344] */ - (xdc_Char)0x5f, /* [5345] */ - (xdc_Char)0x70, /* [5346] */ - (xdc_Char)0x65, /* [5347] */ - (xdc_Char)0x6e, /* [5348] */ - (xdc_Char)0x64, /* [5349] */ - (xdc_Char)0x3a, /* [5350] */ - (xdc_Char)0x20, /* [5351] */ - (xdc_Char)0x65, /* [5352] */ - (xdc_Char)0x76, /* [5353] */ - (xdc_Char)0x65, /* [5354] */ - (xdc_Char)0x6e, /* [5355] */ - (xdc_Char)0x74, /* [5356] */ - (xdc_Char)0x3a, /* [5357] */ - (xdc_Char)0x20, /* [5358] */ - (xdc_Char)0x30, /* [5359] */ - (xdc_Char)0x78, /* [5360] */ - (xdc_Char)0x25, /* [5361] */ - (xdc_Char)0x78, /* [5362] */ - (xdc_Char)0x2c, /* [5363] */ - (xdc_Char)0x20, /* [5364] */ - (xdc_Char)0x63, /* [5365] */ - (xdc_Char)0x75, /* [5366] */ - (xdc_Char)0x72, /* [5367] */ - (xdc_Char)0x72, /* [5368] */ - (xdc_Char)0x45, /* [5369] */ - (xdc_Char)0x76, /* [5370] */ - (xdc_Char)0x65, /* [5371] */ - (xdc_Char)0x6e, /* [5372] */ - (xdc_Char)0x74, /* [5373] */ - (xdc_Char)0x73, /* [5374] */ - (xdc_Char)0x3a, /* [5375] */ - (xdc_Char)0x20, /* [5376] */ - (xdc_Char)0x30, /* [5377] */ - (xdc_Char)0x78, /* [5378] */ - (xdc_Char)0x25, /* [5379] */ - (xdc_Char)0x78, /* [5380] */ - (xdc_Char)0x2c, /* [5381] */ - (xdc_Char)0x20, /* [5382] */ - (xdc_Char)0x61, /* [5383] */ - (xdc_Char)0x6e, /* [5384] */ - (xdc_Char)0x64, /* [5385] */ - (xdc_Char)0x4d, /* [5386] */ - (xdc_Char)0x61, /* [5387] */ - (xdc_Char)0x73, /* [5388] */ - (xdc_Char)0x6b, /* [5389] */ - (xdc_Char)0x3a, /* [5390] */ - (xdc_Char)0x20, /* [5391] */ - (xdc_Char)0x30, /* [5392] */ - (xdc_Char)0x78, /* [5393] */ - (xdc_Char)0x25, /* [5394] */ - (xdc_Char)0x78, /* [5395] */ - (xdc_Char)0x2c, /* [5396] */ - (xdc_Char)0x20, /* [5397] */ - (xdc_Char)0x6f, /* [5398] */ - (xdc_Char)0x72, /* [5399] */ - (xdc_Char)0x4d, /* [5400] */ - (xdc_Char)0x61, /* [5401] */ - (xdc_Char)0x73, /* [5402] */ - (xdc_Char)0x6b, /* [5403] */ - (xdc_Char)0x3a, /* [5404] */ - (xdc_Char)0x20, /* [5405] */ - (xdc_Char)0x30, /* [5406] */ - (xdc_Char)0x78, /* [5407] */ - (xdc_Char)0x25, /* [5408] */ - (xdc_Char)0x78, /* [5409] */ - (xdc_Char)0x2c, /* [5410] */ - (xdc_Char)0x20, /* [5411] */ - (xdc_Char)0x74, /* [5412] */ - (xdc_Char)0x69, /* [5413] */ - (xdc_Char)0x6d, /* [5414] */ - (xdc_Char)0x65, /* [5415] */ - (xdc_Char)0x6f, /* [5416] */ - (xdc_Char)0x75, /* [5417] */ - (xdc_Char)0x74, /* [5418] */ - (xdc_Char)0x3a, /* [5419] */ - (xdc_Char)0x20, /* [5420] */ - (xdc_Char)0x25, /* [5421] */ - (xdc_Char)0x64, /* [5422] */ - (xdc_Char)0x0, /* [5423] */ - (xdc_Char)0x4c, /* [5424] */ - (xdc_Char)0x4d, /* [5425] */ - (xdc_Char)0x5f, /* [5426] */ - (xdc_Char)0x70, /* [5427] */ - (xdc_Char)0x6f, /* [5428] */ - (xdc_Char)0x73, /* [5429] */ - (xdc_Char)0x74, /* [5430] */ - (xdc_Char)0x3a, /* [5431] */ - (xdc_Char)0x20, /* [5432] */ - (xdc_Char)0x73, /* [5433] */ - (xdc_Char)0x65, /* [5434] */ - (xdc_Char)0x6d, /* [5435] */ - (xdc_Char)0x3a, /* [5436] */ - (xdc_Char)0x20, /* [5437] */ - (xdc_Char)0x30, /* [5438] */ - (xdc_Char)0x78, /* [5439] */ - (xdc_Char)0x25, /* [5440] */ - (xdc_Char)0x78, /* [5441] */ - (xdc_Char)0x2c, /* [5442] */ - (xdc_Char)0x20, /* [5443] */ - (xdc_Char)0x63, /* [5444] */ - (xdc_Char)0x6f, /* [5445] */ - (xdc_Char)0x75, /* [5446] */ - (xdc_Char)0x6e, /* [5447] */ - (xdc_Char)0x74, /* [5448] */ - (xdc_Char)0x3a, /* [5449] */ - (xdc_Char)0x20, /* [5450] */ - (xdc_Char)0x25, /* [5451] */ - (xdc_Char)0x64, /* [5452] */ - (xdc_Char)0x0, /* [5453] */ - (xdc_Char)0x4c, /* [5454] */ - (xdc_Char)0x4d, /* [5455] */ - (xdc_Char)0x5f, /* [5456] */ - (xdc_Char)0x70, /* [5457] */ - (xdc_Char)0x65, /* [5458] */ - (xdc_Char)0x6e, /* [5459] */ - (xdc_Char)0x64, /* [5460] */ - (xdc_Char)0x3a, /* [5461] */ - (xdc_Char)0x20, /* [5462] */ - (xdc_Char)0x73, /* [5463] */ - (xdc_Char)0x65, /* [5464] */ - (xdc_Char)0x6d, /* [5465] */ - (xdc_Char)0x3a, /* [5466] */ - (xdc_Char)0x20, /* [5467] */ - (xdc_Char)0x30, /* [5468] */ - (xdc_Char)0x78, /* [5469] */ - (xdc_Char)0x25, /* [5470] */ - (xdc_Char)0x78, /* [5471] */ - (xdc_Char)0x2c, /* [5472] */ - (xdc_Char)0x20, /* [5473] */ - (xdc_Char)0x63, /* [5474] */ - (xdc_Char)0x6f, /* [5475] */ - (xdc_Char)0x75, /* [5476] */ - (xdc_Char)0x6e, /* [5477] */ - (xdc_Char)0x74, /* [5478] */ - (xdc_Char)0x3a, /* [5479] */ - (xdc_Char)0x20, /* [5480] */ - (xdc_Char)0x25, /* [5481] */ - (xdc_Char)0x64, /* [5482] */ - (xdc_Char)0x2c, /* [5483] */ - (xdc_Char)0x20, /* [5484] */ - (xdc_Char)0x74, /* [5485] */ - (xdc_Char)0x69, /* [5486] */ - (xdc_Char)0x6d, /* [5487] */ - (xdc_Char)0x65, /* [5488] */ - (xdc_Char)0x6f, /* [5489] */ - (xdc_Char)0x75, /* [5490] */ - (xdc_Char)0x74, /* [5491] */ - (xdc_Char)0x3a, /* [5492] */ - (xdc_Char)0x20, /* [5493] */ - (xdc_Char)0x25, /* [5494] */ - (xdc_Char)0x64, /* [5495] */ - (xdc_Char)0x0, /* [5496] */ - (xdc_Char)0x4c, /* [5497] */ - (xdc_Char)0x4d, /* [5498] */ - (xdc_Char)0x5f, /* [5499] */ - (xdc_Char)0x62, /* [5500] */ - (xdc_Char)0x65, /* [5501] */ - (xdc_Char)0x67, /* [5502] */ - (xdc_Char)0x69, /* [5503] */ - (xdc_Char)0x6e, /* [5504] */ - (xdc_Char)0x3a, /* [5505] */ - (xdc_Char)0x20, /* [5506] */ - (xdc_Char)0x73, /* [5507] */ - (xdc_Char)0x77, /* [5508] */ - (xdc_Char)0x69, /* [5509] */ - (xdc_Char)0x3a, /* [5510] */ - (xdc_Char)0x20, /* [5511] */ - (xdc_Char)0x30, /* [5512] */ - (xdc_Char)0x78, /* [5513] */ - (xdc_Char)0x25, /* [5514] */ - (xdc_Char)0x78, /* [5515] */ - (xdc_Char)0x2c, /* [5516] */ - (xdc_Char)0x20, /* [5517] */ - (xdc_Char)0x66, /* [5518] */ - (xdc_Char)0x75, /* [5519] */ - (xdc_Char)0x6e, /* [5520] */ - (xdc_Char)0x63, /* [5521] */ - (xdc_Char)0x3a, /* [5522] */ - (xdc_Char)0x20, /* [5523] */ - (xdc_Char)0x30, /* [5524] */ - (xdc_Char)0x78, /* [5525] */ - (xdc_Char)0x25, /* [5526] */ - (xdc_Char)0x78, /* [5527] */ - (xdc_Char)0x2c, /* [5528] */ - (xdc_Char)0x20, /* [5529] */ - (xdc_Char)0x70, /* [5530] */ - (xdc_Char)0x72, /* [5531] */ - (xdc_Char)0x65, /* [5532] */ - (xdc_Char)0x54, /* [5533] */ - (xdc_Char)0x68, /* [5534] */ - (xdc_Char)0x72, /* [5535] */ - (xdc_Char)0x65, /* [5536] */ - (xdc_Char)0x61, /* [5537] */ - (xdc_Char)0x64, /* [5538] */ - (xdc_Char)0x3a, /* [5539] */ - (xdc_Char)0x20, /* [5540] */ - (xdc_Char)0x25, /* [5541] */ - (xdc_Char)0x64, /* [5542] */ - (xdc_Char)0x0, /* [5543] */ - (xdc_Char)0x4c, /* [5544] */ - (xdc_Char)0x44, /* [5545] */ - (xdc_Char)0x5f, /* [5546] */ - (xdc_Char)0x65, /* [5547] */ - (xdc_Char)0x6e, /* [5548] */ - (xdc_Char)0x64, /* [5549] */ - (xdc_Char)0x3a, /* [5550] */ - (xdc_Char)0x20, /* [5551] */ - (xdc_Char)0x73, /* [5552] */ - (xdc_Char)0x77, /* [5553] */ - (xdc_Char)0x69, /* [5554] */ - (xdc_Char)0x3a, /* [5555] */ - (xdc_Char)0x20, /* [5556] */ - (xdc_Char)0x30, /* [5557] */ - (xdc_Char)0x78, /* [5558] */ - (xdc_Char)0x25, /* [5559] */ - (xdc_Char)0x78, /* [5560] */ - (xdc_Char)0x0, /* [5561] */ - (xdc_Char)0x4c, /* [5562] */ - (xdc_Char)0x4d, /* [5563] */ - (xdc_Char)0x5f, /* [5564] */ - (xdc_Char)0x70, /* [5565] */ - (xdc_Char)0x6f, /* [5566] */ - (xdc_Char)0x73, /* [5567] */ - (xdc_Char)0x74, /* [5568] */ - (xdc_Char)0x3a, /* [5569] */ - (xdc_Char)0x20, /* [5570] */ - (xdc_Char)0x73, /* [5571] */ - (xdc_Char)0x77, /* [5572] */ - (xdc_Char)0x69, /* [5573] */ - (xdc_Char)0x3a, /* [5574] */ - (xdc_Char)0x20, /* [5575] */ - (xdc_Char)0x30, /* [5576] */ - (xdc_Char)0x78, /* [5577] */ - (xdc_Char)0x25, /* [5578] */ - (xdc_Char)0x78, /* [5579] */ - (xdc_Char)0x2c, /* [5580] */ - (xdc_Char)0x20, /* [5581] */ - (xdc_Char)0x66, /* [5582] */ - (xdc_Char)0x75, /* [5583] */ - (xdc_Char)0x6e, /* [5584] */ - (xdc_Char)0x63, /* [5585] */ - (xdc_Char)0x3a, /* [5586] */ - (xdc_Char)0x20, /* [5587] */ - (xdc_Char)0x30, /* [5588] */ - (xdc_Char)0x78, /* [5589] */ - (xdc_Char)0x25, /* [5590] */ - (xdc_Char)0x78, /* [5591] */ - (xdc_Char)0x2c, /* [5592] */ - (xdc_Char)0x20, /* [5593] */ - (xdc_Char)0x70, /* [5594] */ - (xdc_Char)0x72, /* [5595] */ - (xdc_Char)0x69, /* [5596] */ - (xdc_Char)0x3a, /* [5597] */ - (xdc_Char)0x20, /* [5598] */ - (xdc_Char)0x25, /* [5599] */ - (xdc_Char)0x64, /* [5600] */ - (xdc_Char)0x0, /* [5601] */ - (xdc_Char)0x4c, /* [5602] */ - (xdc_Char)0x4d, /* [5603] */ - (xdc_Char)0x5f, /* [5604] */ - (xdc_Char)0x73, /* [5605] */ - (xdc_Char)0x77, /* [5606] */ - (xdc_Char)0x69, /* [5607] */ - (xdc_Char)0x74, /* [5608] */ - (xdc_Char)0x63, /* [5609] */ - (xdc_Char)0x68, /* [5610] */ - (xdc_Char)0x3a, /* [5611] */ - (xdc_Char)0x20, /* [5612] */ - (xdc_Char)0x6f, /* [5613] */ - (xdc_Char)0x6c, /* [5614] */ - (xdc_Char)0x64, /* [5615] */ - (xdc_Char)0x74, /* [5616] */ - (xdc_Char)0x73, /* [5617] */ - (xdc_Char)0x6b, /* [5618] */ - (xdc_Char)0x3a, /* [5619] */ - (xdc_Char)0x20, /* [5620] */ - (xdc_Char)0x30, /* [5621] */ - (xdc_Char)0x78, /* [5622] */ - (xdc_Char)0x25, /* [5623] */ - (xdc_Char)0x78, /* [5624] */ - (xdc_Char)0x2c, /* [5625] */ - (xdc_Char)0x20, /* [5626] */ - (xdc_Char)0x6f, /* [5627] */ - (xdc_Char)0x6c, /* [5628] */ - (xdc_Char)0x64, /* [5629] */ - (xdc_Char)0x66, /* [5630] */ - (xdc_Char)0x75, /* [5631] */ - (xdc_Char)0x6e, /* [5632] */ - (xdc_Char)0x63, /* [5633] */ - (xdc_Char)0x3a, /* [5634] */ - (xdc_Char)0x20, /* [5635] */ - (xdc_Char)0x30, /* [5636] */ - (xdc_Char)0x78, /* [5637] */ - (xdc_Char)0x25, /* [5638] */ - (xdc_Char)0x78, /* [5639] */ - (xdc_Char)0x2c, /* [5640] */ - (xdc_Char)0x20, /* [5641] */ - (xdc_Char)0x6e, /* [5642] */ - (xdc_Char)0x65, /* [5643] */ - (xdc_Char)0x77, /* [5644] */ - (xdc_Char)0x74, /* [5645] */ - (xdc_Char)0x73, /* [5646] */ - (xdc_Char)0x6b, /* [5647] */ - (xdc_Char)0x3a, /* [5648] */ - (xdc_Char)0x20, /* [5649] */ - (xdc_Char)0x30, /* [5650] */ - (xdc_Char)0x78, /* [5651] */ - (xdc_Char)0x25, /* [5652] */ - (xdc_Char)0x78, /* [5653] */ - (xdc_Char)0x2c, /* [5654] */ - (xdc_Char)0x20, /* [5655] */ - (xdc_Char)0x6e, /* [5656] */ - (xdc_Char)0x65, /* [5657] */ - (xdc_Char)0x77, /* [5658] */ - (xdc_Char)0x66, /* [5659] */ - (xdc_Char)0x75, /* [5660] */ - (xdc_Char)0x6e, /* [5661] */ - (xdc_Char)0x63, /* [5662] */ - (xdc_Char)0x3a, /* [5663] */ - (xdc_Char)0x20, /* [5664] */ - (xdc_Char)0x30, /* [5665] */ - (xdc_Char)0x78, /* [5666] */ - (xdc_Char)0x25, /* [5667] */ - (xdc_Char)0x78, /* [5668] */ - (xdc_Char)0x0, /* [5669] */ - (xdc_Char)0x4c, /* [5670] */ - (xdc_Char)0x4d, /* [5671] */ - (xdc_Char)0x5f, /* [5672] */ - (xdc_Char)0x73, /* [5673] */ - (xdc_Char)0x6c, /* [5674] */ - (xdc_Char)0x65, /* [5675] */ - (xdc_Char)0x65, /* [5676] */ - (xdc_Char)0x70, /* [5677] */ - (xdc_Char)0x3a, /* [5678] */ - (xdc_Char)0x20, /* [5679] */ - (xdc_Char)0x74, /* [5680] */ - (xdc_Char)0x73, /* [5681] */ - (xdc_Char)0x6b, /* [5682] */ - (xdc_Char)0x3a, /* [5683] */ - (xdc_Char)0x20, /* [5684] */ - (xdc_Char)0x30, /* [5685] */ - (xdc_Char)0x78, /* [5686] */ - (xdc_Char)0x25, /* [5687] */ - (xdc_Char)0x78, /* [5688] */ - (xdc_Char)0x2c, /* [5689] */ - (xdc_Char)0x20, /* [5690] */ - (xdc_Char)0x66, /* [5691] */ - (xdc_Char)0x75, /* [5692] */ - (xdc_Char)0x6e, /* [5693] */ - (xdc_Char)0x63, /* [5694] */ - (xdc_Char)0x3a, /* [5695] */ - (xdc_Char)0x20, /* [5696] */ - (xdc_Char)0x30, /* [5697] */ - (xdc_Char)0x78, /* [5698] */ - (xdc_Char)0x25, /* [5699] */ - (xdc_Char)0x78, /* [5700] */ - (xdc_Char)0x2c, /* [5701] */ - (xdc_Char)0x20, /* [5702] */ - (xdc_Char)0x74, /* [5703] */ - (xdc_Char)0x69, /* [5704] */ - (xdc_Char)0x6d, /* [5705] */ - (xdc_Char)0x65, /* [5706] */ - (xdc_Char)0x6f, /* [5707] */ - (xdc_Char)0x75, /* [5708] */ - (xdc_Char)0x74, /* [5709] */ - (xdc_Char)0x3a, /* [5710] */ - (xdc_Char)0x20, /* [5711] */ - (xdc_Char)0x25, /* [5712] */ - (xdc_Char)0x64, /* [5713] */ - (xdc_Char)0x0, /* [5714] */ - (xdc_Char)0x4c, /* [5715] */ - (xdc_Char)0x44, /* [5716] */ - (xdc_Char)0x5f, /* [5717] */ - (xdc_Char)0x72, /* [5718] */ - (xdc_Char)0x65, /* [5719] */ - (xdc_Char)0x61, /* [5720] */ - (xdc_Char)0x64, /* [5721] */ - (xdc_Char)0x79, /* [5722] */ - (xdc_Char)0x3a, /* [5723] */ - (xdc_Char)0x20, /* [5724] */ - (xdc_Char)0x74, /* [5725] */ - (xdc_Char)0x73, /* [5726] */ - (xdc_Char)0x6b, /* [5727] */ - (xdc_Char)0x3a, /* [5728] */ - (xdc_Char)0x20, /* [5729] */ - (xdc_Char)0x30, /* [5730] */ - (xdc_Char)0x78, /* [5731] */ - (xdc_Char)0x25, /* [5732] */ - (xdc_Char)0x78, /* [5733] */ - (xdc_Char)0x2c, /* [5734] */ - (xdc_Char)0x20, /* [5735] */ - (xdc_Char)0x66, /* [5736] */ - (xdc_Char)0x75, /* [5737] */ - (xdc_Char)0x6e, /* [5738] */ - (xdc_Char)0x63, /* [5739] */ - (xdc_Char)0x3a, /* [5740] */ - (xdc_Char)0x20, /* [5741] */ - (xdc_Char)0x30, /* [5742] */ - (xdc_Char)0x78, /* [5743] */ - (xdc_Char)0x25, /* [5744] */ - (xdc_Char)0x78, /* [5745] */ - (xdc_Char)0x2c, /* [5746] */ - (xdc_Char)0x20, /* [5747] */ - (xdc_Char)0x70, /* [5748] */ - (xdc_Char)0x72, /* [5749] */ - (xdc_Char)0x69, /* [5750] */ - (xdc_Char)0x3a, /* [5751] */ - (xdc_Char)0x20, /* [5752] */ - (xdc_Char)0x25, /* [5753] */ - (xdc_Char)0x64, /* [5754] */ - (xdc_Char)0x0, /* [5755] */ - (xdc_Char)0x4c, /* [5756] */ - (xdc_Char)0x44, /* [5757] */ - (xdc_Char)0x5f, /* [5758] */ - (xdc_Char)0x62, /* [5759] */ - (xdc_Char)0x6c, /* [5760] */ - (xdc_Char)0x6f, /* [5761] */ - (xdc_Char)0x63, /* [5762] */ - (xdc_Char)0x6b, /* [5763] */ - (xdc_Char)0x3a, /* [5764] */ - (xdc_Char)0x20, /* [5765] */ - (xdc_Char)0x74, /* [5766] */ - (xdc_Char)0x73, /* [5767] */ - (xdc_Char)0x6b, /* [5768] */ - (xdc_Char)0x3a, /* [5769] */ - (xdc_Char)0x20, /* [5770] */ - (xdc_Char)0x30, /* [5771] */ - (xdc_Char)0x78, /* [5772] */ - (xdc_Char)0x25, /* [5773] */ - (xdc_Char)0x78, /* [5774] */ - (xdc_Char)0x2c, /* [5775] */ - (xdc_Char)0x20, /* [5776] */ - (xdc_Char)0x66, /* [5777] */ - (xdc_Char)0x75, /* [5778] */ - (xdc_Char)0x6e, /* [5779] */ - (xdc_Char)0x63, /* [5780] */ - (xdc_Char)0x3a, /* [5781] */ - (xdc_Char)0x20, /* [5782] */ - (xdc_Char)0x30, /* [5783] */ - (xdc_Char)0x78, /* [5784] */ - (xdc_Char)0x25, /* [5785] */ - (xdc_Char)0x78, /* [5786] */ - (xdc_Char)0x0, /* [5787] */ - (xdc_Char)0x4c, /* [5788] */ - (xdc_Char)0x4d, /* [5789] */ - (xdc_Char)0x5f, /* [5790] */ - (xdc_Char)0x79, /* [5791] */ - (xdc_Char)0x69, /* [5792] */ - (xdc_Char)0x65, /* [5793] */ - (xdc_Char)0x6c, /* [5794] */ - (xdc_Char)0x64, /* [5795] */ - (xdc_Char)0x3a, /* [5796] */ - (xdc_Char)0x20, /* [5797] */ - (xdc_Char)0x74, /* [5798] */ - (xdc_Char)0x73, /* [5799] */ - (xdc_Char)0x6b, /* [5800] */ - (xdc_Char)0x3a, /* [5801] */ - (xdc_Char)0x20, /* [5802] */ - (xdc_Char)0x30, /* [5803] */ - (xdc_Char)0x78, /* [5804] */ - (xdc_Char)0x25, /* [5805] */ - (xdc_Char)0x78, /* [5806] */ - (xdc_Char)0x2c, /* [5807] */ - (xdc_Char)0x20, /* [5808] */ - (xdc_Char)0x66, /* [5809] */ - (xdc_Char)0x75, /* [5810] */ - (xdc_Char)0x6e, /* [5811] */ - (xdc_Char)0x63, /* [5812] */ - (xdc_Char)0x3a, /* [5813] */ - (xdc_Char)0x20, /* [5814] */ - (xdc_Char)0x30, /* [5815] */ - (xdc_Char)0x78, /* [5816] */ - (xdc_Char)0x25, /* [5817] */ - (xdc_Char)0x78, /* [5818] */ - (xdc_Char)0x2c, /* [5819] */ - (xdc_Char)0x20, /* [5820] */ - (xdc_Char)0x63, /* [5821] */ - (xdc_Char)0x75, /* [5822] */ - (xdc_Char)0x72, /* [5823] */ - (xdc_Char)0x72, /* [5824] */ - (xdc_Char)0x54, /* [5825] */ - (xdc_Char)0x68, /* [5826] */ - (xdc_Char)0x72, /* [5827] */ - (xdc_Char)0x65, /* [5828] */ - (xdc_Char)0x61, /* [5829] */ - (xdc_Char)0x64, /* [5830] */ - (xdc_Char)0x3a, /* [5831] */ - (xdc_Char)0x20, /* [5832] */ - (xdc_Char)0x25, /* [5833] */ - (xdc_Char)0x64, /* [5834] */ - (xdc_Char)0x0, /* [5835] */ - (xdc_Char)0x4c, /* [5836] */ - (xdc_Char)0x4d, /* [5837] */ - (xdc_Char)0x5f, /* [5838] */ - (xdc_Char)0x73, /* [5839] */ - (xdc_Char)0x65, /* [5840] */ - (xdc_Char)0x74, /* [5841] */ - (xdc_Char)0x50, /* [5842] */ - (xdc_Char)0x72, /* [5843] */ - (xdc_Char)0x69, /* [5844] */ - (xdc_Char)0x3a, /* [5845] */ - (xdc_Char)0x20, /* [5846] */ - (xdc_Char)0x74, /* [5847] */ - (xdc_Char)0x73, /* [5848] */ - (xdc_Char)0x6b, /* [5849] */ - (xdc_Char)0x3a, /* [5850] */ - (xdc_Char)0x20, /* [5851] */ - (xdc_Char)0x30, /* [5852] */ - (xdc_Char)0x78, /* [5853] */ - (xdc_Char)0x25, /* [5854] */ - (xdc_Char)0x78, /* [5855] */ - (xdc_Char)0x2c, /* [5856] */ - (xdc_Char)0x20, /* [5857] */ - (xdc_Char)0x66, /* [5858] */ - (xdc_Char)0x75, /* [5859] */ - (xdc_Char)0x6e, /* [5860] */ - (xdc_Char)0x63, /* [5861] */ - (xdc_Char)0x3a, /* [5862] */ - (xdc_Char)0x20, /* [5863] */ - (xdc_Char)0x30, /* [5864] */ - (xdc_Char)0x78, /* [5865] */ - (xdc_Char)0x25, /* [5866] */ - (xdc_Char)0x78, /* [5867] */ - (xdc_Char)0x2c, /* [5868] */ - (xdc_Char)0x20, /* [5869] */ - (xdc_Char)0x6f, /* [5870] */ - (xdc_Char)0x6c, /* [5871] */ - (xdc_Char)0x64, /* [5872] */ - (xdc_Char)0x50, /* [5873] */ - (xdc_Char)0x72, /* [5874] */ - (xdc_Char)0x69, /* [5875] */ - (xdc_Char)0x3a, /* [5876] */ - (xdc_Char)0x20, /* [5877] */ - (xdc_Char)0x25, /* [5878] */ - (xdc_Char)0x64, /* [5879] */ - (xdc_Char)0x2c, /* [5880] */ - (xdc_Char)0x20, /* [5881] */ - (xdc_Char)0x6e, /* [5882] */ - (xdc_Char)0x65, /* [5883] */ - (xdc_Char)0x77, /* [5884] */ - (xdc_Char)0x50, /* [5885] */ - (xdc_Char)0x72, /* [5886] */ - (xdc_Char)0x69, /* [5887] */ - (xdc_Char)0x20, /* [5888] */ - (xdc_Char)0x25, /* [5889] */ - (xdc_Char)0x64, /* [5890] */ - (xdc_Char)0x0, /* [5891] */ - (xdc_Char)0x4c, /* [5892] */ - (xdc_Char)0x44, /* [5893] */ - (xdc_Char)0x5f, /* [5894] */ - (xdc_Char)0x65, /* [5895] */ - (xdc_Char)0x78, /* [5896] */ - (xdc_Char)0x69, /* [5897] */ - (xdc_Char)0x74, /* [5898] */ - (xdc_Char)0x3a, /* [5899] */ - (xdc_Char)0x20, /* [5900] */ - (xdc_Char)0x74, /* [5901] */ - (xdc_Char)0x73, /* [5902] */ - (xdc_Char)0x6b, /* [5903] */ - (xdc_Char)0x3a, /* [5904] */ - (xdc_Char)0x20, /* [5905] */ - (xdc_Char)0x30, /* [5906] */ - (xdc_Char)0x78, /* [5907] */ - (xdc_Char)0x25, /* [5908] */ - (xdc_Char)0x78, /* [5909] */ - (xdc_Char)0x2c, /* [5910] */ - (xdc_Char)0x20, /* [5911] */ - (xdc_Char)0x66, /* [5912] */ - (xdc_Char)0x75, /* [5913] */ - (xdc_Char)0x6e, /* [5914] */ - (xdc_Char)0x63, /* [5915] */ - (xdc_Char)0x3a, /* [5916] */ - (xdc_Char)0x20, /* [5917] */ - (xdc_Char)0x30, /* [5918] */ - (xdc_Char)0x78, /* [5919] */ - (xdc_Char)0x25, /* [5920] */ - (xdc_Char)0x78, /* [5921] */ - (xdc_Char)0x0, /* [5922] */ - (xdc_Char)0x4c, /* [5923] */ - (xdc_Char)0x4d, /* [5924] */ - (xdc_Char)0x5f, /* [5925] */ - (xdc_Char)0x73, /* [5926] */ - (xdc_Char)0x65, /* [5927] */ - (xdc_Char)0x74, /* [5928] */ - (xdc_Char)0x41, /* [5929] */ - (xdc_Char)0x66, /* [5930] */ - (xdc_Char)0x66, /* [5931] */ - (xdc_Char)0x69, /* [5932] */ - (xdc_Char)0x6e, /* [5933] */ - (xdc_Char)0x69, /* [5934] */ - (xdc_Char)0x74, /* [5935] */ - (xdc_Char)0x79, /* [5936] */ - (xdc_Char)0x3a, /* [5937] */ - (xdc_Char)0x20, /* [5938] */ - (xdc_Char)0x74, /* [5939] */ - (xdc_Char)0x73, /* [5940] */ - (xdc_Char)0x6b, /* [5941] */ - (xdc_Char)0x3a, /* [5942] */ - (xdc_Char)0x20, /* [5943] */ - (xdc_Char)0x30, /* [5944] */ - (xdc_Char)0x78, /* [5945] */ - (xdc_Char)0x25, /* [5946] */ - (xdc_Char)0x78, /* [5947] */ - (xdc_Char)0x2c, /* [5948] */ - (xdc_Char)0x20, /* [5949] */ - (xdc_Char)0x66, /* [5950] */ - (xdc_Char)0x75, /* [5951] */ - (xdc_Char)0x6e, /* [5952] */ - (xdc_Char)0x63, /* [5953] */ - (xdc_Char)0x3a, /* [5954] */ - (xdc_Char)0x20, /* [5955] */ - (xdc_Char)0x30, /* [5956] */ - (xdc_Char)0x78, /* [5957] */ - (xdc_Char)0x25, /* [5958] */ - (xdc_Char)0x78, /* [5959] */ - (xdc_Char)0x2c, /* [5960] */ - (xdc_Char)0x20, /* [5961] */ - (xdc_Char)0x6f, /* [5962] */ - (xdc_Char)0x6c, /* [5963] */ - (xdc_Char)0x64, /* [5964] */ - (xdc_Char)0x43, /* [5965] */ - (xdc_Char)0x6f, /* [5966] */ - (xdc_Char)0x72, /* [5967] */ - (xdc_Char)0x65, /* [5968] */ - (xdc_Char)0x3a, /* [5969] */ - (xdc_Char)0x20, /* [5970] */ - (xdc_Char)0x25, /* [5971] */ - (xdc_Char)0x64, /* [5972] */ - (xdc_Char)0x2c, /* [5973] */ - (xdc_Char)0x20, /* [5974] */ - (xdc_Char)0x6f, /* [5975] */ - (xdc_Char)0x6c, /* [5976] */ - (xdc_Char)0x64, /* [5977] */ - (xdc_Char)0x41, /* [5978] */ - (xdc_Char)0x66, /* [5979] */ - (xdc_Char)0x66, /* [5980] */ - (xdc_Char)0x69, /* [5981] */ - (xdc_Char)0x6e, /* [5982] */ - (xdc_Char)0x69, /* [5983] */ - (xdc_Char)0x74, /* [5984] */ - (xdc_Char)0x79, /* [5985] */ - (xdc_Char)0x20, /* [5986] */ - (xdc_Char)0x25, /* [5987] */ - (xdc_Char)0x64, /* [5988] */ - (xdc_Char)0x2c, /* [5989] */ - (xdc_Char)0x20, /* [5990] */ - (xdc_Char)0x6e, /* [5991] */ - (xdc_Char)0x65, /* [5992] */ - (xdc_Char)0x77, /* [5993] */ - (xdc_Char)0x41, /* [5994] */ - (xdc_Char)0x66, /* [5995] */ - (xdc_Char)0x66, /* [5996] */ - (xdc_Char)0x69, /* [5997] */ - (xdc_Char)0x6e, /* [5998] */ - (xdc_Char)0x69, /* [5999] */ - (xdc_Char)0x74, /* [6000] */ - (xdc_Char)0x79, /* [6001] */ - (xdc_Char)0x20, /* [6002] */ - (xdc_Char)0x25, /* [6003] */ - (xdc_Char)0x64, /* [6004] */ - (xdc_Char)0x0, /* [6005] */ - (xdc_Char)0x4c, /* [6006] */ - (xdc_Char)0x44, /* [6007] */ - (xdc_Char)0x5f, /* [6008] */ - (xdc_Char)0x73, /* [6009] */ - (xdc_Char)0x63, /* [6010] */ - (xdc_Char)0x68, /* [6011] */ - (xdc_Char)0x65, /* [6012] */ - (xdc_Char)0x64, /* [6013] */ - (xdc_Char)0x75, /* [6014] */ - (xdc_Char)0x6c, /* [6015] */ - (xdc_Char)0x65, /* [6016] */ - (xdc_Char)0x3a, /* [6017] */ - (xdc_Char)0x20, /* [6018] */ - (xdc_Char)0x63, /* [6019] */ - (xdc_Char)0x6f, /* [6020] */ - (xdc_Char)0x72, /* [6021] */ - (xdc_Char)0x65, /* [6022] */ - (xdc_Char)0x49, /* [6023] */ - (xdc_Char)0x64, /* [6024] */ - (xdc_Char)0x3a, /* [6025] */ - (xdc_Char)0x20, /* [6026] */ - (xdc_Char)0x25, /* [6027] */ - (xdc_Char)0x64, /* [6028] */ - (xdc_Char)0x2c, /* [6029] */ - (xdc_Char)0x20, /* [6030] */ - (xdc_Char)0x77, /* [6031] */ - (xdc_Char)0x6f, /* [6032] */ - (xdc_Char)0x72, /* [6033] */ - (xdc_Char)0x6b, /* [6034] */ - (xdc_Char)0x46, /* [6035] */ - (xdc_Char)0x6c, /* [6036] */ - (xdc_Char)0x61, /* [6037] */ - (xdc_Char)0x67, /* [6038] */ - (xdc_Char)0x3a, /* [6039] */ - (xdc_Char)0x20, /* [6040] */ - (xdc_Char)0x25, /* [6041] */ - (xdc_Char)0x64, /* [6042] */ - (xdc_Char)0x2c, /* [6043] */ - (xdc_Char)0x20, /* [6044] */ - (xdc_Char)0x63, /* [6045] */ - (xdc_Char)0x75, /* [6046] */ - (xdc_Char)0x72, /* [6047] */ - (xdc_Char)0x53, /* [6048] */ - (xdc_Char)0x65, /* [6049] */ - (xdc_Char)0x74, /* [6050] */ - (xdc_Char)0x4c, /* [6051] */ - (xdc_Char)0x6f, /* [6052] */ - (xdc_Char)0x63, /* [6053] */ - (xdc_Char)0x61, /* [6054] */ - (xdc_Char)0x6c, /* [6055] */ - (xdc_Char)0x3a, /* [6056] */ - (xdc_Char)0x20, /* [6057] */ - (xdc_Char)0x25, /* [6058] */ - (xdc_Char)0x64, /* [6059] */ - (xdc_Char)0x2c, /* [6060] */ - (xdc_Char)0x20, /* [6061] */ - (xdc_Char)0x63, /* [6062] */ - (xdc_Char)0x75, /* [6063] */ - (xdc_Char)0x72, /* [6064] */ - (xdc_Char)0x53, /* [6065] */ - (xdc_Char)0x65, /* [6066] */ - (xdc_Char)0x74, /* [6067] */ - (xdc_Char)0x58, /* [6068] */ - (xdc_Char)0x3a, /* [6069] */ - (xdc_Char)0x20, /* [6070] */ - (xdc_Char)0x25, /* [6071] */ - (xdc_Char)0x64, /* [6072] */ - (xdc_Char)0x2c, /* [6073] */ - (xdc_Char)0x20, /* [6074] */ - (xdc_Char)0x63, /* [6075] */ - (xdc_Char)0x75, /* [6076] */ - (xdc_Char)0x72, /* [6077] */ - (xdc_Char)0x4d, /* [6078] */ - (xdc_Char)0x61, /* [6079] */ - (xdc_Char)0x73, /* [6080] */ - (xdc_Char)0x6b, /* [6081] */ - (xdc_Char)0x4c, /* [6082] */ - (xdc_Char)0x6f, /* [6083] */ - (xdc_Char)0x63, /* [6084] */ - (xdc_Char)0x61, /* [6085] */ - (xdc_Char)0x6c, /* [6086] */ - (xdc_Char)0x3a, /* [6087] */ - (xdc_Char)0x20, /* [6088] */ - (xdc_Char)0x25, /* [6089] */ - (xdc_Char)0x64, /* [6090] */ - (xdc_Char)0x0, /* [6091] */ - (xdc_Char)0x4c, /* [6092] */ - (xdc_Char)0x44, /* [6093] */ - (xdc_Char)0x5f, /* [6094] */ - (xdc_Char)0x6e, /* [6095] */ - (xdc_Char)0x6f, /* [6096] */ - (xdc_Char)0x57, /* [6097] */ - (xdc_Char)0x6f, /* [6098] */ - (xdc_Char)0x72, /* [6099] */ - (xdc_Char)0x6b, /* [6100] */ - (xdc_Char)0x3a, /* [6101] */ - (xdc_Char)0x20, /* [6102] */ - (xdc_Char)0x63, /* [6103] */ - (xdc_Char)0x6f, /* [6104] */ - (xdc_Char)0x72, /* [6105] */ - (xdc_Char)0x65, /* [6106] */ - (xdc_Char)0x49, /* [6107] */ - (xdc_Char)0x64, /* [6108] */ - (xdc_Char)0x3a, /* [6109] */ - (xdc_Char)0x20, /* [6110] */ - (xdc_Char)0x25, /* [6111] */ - (xdc_Char)0x64, /* [6112] */ - (xdc_Char)0x2c, /* [6113] */ - (xdc_Char)0x20, /* [6114] */ - (xdc_Char)0x63, /* [6115] */ - (xdc_Char)0x75, /* [6116] */ - (xdc_Char)0x72, /* [6117] */ - (xdc_Char)0x53, /* [6118] */ - (xdc_Char)0x65, /* [6119] */ - (xdc_Char)0x74, /* [6120] */ - (xdc_Char)0x4c, /* [6121] */ - (xdc_Char)0x6f, /* [6122] */ - (xdc_Char)0x63, /* [6123] */ - (xdc_Char)0x61, /* [6124] */ - (xdc_Char)0x6c, /* [6125] */ - (xdc_Char)0x3a, /* [6126] */ - (xdc_Char)0x20, /* [6127] */ - (xdc_Char)0x25, /* [6128] */ - (xdc_Char)0x64, /* [6129] */ - (xdc_Char)0x2c, /* [6130] */ - (xdc_Char)0x20, /* [6131] */ - (xdc_Char)0x63, /* [6132] */ - (xdc_Char)0x75, /* [6133] */ - (xdc_Char)0x72, /* [6134] */ - (xdc_Char)0x53, /* [6135] */ - (xdc_Char)0x65, /* [6136] */ - (xdc_Char)0x74, /* [6137] */ - (xdc_Char)0x58, /* [6138] */ - (xdc_Char)0x3a, /* [6139] */ - (xdc_Char)0x20, /* [6140] */ - (xdc_Char)0x25, /* [6141] */ - (xdc_Char)0x64, /* [6142] */ - (xdc_Char)0x2c, /* [6143] */ - (xdc_Char)0x20, /* [6144] */ - (xdc_Char)0x63, /* [6145] */ - (xdc_Char)0x75, /* [6146] */ - (xdc_Char)0x72, /* [6147] */ - (xdc_Char)0x4d, /* [6148] */ - (xdc_Char)0x61, /* [6149] */ - (xdc_Char)0x73, /* [6150] */ - (xdc_Char)0x6b, /* [6151] */ - (xdc_Char)0x4c, /* [6152] */ - (xdc_Char)0x6f, /* [6153] */ - (xdc_Char)0x63, /* [6154] */ - (xdc_Char)0x61, /* [6155] */ - (xdc_Char)0x6c, /* [6156] */ - (xdc_Char)0x3a, /* [6157] */ - (xdc_Char)0x20, /* [6158] */ - (xdc_Char)0x25, /* [6159] */ - (xdc_Char)0x64, /* [6160] */ - (xdc_Char)0x0, /* [6161] */ - (xdc_Char)0x78, /* [6162] */ - (xdc_Char)0x64, /* [6163] */ - (xdc_Char)0x63, /* [6164] */ - (xdc_Char)0x2e, /* [6165] */ - (xdc_Char)0x0, /* [6166] */ - (xdc_Char)0x72, /* [6167] */ - (xdc_Char)0x75, /* [6168] */ - (xdc_Char)0x6e, /* [6169] */ - (xdc_Char)0x74, /* [6170] */ - (xdc_Char)0x69, /* [6171] */ - (xdc_Char)0x6d, /* [6172] */ - (xdc_Char)0x65, /* [6173] */ - (xdc_Char)0x2e, /* [6174] */ - (xdc_Char)0x0, /* [6175] */ - (xdc_Char)0x41, /* [6176] */ - (xdc_Char)0x73, /* [6177] */ - (xdc_Char)0x73, /* [6178] */ - (xdc_Char)0x65, /* [6179] */ - (xdc_Char)0x72, /* [6180] */ - (xdc_Char)0x74, /* [6181] */ - (xdc_Char)0x0, /* [6182] */ - (xdc_Char)0x43, /* [6183] */ - (xdc_Char)0x6f, /* [6184] */ - (xdc_Char)0x72, /* [6185] */ - (xdc_Char)0x65, /* [6186] */ - (xdc_Char)0x0, /* [6187] */ - (xdc_Char)0x44, /* [6188] */ - (xdc_Char)0x65, /* [6189] */ - (xdc_Char)0x66, /* [6190] */ - (xdc_Char)0x61, /* [6191] */ - (xdc_Char)0x75, /* [6192] */ - (xdc_Char)0x6c, /* [6193] */ - (xdc_Char)0x74, /* [6194] */ - (xdc_Char)0x73, /* [6195] */ - (xdc_Char)0x0, /* [6196] */ - (xdc_Char)0x44, /* [6197] */ - (xdc_Char)0x69, /* [6198] */ - (xdc_Char)0x61, /* [6199] */ - (xdc_Char)0x67, /* [6200] */ - (xdc_Char)0x73, /* [6201] */ - (xdc_Char)0x0, /* [6202] */ - (xdc_Char)0x45, /* [6203] */ - (xdc_Char)0x72, /* [6204] */ - (xdc_Char)0x72, /* [6205] */ - (xdc_Char)0x6f, /* [6206] */ - (xdc_Char)0x72, /* [6207] */ - (xdc_Char)0x0, /* [6208] */ - (xdc_Char)0x47, /* [6209] */ - (xdc_Char)0x61, /* [6210] */ - (xdc_Char)0x74, /* [6211] */ - (xdc_Char)0x65, /* [6212] */ - (xdc_Char)0x0, /* [6213] */ - (xdc_Char)0x4c, /* [6214] */ - (xdc_Char)0x6f, /* [6215] */ - (xdc_Char)0x67, /* [6216] */ - (xdc_Char)0x0, /* [6217] */ - (xdc_Char)0x4d, /* [6218] */ - (xdc_Char)0x61, /* [6219] */ - (xdc_Char)0x69, /* [6220] */ - (xdc_Char)0x6e, /* [6221] */ - (xdc_Char)0x0, /* [6222] */ - (xdc_Char)0x4d, /* [6223] */ - (xdc_Char)0x65, /* [6224] */ - (xdc_Char)0x6d, /* [6225] */ - (xdc_Char)0x6f, /* [6226] */ - (xdc_Char)0x72, /* [6227] */ - (xdc_Char)0x79, /* [6228] */ - (xdc_Char)0x0, /* [6229] */ - (xdc_Char)0x48, /* [6230] */ - (xdc_Char)0x65, /* [6231] */ - (xdc_Char)0x61, /* [6232] */ - (xdc_Char)0x70, /* [6233] */ - (xdc_Char)0x53, /* [6234] */ - (xdc_Char)0x74, /* [6235] */ - (xdc_Char)0x64, /* [6236] */ - (xdc_Char)0x0, /* [6237] */ - (xdc_Char)0x52, /* [6238] */ - (xdc_Char)0x65, /* [6239] */ - (xdc_Char)0x67, /* [6240] */ - (xdc_Char)0x69, /* [6241] */ - (xdc_Char)0x73, /* [6242] */ - (xdc_Char)0x74, /* [6243] */ - (xdc_Char)0x72, /* [6244] */ - (xdc_Char)0x79, /* [6245] */ - (xdc_Char)0x0, /* [6246] */ - (xdc_Char)0x53, /* [6247] */ - (xdc_Char)0x74, /* [6248] */ - (xdc_Char)0x61, /* [6249] */ - (xdc_Char)0x72, /* [6250] */ - (xdc_Char)0x74, /* [6251] */ - (xdc_Char)0x75, /* [6252] */ - (xdc_Char)0x70, /* [6253] */ - (xdc_Char)0x0, /* [6254] */ - (xdc_Char)0x53, /* [6255] */ - (xdc_Char)0x79, /* [6256] */ - (xdc_Char)0x73, /* [6257] */ - (xdc_Char)0x74, /* [6258] */ - (xdc_Char)0x65, /* [6259] */ - (xdc_Char)0x6d, /* [6260] */ - (xdc_Char)0x0, /* [6261] */ - (xdc_Char)0x53, /* [6262] */ - (xdc_Char)0x79, /* [6263] */ - (xdc_Char)0x73, /* [6264] */ - (xdc_Char)0x4d, /* [6265] */ - (xdc_Char)0x69, /* [6266] */ - (xdc_Char)0x6e, /* [6267] */ - (xdc_Char)0x0, /* [6268] */ - (xdc_Char)0x54, /* [6269] */ - (xdc_Char)0x65, /* [6270] */ - (xdc_Char)0x78, /* [6271] */ - (xdc_Char)0x74, /* [6272] */ - (xdc_Char)0x0, /* [6273] */ - (xdc_Char)0x54, /* [6274] */ - (xdc_Char)0x69, /* [6275] */ - (xdc_Char)0x6d, /* [6276] */ - (xdc_Char)0x65, /* [6277] */ - (xdc_Char)0x73, /* [6278] */ - (xdc_Char)0x74, /* [6279] */ - (xdc_Char)0x61, /* [6280] */ - (xdc_Char)0x6d, /* [6281] */ - (xdc_Char)0x70, /* [6282] */ - (xdc_Char)0x0, /* [6283] */ - (xdc_Char)0x74, /* [6284] */ - (xdc_Char)0x69, /* [6285] */ - (xdc_Char)0x2e, /* [6286] */ - (xdc_Char)0x0, /* [6287] */ - (xdc_Char)0x63, /* [6288] */ - (xdc_Char)0x61, /* [6289] */ - (xdc_Char)0x74, /* [6290] */ - (xdc_Char)0x61, /* [6291] */ - (xdc_Char)0x6c, /* [6292] */ - (xdc_Char)0x6f, /* [6293] */ - (xdc_Char)0x67, /* [6294] */ - (xdc_Char)0x2e, /* [6295] */ - (xdc_Char)0x0, /* [6296] */ - (xdc_Char)0x61, /* [6297] */ - (xdc_Char)0x72, /* [6298] */ - (xdc_Char)0x6d, /* [6299] */ - (xdc_Char)0x2e, /* [6300] */ - (xdc_Char)0x0, /* [6301] */ - (xdc_Char)0x63, /* [6302] */ - (xdc_Char)0x6f, /* [6303] */ - (xdc_Char)0x72, /* [6304] */ - (xdc_Char)0x74, /* [6305] */ - (xdc_Char)0x65, /* [6306] */ - (xdc_Char)0x78, /* [6307] */ - (xdc_Char)0x6d, /* [6308] */ - (xdc_Char)0x34, /* [6309] */ - (xdc_Char)0x2e, /* [6310] */ - (xdc_Char)0x0, /* [6311] */ - (xdc_Char)0x74, /* [6312] */ - (xdc_Char)0x69, /* [6313] */ - (xdc_Char)0x76, /* [6314] */ - (xdc_Char)0x61, /* [6315] */ - (xdc_Char)0x2e, /* [6316] */ - (xdc_Char)0x0, /* [6317] */ - (xdc_Char)0x63, /* [6318] */ - (xdc_Char)0x65, /* [6319] */ - (xdc_Char)0x2e, /* [6320] */ - (xdc_Char)0x0, /* [6321] */ - (xdc_Char)0x42, /* [6322] */ - (xdc_Char)0x6f, /* [6323] */ - (xdc_Char)0x6f, /* [6324] */ - (xdc_Char)0x74, /* [6325] */ - (xdc_Char)0x0, /* [6326] */ - (xdc_Char)0x73, /* [6327] */ - (xdc_Char)0x79, /* [6328] */ - (xdc_Char)0x73, /* [6329] */ - (xdc_Char)0x62, /* [6330] */ - (xdc_Char)0x69, /* [6331] */ - (xdc_Char)0x6f, /* [6332] */ - (xdc_Char)0x73, /* [6333] */ - (xdc_Char)0x2e, /* [6334] */ - (xdc_Char)0x0, /* [6335] */ - (xdc_Char)0x42, /* [6336] */ - (xdc_Char)0x49, /* [6337] */ - (xdc_Char)0x4f, /* [6338] */ - (xdc_Char)0x53, /* [6339] */ - (xdc_Char)0x0, /* [6340] */ - (xdc_Char)0x66, /* [6341] */ - (xdc_Char)0x61, /* [6342] */ - (xdc_Char)0x6d, /* [6343] */ - (xdc_Char)0x69, /* [6344] */ - (xdc_Char)0x6c, /* [6345] */ - (xdc_Char)0x79, /* [6346] */ - (xdc_Char)0x2e, /* [6347] */ - (xdc_Char)0x0, /* [6348] */ - (xdc_Char)0x6d, /* [6349] */ - (xdc_Char)0x33, /* [6350] */ - (xdc_Char)0x2e, /* [6351] */ - (xdc_Char)0x0, /* [6352] */ - (xdc_Char)0x48, /* [6353] */ - (xdc_Char)0x77, /* [6354] */ - (xdc_Char)0x69, /* [6355] */ - (xdc_Char)0x0, /* [6356] */ - (xdc_Char)0x49, /* [6357] */ - (xdc_Char)0x6e, /* [6358] */ - (xdc_Char)0x74, /* [6359] */ - (xdc_Char)0x72, /* [6360] */ - (xdc_Char)0x69, /* [6361] */ - (xdc_Char)0x6e, /* [6362] */ - (xdc_Char)0x73, /* [6363] */ - (xdc_Char)0x69, /* [6364] */ - (xdc_Char)0x63, /* [6365] */ - (xdc_Char)0x73, /* [6366] */ - (xdc_Char)0x53, /* [6367] */ - (xdc_Char)0x75, /* [6368] */ - (xdc_Char)0x70, /* [6369] */ - (xdc_Char)0x70, /* [6370] */ - (xdc_Char)0x6f, /* [6371] */ - (xdc_Char)0x72, /* [6372] */ - (xdc_Char)0x74, /* [6373] */ - (xdc_Char)0x0, /* [6374] */ - (xdc_Char)0x54, /* [6375] */ - (xdc_Char)0x61, /* [6376] */ - (xdc_Char)0x73, /* [6377] */ - (xdc_Char)0x6b, /* [6378] */ - (xdc_Char)0x53, /* [6379] */ - (xdc_Char)0x75, /* [6380] */ - (xdc_Char)0x70, /* [6381] */ - (xdc_Char)0x70, /* [6382] */ - (xdc_Char)0x6f, /* [6383] */ - (xdc_Char)0x72, /* [6384] */ - (xdc_Char)0x74, /* [6385] */ - (xdc_Char)0x0, /* [6386] */ - (xdc_Char)0x6b, /* [6387] */ - (xdc_Char)0x6e, /* [6388] */ - (xdc_Char)0x6c, /* [6389] */ - (xdc_Char)0x2e, /* [6390] */ - (xdc_Char)0x0, /* [6391] */ - (xdc_Char)0x43, /* [6392] */ - (xdc_Char)0x6c, /* [6393] */ - (xdc_Char)0x6f, /* [6394] */ - (xdc_Char)0x63, /* [6395] */ - (xdc_Char)0x6b, /* [6396] */ - (xdc_Char)0x0, /* [6397] */ - (xdc_Char)0x49, /* [6398] */ - (xdc_Char)0x64, /* [6399] */ - (xdc_Char)0x6c, /* [6400] */ - (xdc_Char)0x65, /* [6401] */ - (xdc_Char)0x0, /* [6402] */ - (xdc_Char)0x49, /* [6403] */ - (xdc_Char)0x6e, /* [6404] */ - (xdc_Char)0x74, /* [6405] */ - (xdc_Char)0x72, /* [6406] */ - (xdc_Char)0x69, /* [6407] */ - (xdc_Char)0x6e, /* [6408] */ - (xdc_Char)0x73, /* [6409] */ - (xdc_Char)0x69, /* [6410] */ - (xdc_Char)0x63, /* [6411] */ - (xdc_Char)0x73, /* [6412] */ - (xdc_Char)0x0, /* [6413] */ - (xdc_Char)0x45, /* [6414] */ - (xdc_Char)0x76, /* [6415] */ - (xdc_Char)0x65, /* [6416] */ - (xdc_Char)0x6e, /* [6417] */ - (xdc_Char)0x74, /* [6418] */ - (xdc_Char)0x0, /* [6419] */ - (xdc_Char)0x4d, /* [6420] */ - (xdc_Char)0x61, /* [6421] */ - (xdc_Char)0x69, /* [6422] */ - (xdc_Char)0x6c, /* [6423] */ - (xdc_Char)0x62, /* [6424] */ - (xdc_Char)0x6f, /* [6425] */ - (xdc_Char)0x78, /* [6426] */ - (xdc_Char)0x0, /* [6427] */ - (xdc_Char)0x51, /* [6428] */ - (xdc_Char)0x75, /* [6429] */ - (xdc_Char)0x65, /* [6430] */ - (xdc_Char)0x75, /* [6431] */ - (xdc_Char)0x65, /* [6432] */ - (xdc_Char)0x0, /* [6433] */ - (xdc_Char)0x53, /* [6434] */ - (xdc_Char)0x65, /* [6435] */ - (xdc_Char)0x6d, /* [6436] */ - (xdc_Char)0x61, /* [6437] */ - (xdc_Char)0x70, /* [6438] */ - (xdc_Char)0x68, /* [6439] */ - (xdc_Char)0x6f, /* [6440] */ - (xdc_Char)0x72, /* [6441] */ - (xdc_Char)0x65, /* [6442] */ - (xdc_Char)0x0, /* [6443] */ - (xdc_Char)0x53, /* [6444] */ - (xdc_Char)0x77, /* [6445] */ - (xdc_Char)0x69, /* [6446] */ - (xdc_Char)0x0, /* [6447] */ - (xdc_Char)0x54, /* [6448] */ - (xdc_Char)0x61, /* [6449] */ - (xdc_Char)0x73, /* [6450] */ - (xdc_Char)0x6b, /* [6451] */ - (xdc_Char)0x0, /* [6452] */ - (xdc_Char)0x68, /* [6453] */ - (xdc_Char)0x61, /* [6454] */ - (xdc_Char)0x6c, /* [6455] */ - (xdc_Char)0x2e, /* [6456] */ - (xdc_Char)0x0, /* [6457] */ - (xdc_Char)0x53, /* [6458] */ - (xdc_Char)0x65, /* [6459] */ - (xdc_Char)0x63, /* [6460] */ - (xdc_Char)0x6f, /* [6461] */ - (xdc_Char)0x6e, /* [6462] */ - (xdc_Char)0x64, /* [6463] */ - (xdc_Char)0x73, /* [6464] */ - (xdc_Char)0x0, /* [6465] */ - (xdc_Char)0x6c, /* [6466] */ - (xdc_Char)0x6d, /* [6467] */ - (xdc_Char)0x34, /* [6468] */ - (xdc_Char)0x2e, /* [6469] */ - (xdc_Char)0x0, /* [6470] */ - (xdc_Char)0x54, /* [6471] */ - (xdc_Char)0x69, /* [6472] */ - (xdc_Char)0x6d, /* [6473] */ - (xdc_Char)0x65, /* [6474] */ - (xdc_Char)0x73, /* [6475] */ - (xdc_Char)0x74, /* [6476] */ - (xdc_Char)0x61, /* [6477] */ - (xdc_Char)0x6d, /* [6478] */ - (xdc_Char)0x70, /* [6479] */ - (xdc_Char)0x50, /* [6480] */ - (xdc_Char)0x72, /* [6481] */ - (xdc_Char)0x6f, /* [6482] */ - (xdc_Char)0x76, /* [6483] */ - (xdc_Char)0x69, /* [6484] */ - (xdc_Char)0x64, /* [6485] */ - (xdc_Char)0x65, /* [6486] */ - (xdc_Char)0x72, /* [6487] */ - (xdc_Char)0x0, /* [6488] */ - (xdc_Char)0x54, /* [6489] */ - (xdc_Char)0x69, /* [6490] */ - (xdc_Char)0x6d, /* [6491] */ - (xdc_Char)0x65, /* [6492] */ - (xdc_Char)0x72, /* [6493] */ - (xdc_Char)0x0, /* [6494] */ - (xdc_Char)0x53, /* [6495] */ - (xdc_Char)0x79, /* [6496] */ - (xdc_Char)0x6e, /* [6497] */ - (xdc_Char)0x63, /* [6498] */ - (xdc_Char)0x0, /* [6499] */ - (xdc_Char)0x53, /* [6500] */ - (xdc_Char)0x65, /* [6501] */ - (xdc_Char)0x6d, /* [6502] */ - (xdc_Char)0x54, /* [6503] */ - (xdc_Char)0x68, /* [6504] */ - (xdc_Char)0x72, /* [6505] */ - (xdc_Char)0x65, /* [6506] */ - (xdc_Char)0x61, /* [6507] */ - (xdc_Char)0x64, /* [6508] */ - (xdc_Char)0x0, /* [6509] */ - (xdc_Char)0x53, /* [6510] */ - (xdc_Char)0x79, /* [6511] */ - (xdc_Char)0x6e, /* [6512] */ - (xdc_Char)0x63, /* [6513] */ - (xdc_Char)0x47, /* [6514] */ - (xdc_Char)0x65, /* [6515] */ - (xdc_Char)0x6e, /* [6516] */ - (xdc_Char)0x65, /* [6517] */ - (xdc_Char)0x72, /* [6518] */ - (xdc_Char)0x69, /* [6519] */ - (xdc_Char)0x63, /* [6520] */ - (xdc_Char)0x0, /* [6521] */ - (xdc_Char)0x53, /* [6522] */ - (xdc_Char)0x79, /* [6523] */ - (xdc_Char)0x6e, /* [6524] */ - (xdc_Char)0x63, /* [6525] */ - (xdc_Char)0x4e, /* [6526] */ - (xdc_Char)0x75, /* [6527] */ - (xdc_Char)0x6c, /* [6528] */ - (xdc_Char)0x6c, /* [6529] */ - (xdc_Char)0x0, /* [6530] */ - (xdc_Char)0x53, /* [6531] */ - (xdc_Char)0x79, /* [6532] */ - (xdc_Char)0x6e, /* [6533] */ - (xdc_Char)0x63, /* [6534] */ - (xdc_Char)0x53, /* [6535] */ - (xdc_Char)0x65, /* [6536] */ - (xdc_Char)0x6d, /* [6537] */ - (xdc_Char)0x54, /* [6538] */ - (xdc_Char)0x68, /* [6539] */ - (xdc_Char)0x72, /* [6540] */ - (xdc_Char)0x65, /* [6541] */ - (xdc_Char)0x61, /* [6542] */ - (xdc_Char)0x64, /* [6543] */ - (xdc_Char)0x0, /* [6544] */ - (xdc_Char)0x69, /* [6545] */ - (xdc_Char)0x6f, /* [6546] */ - (xdc_Char)0x2e, /* [6547] */ - (xdc_Char)0x0, /* [6548] */ - (xdc_Char)0x44, /* [6549] */ - (xdc_Char)0x45, /* [6550] */ - (xdc_Char)0x56, /* [6551] */ - (xdc_Char)0x0, /* [6552] */ - (xdc_Char)0x47, /* [6553] */ - (xdc_Char)0x49, /* [6554] */ - (xdc_Char)0x4f, /* [6555] */ - (xdc_Char)0x0, /* [6556] */ - (xdc_Char)0x67, /* [6557] */ - (xdc_Char)0x61, /* [6558] */ - (xdc_Char)0x74, /* [6559] */ - (xdc_Char)0x65, /* [6560] */ - (xdc_Char)0x73, /* [6561] */ - (xdc_Char)0x2e, /* [6562] */ - (xdc_Char)0x0, /* [6563] */ - (xdc_Char)0x47, /* [6564] */ - (xdc_Char)0x61, /* [6565] */ - (xdc_Char)0x74, /* [6566] */ - (xdc_Char)0x65, /* [6567] */ - (xdc_Char)0x48, /* [6568] */ - (xdc_Char)0x77, /* [6569] */ - (xdc_Char)0x69, /* [6570] */ - (xdc_Char)0x0, /* [6571] */ - (xdc_Char)0x47, /* [6572] */ - (xdc_Char)0x61, /* [6573] */ - (xdc_Char)0x74, /* [6574] */ - (xdc_Char)0x65, /* [6575] */ - (xdc_Char)0x4d, /* [6576] */ - (xdc_Char)0x75, /* [6577] */ - (xdc_Char)0x74, /* [6578] */ - (xdc_Char)0x65, /* [6579] */ - (xdc_Char)0x78, /* [6580] */ - (xdc_Char)0x0, /* [6581] */ - (xdc_Char)0x78, /* [6582] */ - (xdc_Char)0x64, /* [6583] */ - (xdc_Char)0x63, /* [6584] */ - (xdc_Char)0x72, /* [6585] */ - (xdc_Char)0x75, /* [6586] */ - (xdc_Char)0x6e, /* [6587] */ - (xdc_Char)0x74, /* [6588] */ - (xdc_Char)0x69, /* [6589] */ - (xdc_Char)0x6d, /* [6590] */ - (xdc_Char)0x65, /* [6591] */ - (xdc_Char)0x2e, /* [6592] */ - (xdc_Char)0x0, /* [6593] */ - (xdc_Char)0x53, /* [6594] */ - (xdc_Char)0x65, /* [6595] */ - (xdc_Char)0x6d, /* [6596] */ - (xdc_Char)0x54, /* [6597] */ - (xdc_Char)0x68, /* [6598] */ - (xdc_Char)0x72, /* [6599] */ - (xdc_Char)0x65, /* [6600] */ - (xdc_Char)0x61, /* [6601] */ - (xdc_Char)0x64, /* [6602] */ - (xdc_Char)0x53, /* [6603] */ - (xdc_Char)0x75, /* [6604] */ - (xdc_Char)0x70, /* [6605] */ - (xdc_Char)0x70, /* [6606] */ - (xdc_Char)0x6f, /* [6607] */ - (xdc_Char)0x72, /* [6608] */ - (xdc_Char)0x74, /* [6609] */ - (xdc_Char)0x0, /* [6610] */ - (xdc_Char)0x68, /* [6611] */ - (xdc_Char)0x65, /* [6612] */ - (xdc_Char)0x61, /* [6613] */ - (xdc_Char)0x70, /* [6614] */ - (xdc_Char)0x73, /* [6615] */ - (xdc_Char)0x2e, /* [6616] */ - (xdc_Char)0x0, /* [6617] */ - (xdc_Char)0x48, /* [6618] */ - (xdc_Char)0x65, /* [6619] */ - (xdc_Char)0x61, /* [6620] */ - (xdc_Char)0x70, /* [6621] */ - (xdc_Char)0x4d, /* [6622] */ - (xdc_Char)0x65, /* [6623] */ - (xdc_Char)0x6d, /* [6624] */ - (xdc_Char)0x0, /* [6625] */ - (xdc_Char)0x61, /* [6626] */ - (xdc_Char)0x64, /* [6627] */ - (xdc_Char)0x63, /* [6628] */ - (xdc_Char)0x48, /* [6629] */ - (xdc_Char)0x77, /* [6630] */ - (xdc_Char)0x69, /* [6631] */ - (xdc_Char)0x0, /* [6632] */ - (xdc_Char)0x73, /* [6633] */ - (xdc_Char)0x79, /* [6634] */ - (xdc_Char)0x73, /* [6635] */ - (xdc_Char)0x54, /* [6636] */ - (xdc_Char)0x69, /* [6637] */ - (xdc_Char)0x63, /* [6638] */ - (xdc_Char)0x6b, /* [6639] */ - (xdc_Char)0x0, /* [6640] */ - (xdc_Char)0x70, /* [6641] */ - (xdc_Char)0x6f, /* [6642] */ - (xdc_Char)0x72, /* [6643] */ - (xdc_Char)0x74, /* [6644] */ - (xdc_Char)0x70, /* [6645] */ - (xdc_Char)0x69, /* [6646] */ - (xdc_Char)0x6e, /* [6647] */ - (xdc_Char)0x74, /* [6648] */ - (xdc_Char)0x0, /* [6649] */ - (xdc_Char)0x74, /* [6650] */ - (xdc_Char)0x69, /* [6651] */ - (xdc_Char)0x6d, /* [6652] */ - (xdc_Char)0x65, /* [6653] */ - (xdc_Char)0x72, /* [6654] */ - (xdc_Char)0x30, /* [6655] */ - (xdc_Char)0x0, /* [6656] */ - (xdc_Char)0x77, /* [6657] */ - (xdc_Char)0x61, /* [6658] */ - (xdc_Char)0x74, /* [6659] */ - (xdc_Char)0x63, /* [6660] */ - (xdc_Char)0x68, /* [6661] */ - (xdc_Char)0x64, /* [6662] */ - (xdc_Char)0x6f, /* [6663] */ - (xdc_Char)0x67, /* [6664] */ - (xdc_Char)0x0, /* [6665] */ - (xdc_Char)0x74, /* [6666] */ - (xdc_Char)0x69, /* [6667] */ - (xdc_Char)0x6d, /* [6668] */ - (xdc_Char)0x65, /* [6669] */ - (xdc_Char)0x72, /* [6670] */ - (xdc_Char)0x32, /* [6671] */ - (xdc_Char)0x0, /* [6672] */ - (xdc_Char)0x74, /* [6673] */ - (xdc_Char)0x69, /* [6674] */ - (xdc_Char)0x6d, /* [6675] */ - (xdc_Char)0x65, /* [6676] */ - (xdc_Char)0x72, /* [6677] */ - (xdc_Char)0x31, /* [6678] */ - (xdc_Char)0x0, /* [6679] */ - (xdc_Char)0x74, /* [6680] */ - (xdc_Char)0x69, /* [6681] */ - (xdc_Char)0x6d, /* [6682] */ - (xdc_Char)0x65, /* [6683] */ - (xdc_Char)0x72, /* [6684] */ - (xdc_Char)0x33, /* [6685] */ - (xdc_Char)0x0, /* [6686] */ - (xdc_Char)0x69, /* [6687] */ - (xdc_Char)0x6e, /* [6688] */ - (xdc_Char)0x69, /* [6689] */ - (xdc_Char)0x74, /* [6690] */ - (xdc_Char)0x43, /* [6691] */ - (xdc_Char)0x6f, /* [6692] */ - (xdc_Char)0x6e, /* [6693] */ - (xdc_Char)0x6e, /* [6694] */ - (xdc_Char)0x65, /* [6695] */ - (xdc_Char)0x63, /* [6696] */ - (xdc_Char)0x74, /* [6697] */ - (xdc_Char)0x69, /* [6698] */ - (xdc_Char)0x6f, /* [6699] */ - (xdc_Char)0x6e, /* [6700] */ - (xdc_Char)0x53, /* [6701] */ - (xdc_Char)0x65, /* [6702] */ - (xdc_Char)0x6d, /* [6703] */ - (xdc_Char)0x0, /* [6704] */ - (xdc_Char)0x61, /* [6705] */ - (xdc_Char)0x64, /* [6706] */ - (xdc_Char)0x63, /* [6707] */ - (xdc_Char)0x52, /* [6708] */ - (xdc_Char)0x65, /* [6709] */ - (xdc_Char)0x73, /* [6710] */ - (xdc_Char)0x75, /* [6711] */ - (xdc_Char)0x6c, /* [6712] */ - (xdc_Char)0x74, /* [6713] */ - (xdc_Char)0x53, /* [6714] */ - (xdc_Char)0x65, /* [6715] */ - (xdc_Char)0x6d, /* [6716] */ - (xdc_Char)0x0, /* [6717] */ - (xdc_Char)0x75, /* [6718] */ - (xdc_Char)0x70, /* [6719] */ - (xdc_Char)0x64, /* [6720] */ - (xdc_Char)0x61, /* [6721] */ - (xdc_Char)0x74, /* [6722] */ - (xdc_Char)0x65, /* [6723] */ - (xdc_Char)0x53, /* [6724] */ - (xdc_Char)0x65, /* [6725] */ - (xdc_Char)0x6d, /* [6726] */ - (xdc_Char)0x0, /* [6727] */ - (xdc_Char)0x52, /* [6728] */ - (xdc_Char)0x65, /* [6729] */ - (xdc_Char)0x63, /* [6730] */ - (xdc_Char)0x6f, /* [6731] */ - (xdc_Char)0x6e, /* [6732] */ - (xdc_Char)0x6e, /* [6733] */ - (xdc_Char)0x65, /* [6734] */ - (xdc_Char)0x63, /* [6735] */ - (xdc_Char)0x74, /* [6736] */ - (xdc_Char)0x53, /* [6737] */ - (xdc_Char)0x65, /* [6738] */ - (xdc_Char)0x6d, /* [6739] */ - (xdc_Char)0x0, /* [6740] */ - (xdc_Char)0x4d, /* [6741] */ - (xdc_Char)0x69, /* [6742] */ - (xdc_Char)0x6c, /* [6743] */ - (xdc_Char)0x6c, /* [6744] */ - (xdc_Char)0x69, /* [6745] */ - (xdc_Char)0x53, /* [6746] */ - (xdc_Char)0x65, /* [6747] */ - (xdc_Char)0x63, /* [6748] */ - (xdc_Char)0x6f, /* [6749] */ - (xdc_Char)0x6e, /* [6750] */ - (xdc_Char)0x64, /* [6751] */ - (xdc_Char)0x0, /* [6752] */ - (xdc_Char)0x63, /* [6753] */ - (xdc_Char)0x6f, /* [6754] */ - (xdc_Char)0x6e, /* [6755] */ - (xdc_Char)0x74, /* [6756] */ - (xdc_Char)0x72, /* [6757] */ - (xdc_Char)0x6f, /* [6758] */ - (xdc_Char)0x6c, /* [6759] */ - (xdc_Char)0x0, /* [6760] */ - (xdc_Char)0x41, /* [6761] */ - (xdc_Char)0x6c, /* [6762] */ - (xdc_Char)0x61, /* [6763] */ - (xdc_Char)0x72, /* [6764] */ - (xdc_Char)0x6d, /* [6765] */ - (xdc_Char)0x48, /* [6766] */ - (xdc_Char)0x61, /* [6767] */ - (xdc_Char)0x6e, /* [6768] */ - (xdc_Char)0x64, /* [6769] */ - (xdc_Char)0x6c, /* [6770] */ - (xdc_Char)0x69, /* [6771] */ - (xdc_Char)0x6e, /* [6772] */ - (xdc_Char)0x67, /* [6773] */ - (xdc_Char)0x0, /* [6774] */ - (xdc_Char)0x63, /* [6775] */ - (xdc_Char)0x6f, /* [6776] */ - (xdc_Char)0x6d, /* [6777] */ - (xdc_Char)0x6d, /* [6778] */ - (xdc_Char)0x75, /* [6779] */ - (xdc_Char)0x6e, /* [6780] */ - (xdc_Char)0x69, /* [6781] */ - (xdc_Char)0x63, /* [6782] */ - (xdc_Char)0x61, /* [6783] */ - (xdc_Char)0x74, /* [6784] */ - (xdc_Char)0x69, /* [6785] */ - (xdc_Char)0x6f, /* [6786] */ - (xdc_Char)0x6e, /* [6787] */ - (xdc_Char)0x54, /* [6788] */ - (xdc_Char)0x78, /* [6789] */ - (xdc_Char)0x0, /* [6790] */ - (xdc_Char)0x70, /* [6791] */ - (xdc_Char)0x72, /* [6792] */ - (xdc_Char)0x6f, /* [6793] */ - (xdc_Char)0x63, /* [6794] */ - (xdc_Char)0x65, /* [6795] */ - (xdc_Char)0x73, /* [6796] */ - (xdc_Char)0x73, /* [6797] */ - (xdc_Char)0x0, /* [6798] */ - (xdc_Char)0x48, /* [6799] */ - (xdc_Char)0x65, /* [6800] */ - (xdc_Char)0x61, /* [6801] */ - (xdc_Char)0x74, /* [6802] */ - (xdc_Char)0x65, /* [6803] */ - (xdc_Char)0x72, /* [6804] */ - (xdc_Char)0x73, /* [6805] */ - (xdc_Char)0x43, /* [6806] */ - (xdc_Char)0x6f, /* [6807] */ - (xdc_Char)0x6e, /* [6808] */ - (xdc_Char)0x74, /* [6809] */ - (xdc_Char)0x72, /* [6810] */ - (xdc_Char)0x6f, /* [6811] */ - (xdc_Char)0x6c, /* [6812] */ - (xdc_Char)0x0, /* [6813] */ - (xdc_Char)0x63, /* [6814] */ - (xdc_Char)0x6f, /* [6815] */ - (xdc_Char)0x6d, /* [6816] */ - (xdc_Char)0x6d, /* [6817] */ - (xdc_Char)0x75, /* [6818] */ - (xdc_Char)0x6e, /* [6819] */ - (xdc_Char)0x69, /* [6820] */ - (xdc_Char)0x63, /* [6821] */ - (xdc_Char)0x61, /* [6822] */ - (xdc_Char)0x74, /* [6823] */ - (xdc_Char)0x69, /* [6824] */ - (xdc_Char)0x6f, /* [6825] */ - (xdc_Char)0x6e, /* [6826] */ - (xdc_Char)0x52, /* [6827] */ - (xdc_Char)0x78, /* [6828] */ - (xdc_Char)0x0, /* [6829] */ - (xdc_Char)0x4d, /* [6830] */ - (xdc_Char)0x69, /* [6831] */ - (xdc_Char)0x6c, /* [6832] */ - (xdc_Char)0x6c, /* [6833] */ - (xdc_Char)0x69, /* [6834] */ - (xdc_Char)0x53, /* [6835] */ - (xdc_Char)0x65, /* [6836] */ - (xdc_Char)0x63, /* [6837] */ - (xdc_Char)0x6f, /* [6838] */ - (xdc_Char)0x6e, /* [6839] */ - (xdc_Char)0x64, /* [6840] */ - (xdc_Char)0x4c, /* [6841] */ - (xdc_Char)0x6f, /* [6842] */ - (xdc_Char)0x77, /* [6843] */ - (xdc_Char)0x0, /* [6844] */ - (xdc_Char)0x63, /* [6845] */ - (xdc_Char)0x6f, /* [6846] */ - (xdc_Char)0x6e, /* [6847] */ - (xdc_Char)0x74, /* [6848] */ - (xdc_Char)0x72, /* [6849] */ - (xdc_Char)0x6f, /* [6850] */ - (xdc_Char)0x6c, /* [6851] */ - (xdc_Char)0x4c, /* [6852] */ - (xdc_Char)0x6f, /* [6853] */ - (xdc_Char)0x77, /* [6854] */ - (xdc_Char)0x0, /* [6855] */ - (xdc_Char)0x44, /* [6856] */ - (xdc_Char)0x69, /* [6857] */ - (xdc_Char)0x61, /* [6858] */ - (xdc_Char)0x67, /* [6859] */ - (xdc_Char)0x6e, /* [6860] */ - (xdc_Char)0x6f, /* [6861] */ - (xdc_Char)0x73, /* [6862] */ - (xdc_Char)0x74, /* [6863] */ - (xdc_Char)0x69, /* [6864] */ - (xdc_Char)0x63, /* [6865] */ - (xdc_Char)0x73, /* [6866] */ - (xdc_Char)0x0, /* [6867] */ - (xdc_Char)0x61, /* [6868] */ - (xdc_Char)0x64, /* [6869] */ - (xdc_Char)0x63, /* [6870] */ - (xdc_Char)0x50, /* [6871] */ - (xdc_Char)0x72, /* [6872] */ - (xdc_Char)0x6f, /* [6873] */ - (xdc_Char)0x63, /* [6874] */ - (xdc_Char)0x65, /* [6875] */ - (xdc_Char)0x73, /* [6876] */ - (xdc_Char)0x73, /* [6877] */ - (xdc_Char)0x0, /* [6878] */ - (xdc_Char)0x72, /* [6879] */ - (xdc_Char)0x65, /* [6880] */ - (xdc_Char)0x70, /* [6881] */ - (xdc_Char)0x6f, /* [6882] */ - (xdc_Char)0x72, /* [6883] */ - (xdc_Char)0x74, /* [6884] */ - (xdc_Char)0x0, /* [6885] */ - (xdc_Char)0x75, /* [6886] */ - (xdc_Char)0x70, /* [6887] */ - (xdc_Char)0x64, /* [6888] */ - (xdc_Char)0x61, /* [6889] */ - (xdc_Char)0x74, /* [6890] */ - (xdc_Char)0x65, /* [6891] */ - (xdc_Char)0x0, /* [6892] */ -}; - -/* --> xdc_runtime_Text_nodeTab__A */ -#pragma DATA_SECTION(xdc_runtime_Text_nodeTab__A, ".const:xdc_runtime_Text_nodeTab__A"); -const __T1_xdc_runtime_Text_nodeTab xdc_runtime_Text_nodeTab__A[65] = { - { - (xdc_Bits16)0x0, /* left */ - (xdc_Bits16)0x0, /* right */ - }, /* [0] */ - { - (xdc_Bits16)0x1812, /* left */ - (xdc_Bits16)0x1817, /* right */ - }, /* [1] */ - { - (xdc_Bits16)0x8001, /* left */ - (xdc_Bits16)0x1820, /* right */ - }, /* [2] */ - { - (xdc_Bits16)0x8001, /* left */ - (xdc_Bits16)0x1827, /* right */ - }, /* [3] */ - { - (xdc_Bits16)0x8001, /* left */ - (xdc_Bits16)0x182c, /* right */ - }, /* [4] */ - { - (xdc_Bits16)0x8001, /* left */ - (xdc_Bits16)0x1835, /* right */ - }, /* [5] */ - { - (xdc_Bits16)0x8001, /* left */ - (xdc_Bits16)0x183b, /* right */ - }, /* [6] */ - { - (xdc_Bits16)0x8001, /* left */ - (xdc_Bits16)0x1841, /* right */ - }, /* [7] */ - { - (xdc_Bits16)0x8001, /* left */ - (xdc_Bits16)0x1846, /* right */ - }, /* [8] */ - { - (xdc_Bits16)0x8001, /* left */ - (xdc_Bits16)0x184a, /* right */ - }, /* [9] */ - { - (xdc_Bits16)0x8001, /* left */ - (xdc_Bits16)0x184f, /* right */ - }, /* [10] */ - { - (xdc_Bits16)0x8001, /* left */ - (xdc_Bits16)0x1856, /* right */ - }, /* [11] */ - { - (xdc_Bits16)0x8001, /* left */ - (xdc_Bits16)0x185e, /* right */ - }, /* [12] */ - { - (xdc_Bits16)0x8001, /* left */ - (xdc_Bits16)0x1867, /* right */ - }, /* [13] */ - { - (xdc_Bits16)0x8001, /* left */ - (xdc_Bits16)0x186f, /* right */ - }, /* [14] */ - { - (xdc_Bits16)0x8001, /* left */ - (xdc_Bits16)0x1876, /* right */ - }, /* [15] */ - { - (xdc_Bits16)0x8001, /* left */ - (xdc_Bits16)0x187d, /* right */ - }, /* [16] */ - { - (xdc_Bits16)0x8001, /* left */ - (xdc_Bits16)0x1882, /* right */ - }, /* [17] */ - { - (xdc_Bits16)0x188c, /* left */ - (xdc_Bits16)0x1890, /* right */ - }, /* [18] */ - { - (xdc_Bits16)0x8012, /* left */ - (xdc_Bits16)0x1899, /* right */ - }, /* [19] */ - { - (xdc_Bits16)0x8013, /* left */ - (xdc_Bits16)0x189e, /* right */ - }, /* [20] */ - { - (xdc_Bits16)0x8014, /* left */ - (xdc_Bits16)0x18a8, /* right */ - }, /* [21] */ - { - (xdc_Bits16)0x8015, /* left */ - (xdc_Bits16)0x18ae, /* right */ - }, /* [22] */ - { - (xdc_Bits16)0x8016, /* left */ - (xdc_Bits16)0x18b2, /* right */ - }, /* [23] */ - { - (xdc_Bits16)0x188c, /* left */ - (xdc_Bits16)0x18b7, /* right */ - }, /* [24] */ - { - (xdc_Bits16)0x8018, /* left */ - (xdc_Bits16)0x18c0, /* right */ - }, /* [25] */ - { - (xdc_Bits16)0x8018, /* left */ - (xdc_Bits16)0x18c5, /* right */ - }, /* [26] */ - { - (xdc_Bits16)0x801a, /* left */ - (xdc_Bits16)0x1899, /* right */ - }, /* [27] */ - { - (xdc_Bits16)0x801b, /* left */ - (xdc_Bits16)0x18cd, /* right */ - }, /* [28] */ - { - (xdc_Bits16)0x801c, /* left */ - (xdc_Bits16)0x18d1, /* right */ - }, /* [29] */ - { - (xdc_Bits16)0x801c, /* left */ - (xdc_Bits16)0x18d5, /* right */ - }, /* [30] */ - { - (xdc_Bits16)0x801c, /* left */ - (xdc_Bits16)0x18e7, /* right */ - }, /* [31] */ - { - (xdc_Bits16)0x8018, /* left */ - (xdc_Bits16)0x18f3, /* right */ - }, /* [32] */ - { - (xdc_Bits16)0x8020, /* left */ - (xdc_Bits16)0x18f8, /* right */ - }, /* [33] */ - { - (xdc_Bits16)0x8020, /* left */ - (xdc_Bits16)0x18fe, /* right */ - }, /* [34] */ - { - (xdc_Bits16)0x8020, /* left */ - (xdc_Bits16)0x1903, /* right */ - }, /* [35] */ - { - (xdc_Bits16)0x8020, /* left */ - (xdc_Bits16)0x190e, /* right */ - }, /* [36] */ - { - (xdc_Bits16)0x8020, /* left */ - (xdc_Bits16)0x1914, /* right */ - }, /* [37] */ - { - (xdc_Bits16)0x8020, /* left */ - (xdc_Bits16)0x191c, /* right */ - }, /* [38] */ - { - (xdc_Bits16)0x8020, /* left */ - (xdc_Bits16)0x1922, /* right */ - }, /* [39] */ - { - (xdc_Bits16)0x8020, /* left */ - (xdc_Bits16)0x192c, /* right */ - }, /* [40] */ - { - (xdc_Bits16)0x8020, /* left */ - (xdc_Bits16)0x1930, /* right */ - }, /* [41] */ - { - (xdc_Bits16)0x8018, /* left */ - (xdc_Bits16)0x1935, /* right */ - }, /* [42] */ - { - (xdc_Bits16)0x802a, /* left */ - (xdc_Bits16)0x18d1, /* right */ - }, /* [43] */ - { - (xdc_Bits16)0x802a, /* left */ - (xdc_Bits16)0x193a, /* right */ - }, /* [44] */ - { - (xdc_Bits16)0x801b, /* left */ - (xdc_Bits16)0x1942, /* right */ - }, /* [45] */ - { - (xdc_Bits16)0x802d, /* left */ - (xdc_Bits16)0x193a, /* right */ - }, /* [46] */ - { - (xdc_Bits16)0x802d, /* left */ - (xdc_Bits16)0x1947, /* right */ - }, /* [47] */ - { - (xdc_Bits16)0x802d, /* left */ - (xdc_Bits16)0x1959, /* right */ - }, /* [48] */ - { - (xdc_Bits16)0x8001, /* left */ - (xdc_Bits16)0x18f3, /* right */ - }, /* [49] */ - { - (xdc_Bits16)0x8031, /* left */ - (xdc_Bits16)0x195f, /* right */ - }, /* [50] */ - { - (xdc_Bits16)0x8031, /* left */ - (xdc_Bits16)0x1964, /* right */ - }, /* [51] */ - { - (xdc_Bits16)0x8031, /* left */ - (xdc_Bits16)0x196e, /* right */ - }, /* [52] */ - { - (xdc_Bits16)0x8031, /* left */ - (xdc_Bits16)0x197a, /* right */ - }, /* [53] */ - { - (xdc_Bits16)0x8031, /* left */ - (xdc_Bits16)0x1983, /* right */ - }, /* [54] */ - { - (xdc_Bits16)0x8018, /* left */ - (xdc_Bits16)0x1991, /* right */ - }, /* [55] */ - { - (xdc_Bits16)0x8037, /* left */ - (xdc_Bits16)0x1995, /* right */ - }, /* [56] */ - { - (xdc_Bits16)0x8037, /* left */ - (xdc_Bits16)0x1999, /* right */ - }, /* [57] */ - { - (xdc_Bits16)0x8018, /* left */ - (xdc_Bits16)0x199d, /* right */ - }, /* [58] */ - { - (xdc_Bits16)0x803a, /* left */ - (xdc_Bits16)0x19a4, /* right */ - }, /* [59] */ - { - (xdc_Bits16)0x803a, /* left */ - (xdc_Bits16)0x19ac, /* right */ - }, /* [60] */ - { - (xdc_Bits16)0x8018, /* left */ - (xdc_Bits16)0x19b6, /* right */ - }, /* [61] */ - { - (xdc_Bits16)0x803d, /* left */ - (xdc_Bits16)0x19c2, /* right */ - }, /* [62] */ - { - (xdc_Bits16)0x8018, /* left */ - (xdc_Bits16)0x19d3, /* right */ - }, /* [63] */ - { - (xdc_Bits16)0x803f, /* left */ - (xdc_Bits16)0x19da, /* right */ - }, /* [64] */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Module__diagsEnabled__C, ".const:xdc_runtime_Text_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_Text_Module__diagsEnabled xdc_runtime_Text_Module__diagsEnabled__C = (xdc_Bits32)0x10; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Module__diagsIncluded__C, ".const:xdc_runtime_Text_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_Text_Module__diagsIncluded xdc_runtime_Text_Module__diagsIncluded__C = (xdc_Bits32)0x10; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Module__diagsMask__C, ".const:xdc_runtime_Text_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_Text_Module__diagsMask xdc_runtime_Text_Module__diagsMask__C = ((CT__xdc_runtime_Text_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Module__gateObj__C, ".const:xdc_runtime_Text_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_Text_Module__gateObj xdc_runtime_Text_Module__gateObj__C = ((CT__xdc_runtime_Text_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Module__gatePrms__C, ".const:xdc_runtime_Text_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_Text_Module__gatePrms xdc_runtime_Text_Module__gatePrms__C = ((CT__xdc_runtime_Text_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Module__id__C, ".const:xdc_runtime_Text_Module__id__C"); -__FAR__ const CT__xdc_runtime_Text_Module__id xdc_runtime_Text_Module__id__C = (xdc_Bits16)0x8010; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Module__loggerDefined__C, ".const:xdc_runtime_Text_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_Text_Module__loggerDefined xdc_runtime_Text_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Module__loggerObj__C, ".const:xdc_runtime_Text_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_Text_Module__loggerObj xdc_runtime_Text_Module__loggerObj__C = ((CT__xdc_runtime_Text_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Module__loggerFxn0__C, ".const:xdc_runtime_Text_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_Text_Module__loggerFxn0 xdc_runtime_Text_Module__loggerFxn0__C = ((CT__xdc_runtime_Text_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Module__loggerFxn1__C, ".const:xdc_runtime_Text_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_Text_Module__loggerFxn1 xdc_runtime_Text_Module__loggerFxn1__C = ((CT__xdc_runtime_Text_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Module__loggerFxn2__C, ".const:xdc_runtime_Text_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_Text_Module__loggerFxn2 xdc_runtime_Text_Module__loggerFxn2__C = ((CT__xdc_runtime_Text_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Module__loggerFxn4__C, ".const:xdc_runtime_Text_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_Text_Module__loggerFxn4 xdc_runtime_Text_Module__loggerFxn4__C = ((CT__xdc_runtime_Text_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Module__loggerFxn8__C, ".const:xdc_runtime_Text_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_Text_Module__loggerFxn8 xdc_runtime_Text_Module__loggerFxn8__C = ((CT__xdc_runtime_Text_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Module__startupDoneFxn__C, ".const:xdc_runtime_Text_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_Text_Module__startupDoneFxn xdc_runtime_Text_Module__startupDoneFxn__C = ((CT__xdc_runtime_Text_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Object__count__C, ".const:xdc_runtime_Text_Object__count__C"); -__FAR__ const CT__xdc_runtime_Text_Object__count xdc_runtime_Text_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Object__heap__C, ".const:xdc_runtime_Text_Object__heap__C"); -__FAR__ const CT__xdc_runtime_Text_Object__heap xdc_runtime_Text_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Object__sizeof__C, ".const:xdc_runtime_Text_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_Text_Object__sizeof xdc_runtime_Text_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_Text_Object__table__C, ".const:xdc_runtime_Text_Object__table__C"); -__FAR__ const CT__xdc_runtime_Text_Object__table xdc_runtime_Text_Object__table__C = 0; - -/* nameUnknown__C */ -#pragma DATA_SECTION(xdc_runtime_Text_nameUnknown__C, ".const:xdc_runtime_Text_nameUnknown__C"); -__FAR__ const CT__xdc_runtime_Text_nameUnknown xdc_runtime_Text_nameUnknown__C = "{unknown-instance-name}"; - -/* nameEmpty__C */ -#pragma DATA_SECTION(xdc_runtime_Text_nameEmpty__C, ".const:xdc_runtime_Text_nameEmpty__C"); -__FAR__ const CT__xdc_runtime_Text_nameEmpty xdc_runtime_Text_nameEmpty__C = "{empty-instance-name}"; - -/* nameStatic__C */ -#pragma DATA_SECTION(xdc_runtime_Text_nameStatic__C, ".const:xdc_runtime_Text_nameStatic__C"); -__FAR__ const CT__xdc_runtime_Text_nameStatic xdc_runtime_Text_nameStatic__C = "{static-instance-name}"; - -/* isLoaded__C */ -#pragma DATA_SECTION(xdc_runtime_Text_isLoaded__C, ".const:xdc_runtime_Text_isLoaded__C"); -__FAR__ const CT__xdc_runtime_Text_isLoaded xdc_runtime_Text_isLoaded__C = 1; - -/* charTab__C */ -#pragma DATA_SECTION(xdc_runtime_Text_charTab__C, ".const:xdc_runtime_Text_charTab__C"); -__FAR__ const CT__xdc_runtime_Text_charTab xdc_runtime_Text_charTab__C = ((CT__xdc_runtime_Text_charTab)xdc_runtime_Text_charTab__A); - -/* nodeTab__C */ -#pragma DATA_SECTION(xdc_runtime_Text_nodeTab__C, ".const:xdc_runtime_Text_nodeTab__C"); -__FAR__ const CT__xdc_runtime_Text_nodeTab xdc_runtime_Text_nodeTab__C = ((CT__xdc_runtime_Text_nodeTab)xdc_runtime_Text_nodeTab__A); - -/* charCnt__C */ -#pragma DATA_SECTION(xdc_runtime_Text_charCnt__C, ".const:xdc_runtime_Text_charCnt__C"); -__FAR__ const CT__xdc_runtime_Text_charCnt xdc_runtime_Text_charCnt__C = (xdc_Int16)0x1aed; - -/* nodeCnt__C */ -#pragma DATA_SECTION(xdc_runtime_Text_nodeCnt__C, ".const:xdc_runtime_Text_nodeCnt__C"); -__FAR__ const CT__xdc_runtime_Text_nodeCnt xdc_runtime_Text_nodeCnt__C = (xdc_Int16)0x41; - -/* unnamedModsLastId__C */ -#pragma DATA_SECTION(xdc_runtime_Text_unnamedModsLastId__C, ".const:xdc_runtime_Text_unnamedModsLastId__C"); -__FAR__ const CT__xdc_runtime_Text_unnamedModsLastId xdc_runtime_Text_unnamedModsLastId__C = (xdc_UInt16)0x4000; - -/* registryModsLastId__C */ -#pragma DATA_SECTION(xdc_runtime_Text_registryModsLastId__C, ".const:xdc_runtime_Text_registryModsLastId__C"); -__FAR__ const CT__xdc_runtime_Text_registryModsLastId xdc_runtime_Text_registryModsLastId__C = (xdc_UInt16)0x7fff; - -/* visitRopeFxn__C */ -#pragma DATA_SECTION(xdc_runtime_Text_visitRopeFxn__C, ".const:xdc_runtime_Text_visitRopeFxn__C"); -__FAR__ const CT__xdc_runtime_Text_visitRopeFxn xdc_runtime_Text_visitRopeFxn__C = ((CT__xdc_runtime_Text_visitRopeFxn)((xdc_Fxn)xdc_runtime_Text_visitRope__I)); - -/* visitRopeFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_Text_visitRopeFxn2__C, ".const:xdc_runtime_Text_visitRopeFxn2__C"); -__FAR__ const CT__xdc_runtime_Text_visitRopeFxn2 xdc_runtime_Text_visitRopeFxn2__C = ((CT__xdc_runtime_Text_visitRopeFxn2)((xdc_Fxn)xdc_runtime_Text_visitRope2__I)); - - -/* - * ======== xdc.runtime.Timestamp INITIALIZERS ======== - */ - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Module__diagsEnabled__C, ".const:xdc_runtime_Timestamp_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Module__diagsEnabled xdc_runtime_Timestamp_Module__diagsEnabled__C = (xdc_Bits32)0x10; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Module__diagsIncluded__C, ".const:xdc_runtime_Timestamp_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Module__diagsIncluded xdc_runtime_Timestamp_Module__diagsIncluded__C = (xdc_Bits32)0x10; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Module__diagsMask__C, ".const:xdc_runtime_Timestamp_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Module__diagsMask xdc_runtime_Timestamp_Module__diagsMask__C = ((CT__xdc_runtime_Timestamp_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Module__gateObj__C, ".const:xdc_runtime_Timestamp_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Module__gateObj xdc_runtime_Timestamp_Module__gateObj__C = ((CT__xdc_runtime_Timestamp_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Module__gatePrms__C, ".const:xdc_runtime_Timestamp_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Module__gatePrms xdc_runtime_Timestamp_Module__gatePrms__C = ((CT__xdc_runtime_Timestamp_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Module__id__C, ".const:xdc_runtime_Timestamp_Module__id__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Module__id xdc_runtime_Timestamp_Module__id__C = (xdc_Bits16)0x8011; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Module__loggerDefined__C, ".const:xdc_runtime_Timestamp_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Module__loggerDefined xdc_runtime_Timestamp_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Module__loggerObj__C, ".const:xdc_runtime_Timestamp_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Module__loggerObj xdc_runtime_Timestamp_Module__loggerObj__C = ((CT__xdc_runtime_Timestamp_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Module__loggerFxn0__C, ".const:xdc_runtime_Timestamp_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Module__loggerFxn0 xdc_runtime_Timestamp_Module__loggerFxn0__C = ((CT__xdc_runtime_Timestamp_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Module__loggerFxn1__C, ".const:xdc_runtime_Timestamp_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Module__loggerFxn1 xdc_runtime_Timestamp_Module__loggerFxn1__C = ((CT__xdc_runtime_Timestamp_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Module__loggerFxn2__C, ".const:xdc_runtime_Timestamp_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Module__loggerFxn2 xdc_runtime_Timestamp_Module__loggerFxn2__C = ((CT__xdc_runtime_Timestamp_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Module__loggerFxn4__C, ".const:xdc_runtime_Timestamp_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Module__loggerFxn4 xdc_runtime_Timestamp_Module__loggerFxn4__C = ((CT__xdc_runtime_Timestamp_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Module__loggerFxn8__C, ".const:xdc_runtime_Timestamp_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Module__loggerFxn8 xdc_runtime_Timestamp_Module__loggerFxn8__C = ((CT__xdc_runtime_Timestamp_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Module__startupDoneFxn__C, ".const:xdc_runtime_Timestamp_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Module__startupDoneFxn xdc_runtime_Timestamp_Module__startupDoneFxn__C = ((CT__xdc_runtime_Timestamp_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Object__count__C, ".const:xdc_runtime_Timestamp_Object__count__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Object__count xdc_runtime_Timestamp_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Object__heap__C, ".const:xdc_runtime_Timestamp_Object__heap__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Object__heap xdc_runtime_Timestamp_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Object__sizeof__C, ".const:xdc_runtime_Timestamp_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Object__sizeof xdc_runtime_Timestamp_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_Timestamp_Object__table__C, ".const:xdc_runtime_Timestamp_Object__table__C"); -__FAR__ const CT__xdc_runtime_Timestamp_Object__table xdc_runtime_Timestamp_Object__table__C = 0; - - -/* - * ======== xdc.runtime.Timestamp_SupportProxy INITIALIZERS ======== - */ - - -/* - * ======== xdc.runtime.knl.SemThread INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc xdc_runtime_knl_SemThread_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Object__PARAMS__C, ".const:xdc_runtime_knl_SemThread_Object__PARAMS__C"); -__FAR__ const xdc_runtime_knl_SemThread_Params xdc_runtime_knl_SemThread_Object__PARAMS__C = { - sizeof (xdc_runtime_knl_SemThread_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&xdc_runtime_knl_SemThread_Object__PARAMS__C.__iprms, /* instance */ - xdc_runtime_knl_ISemaphore_Mode_COUNTING, /* mode */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -xdc_runtime_knl_SemThread_Module__ xdc_runtime_knl_SemThread_Module__root__V = { - {&xdc_runtime_knl_SemThread_Module__root__V.link, /* link.next */ - &xdc_runtime_knl_SemThread_Module__root__V.link}, /* link.prev */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Module__diagsEnabled__C, ".const:xdc_runtime_knl_SemThread_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Module__diagsEnabled xdc_runtime_knl_SemThread_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Module__diagsIncluded__C, ".const:xdc_runtime_knl_SemThread_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Module__diagsIncluded xdc_runtime_knl_SemThread_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Module__diagsMask__C, ".const:xdc_runtime_knl_SemThread_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Module__diagsMask xdc_runtime_knl_SemThread_Module__diagsMask__C = ((CT__xdc_runtime_knl_SemThread_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Module__gateObj__C, ".const:xdc_runtime_knl_SemThread_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Module__gateObj xdc_runtime_knl_SemThread_Module__gateObj__C = ((CT__xdc_runtime_knl_SemThread_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Module__gatePrms__C, ".const:xdc_runtime_knl_SemThread_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Module__gatePrms xdc_runtime_knl_SemThread_Module__gatePrms__C = ((CT__xdc_runtime_knl_SemThread_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Module__id__C, ".const:xdc_runtime_knl_SemThread_Module__id__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Module__id xdc_runtime_knl_SemThread_Module__id__C = (xdc_Bits16)0x8033; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Module__loggerDefined__C, ".const:xdc_runtime_knl_SemThread_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Module__loggerDefined xdc_runtime_knl_SemThread_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Module__loggerObj__C, ".const:xdc_runtime_knl_SemThread_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Module__loggerObj xdc_runtime_knl_SemThread_Module__loggerObj__C = ((CT__xdc_runtime_knl_SemThread_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Module__loggerFxn0__C, ".const:xdc_runtime_knl_SemThread_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Module__loggerFxn0 xdc_runtime_knl_SemThread_Module__loggerFxn0__C = ((CT__xdc_runtime_knl_SemThread_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Module__loggerFxn1__C, ".const:xdc_runtime_knl_SemThread_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Module__loggerFxn1 xdc_runtime_knl_SemThread_Module__loggerFxn1__C = ((CT__xdc_runtime_knl_SemThread_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Module__loggerFxn2__C, ".const:xdc_runtime_knl_SemThread_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Module__loggerFxn2 xdc_runtime_knl_SemThread_Module__loggerFxn2__C = ((CT__xdc_runtime_knl_SemThread_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Module__loggerFxn4__C, ".const:xdc_runtime_knl_SemThread_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Module__loggerFxn4 xdc_runtime_knl_SemThread_Module__loggerFxn4__C = ((CT__xdc_runtime_knl_SemThread_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Module__loggerFxn8__C, ".const:xdc_runtime_knl_SemThread_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Module__loggerFxn8 xdc_runtime_knl_SemThread_Module__loggerFxn8__C = ((CT__xdc_runtime_knl_SemThread_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Module__startupDoneFxn__C, ".const:xdc_runtime_knl_SemThread_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Module__startupDoneFxn xdc_runtime_knl_SemThread_Module__startupDoneFxn__C = ((CT__xdc_runtime_knl_SemThread_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Object__count__C, ".const:xdc_runtime_knl_SemThread_Object__count__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Object__count xdc_runtime_knl_SemThread_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Object__heap__C, ".const:xdc_runtime_knl_SemThread_Object__heap__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Object__heap xdc_runtime_knl_SemThread_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Object__sizeof__C, ".const:xdc_runtime_knl_SemThread_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Object__sizeof xdc_runtime_knl_SemThread_Object__sizeof__C = sizeof(xdc_runtime_knl_SemThread_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Object__table__C, ".const:xdc_runtime_knl_SemThread_Object__table__C"); -__FAR__ const CT__xdc_runtime_knl_SemThread_Object__table xdc_runtime_knl_SemThread_Object__table__C = 0; - - -/* - * ======== xdc.runtime.knl.SemThread_Proxy INITIALIZERS ======== - */ - - -/* - * ======== xdc.runtime.knl.Sync INITIALIZERS ======== - */ - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Module__diagsEnabled__C, ".const:xdc_runtime_knl_Sync_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Module__diagsEnabled xdc_runtime_knl_Sync_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Module__diagsIncluded__C, ".const:xdc_runtime_knl_Sync_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Module__diagsIncluded xdc_runtime_knl_Sync_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Module__diagsMask__C, ".const:xdc_runtime_knl_Sync_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Module__diagsMask xdc_runtime_knl_Sync_Module__diagsMask__C = ((CT__xdc_runtime_knl_Sync_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Module__gateObj__C, ".const:xdc_runtime_knl_Sync_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Module__gateObj xdc_runtime_knl_Sync_Module__gateObj__C = ((CT__xdc_runtime_knl_Sync_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Module__gatePrms__C, ".const:xdc_runtime_knl_Sync_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Module__gatePrms xdc_runtime_knl_Sync_Module__gatePrms__C = ((CT__xdc_runtime_knl_Sync_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Module__id__C, ".const:xdc_runtime_knl_Sync_Module__id__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Module__id xdc_runtime_knl_Sync_Module__id__C = (xdc_Bits16)0x8032; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Module__loggerDefined__C, ".const:xdc_runtime_knl_Sync_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Module__loggerDefined xdc_runtime_knl_Sync_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Module__loggerObj__C, ".const:xdc_runtime_knl_Sync_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Module__loggerObj xdc_runtime_knl_Sync_Module__loggerObj__C = ((CT__xdc_runtime_knl_Sync_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Module__loggerFxn0__C, ".const:xdc_runtime_knl_Sync_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Module__loggerFxn0 xdc_runtime_knl_Sync_Module__loggerFxn0__C = ((CT__xdc_runtime_knl_Sync_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Module__loggerFxn1__C, ".const:xdc_runtime_knl_Sync_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Module__loggerFxn1 xdc_runtime_knl_Sync_Module__loggerFxn1__C = ((CT__xdc_runtime_knl_Sync_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Module__loggerFxn2__C, ".const:xdc_runtime_knl_Sync_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Module__loggerFxn2 xdc_runtime_knl_Sync_Module__loggerFxn2__C = ((CT__xdc_runtime_knl_Sync_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Module__loggerFxn4__C, ".const:xdc_runtime_knl_Sync_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Module__loggerFxn4 xdc_runtime_knl_Sync_Module__loggerFxn4__C = ((CT__xdc_runtime_knl_Sync_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Module__loggerFxn8__C, ".const:xdc_runtime_knl_Sync_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Module__loggerFxn8 xdc_runtime_knl_Sync_Module__loggerFxn8__C = ((CT__xdc_runtime_knl_Sync_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Module__startupDoneFxn__C, ".const:xdc_runtime_knl_Sync_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Module__startupDoneFxn xdc_runtime_knl_Sync_Module__startupDoneFxn__C = ((CT__xdc_runtime_knl_Sync_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Object__count__C, ".const:xdc_runtime_knl_Sync_Object__count__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Object__count xdc_runtime_knl_Sync_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Object__heap__C, ".const:xdc_runtime_knl_Sync_Object__heap__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Object__heap xdc_runtime_knl_Sync_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Object__sizeof__C, ".const:xdc_runtime_knl_Sync_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Object__sizeof xdc_runtime_knl_Sync_Object__sizeof__C = 0; - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_knl_Sync_Object__table__C, ".const:xdc_runtime_knl_Sync_Object__table__C"); -__FAR__ const CT__xdc_runtime_knl_Sync_Object__table xdc_runtime_knl_Sync_Object__table__C = 0; - - -/* - * ======== xdc.runtime.knl.SyncGeneric INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc xdc_runtime_knl_SyncGeneric_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Object__PARAMS__C, ".const:xdc_runtime_knl_SyncGeneric_Object__PARAMS__C"); -__FAR__ const xdc_runtime_knl_SyncGeneric_Params xdc_runtime_knl_SyncGeneric_Object__PARAMS__C = { - sizeof (xdc_runtime_knl_SyncGeneric_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&xdc_runtime_knl_SyncGeneric_Object__PARAMS__C.__iprms, /* instance */ - ((xdc_Void(*)(xdc_UArg))0), /* userSignal */ - ((xdc_UArg)0), /* signalArg */ - ((xdc_Bool(*)(xdc_UArg,xdc_UInt))0), /* userWait */ - ((xdc_UArg)0), /* waitArg */ - ((xdc_Bool(*)(xdc_Int))0), /* userQuery */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -xdc_runtime_knl_SyncGeneric_Module__ xdc_runtime_knl_SyncGeneric_Module__root__V = { - {&xdc_runtime_knl_SyncGeneric_Module__root__V.link, /* link.next */ - &xdc_runtime_knl_SyncGeneric_Module__root__V.link}, /* link.prev */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Module__diagsEnabled__C, ".const:xdc_runtime_knl_SyncGeneric_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Module__diagsEnabled xdc_runtime_knl_SyncGeneric_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Module__diagsIncluded__C, ".const:xdc_runtime_knl_SyncGeneric_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Module__diagsIncluded xdc_runtime_knl_SyncGeneric_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Module__diagsMask__C, ".const:xdc_runtime_knl_SyncGeneric_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Module__diagsMask xdc_runtime_knl_SyncGeneric_Module__diagsMask__C = ((CT__xdc_runtime_knl_SyncGeneric_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Module__gateObj__C, ".const:xdc_runtime_knl_SyncGeneric_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Module__gateObj xdc_runtime_knl_SyncGeneric_Module__gateObj__C = ((CT__xdc_runtime_knl_SyncGeneric_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Module__gatePrms__C, ".const:xdc_runtime_knl_SyncGeneric_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Module__gatePrms xdc_runtime_knl_SyncGeneric_Module__gatePrms__C = ((CT__xdc_runtime_knl_SyncGeneric_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Module__id__C, ".const:xdc_runtime_knl_SyncGeneric_Module__id__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Module__id xdc_runtime_knl_SyncGeneric_Module__id__C = (xdc_Bits16)0x8034; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Module__loggerDefined__C, ".const:xdc_runtime_knl_SyncGeneric_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Module__loggerDefined xdc_runtime_knl_SyncGeneric_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Module__loggerObj__C, ".const:xdc_runtime_knl_SyncGeneric_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Module__loggerObj xdc_runtime_knl_SyncGeneric_Module__loggerObj__C = ((CT__xdc_runtime_knl_SyncGeneric_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Module__loggerFxn0__C, ".const:xdc_runtime_knl_SyncGeneric_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Module__loggerFxn0 xdc_runtime_knl_SyncGeneric_Module__loggerFxn0__C = ((CT__xdc_runtime_knl_SyncGeneric_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Module__loggerFxn1__C, ".const:xdc_runtime_knl_SyncGeneric_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Module__loggerFxn1 xdc_runtime_knl_SyncGeneric_Module__loggerFxn1__C = ((CT__xdc_runtime_knl_SyncGeneric_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Module__loggerFxn2__C, ".const:xdc_runtime_knl_SyncGeneric_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Module__loggerFxn2 xdc_runtime_knl_SyncGeneric_Module__loggerFxn2__C = ((CT__xdc_runtime_knl_SyncGeneric_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Module__loggerFxn4__C, ".const:xdc_runtime_knl_SyncGeneric_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Module__loggerFxn4 xdc_runtime_knl_SyncGeneric_Module__loggerFxn4__C = ((CT__xdc_runtime_knl_SyncGeneric_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Module__loggerFxn8__C, ".const:xdc_runtime_knl_SyncGeneric_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Module__loggerFxn8 xdc_runtime_knl_SyncGeneric_Module__loggerFxn8__C = ((CT__xdc_runtime_knl_SyncGeneric_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Module__startupDoneFxn__C, ".const:xdc_runtime_knl_SyncGeneric_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Module__startupDoneFxn xdc_runtime_knl_SyncGeneric_Module__startupDoneFxn__C = ((CT__xdc_runtime_knl_SyncGeneric_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Object__count__C, ".const:xdc_runtime_knl_SyncGeneric_Object__count__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Object__count xdc_runtime_knl_SyncGeneric_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Object__heap__C, ".const:xdc_runtime_knl_SyncGeneric_Object__heap__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Object__heap xdc_runtime_knl_SyncGeneric_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Object__sizeof__C, ".const:xdc_runtime_knl_SyncGeneric_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Object__sizeof xdc_runtime_knl_SyncGeneric_Object__sizeof__C = sizeof(xdc_runtime_knl_SyncGeneric_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Object__table__C, ".const:xdc_runtime_knl_SyncGeneric_Object__table__C"); -__FAR__ const CT__xdc_runtime_knl_SyncGeneric_Object__table xdc_runtime_knl_SyncGeneric_Object__table__C = 0; - - -/* - * ======== xdc.runtime.knl.SyncNull INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc xdc_runtime_knl_SyncNull_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Object__PARAMS__C, ".const:xdc_runtime_knl_SyncNull_Object__PARAMS__C"); -__FAR__ const xdc_runtime_knl_SyncNull_Params xdc_runtime_knl_SyncNull_Object__PARAMS__C = { - sizeof (xdc_runtime_knl_SyncNull_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&xdc_runtime_knl_SyncNull_Object__PARAMS__C.__iprms, /* instance */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -xdc_runtime_knl_SyncNull_Module__ xdc_runtime_knl_SyncNull_Module__root__V = { - {&xdc_runtime_knl_SyncNull_Module__root__V.link, /* link.next */ - &xdc_runtime_knl_SyncNull_Module__root__V.link}, /* link.prev */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Module__diagsEnabled__C, ".const:xdc_runtime_knl_SyncNull_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Module__diagsEnabled xdc_runtime_knl_SyncNull_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Module__diagsIncluded__C, ".const:xdc_runtime_knl_SyncNull_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Module__diagsIncluded xdc_runtime_knl_SyncNull_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Module__diagsMask__C, ".const:xdc_runtime_knl_SyncNull_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Module__diagsMask xdc_runtime_knl_SyncNull_Module__diagsMask__C = ((CT__xdc_runtime_knl_SyncNull_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Module__gateObj__C, ".const:xdc_runtime_knl_SyncNull_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Module__gateObj xdc_runtime_knl_SyncNull_Module__gateObj__C = ((CT__xdc_runtime_knl_SyncNull_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Module__gatePrms__C, ".const:xdc_runtime_knl_SyncNull_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Module__gatePrms xdc_runtime_knl_SyncNull_Module__gatePrms__C = ((CT__xdc_runtime_knl_SyncNull_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Module__id__C, ".const:xdc_runtime_knl_SyncNull_Module__id__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Module__id xdc_runtime_knl_SyncNull_Module__id__C = (xdc_Bits16)0x8035; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Module__loggerDefined__C, ".const:xdc_runtime_knl_SyncNull_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Module__loggerDefined xdc_runtime_knl_SyncNull_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Module__loggerObj__C, ".const:xdc_runtime_knl_SyncNull_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Module__loggerObj xdc_runtime_knl_SyncNull_Module__loggerObj__C = ((CT__xdc_runtime_knl_SyncNull_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Module__loggerFxn0__C, ".const:xdc_runtime_knl_SyncNull_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Module__loggerFxn0 xdc_runtime_knl_SyncNull_Module__loggerFxn0__C = ((CT__xdc_runtime_knl_SyncNull_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Module__loggerFxn1__C, ".const:xdc_runtime_knl_SyncNull_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Module__loggerFxn1 xdc_runtime_knl_SyncNull_Module__loggerFxn1__C = ((CT__xdc_runtime_knl_SyncNull_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Module__loggerFxn2__C, ".const:xdc_runtime_knl_SyncNull_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Module__loggerFxn2 xdc_runtime_knl_SyncNull_Module__loggerFxn2__C = ((CT__xdc_runtime_knl_SyncNull_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Module__loggerFxn4__C, ".const:xdc_runtime_knl_SyncNull_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Module__loggerFxn4 xdc_runtime_knl_SyncNull_Module__loggerFxn4__C = ((CT__xdc_runtime_knl_SyncNull_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Module__loggerFxn8__C, ".const:xdc_runtime_knl_SyncNull_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Module__loggerFxn8 xdc_runtime_knl_SyncNull_Module__loggerFxn8__C = ((CT__xdc_runtime_knl_SyncNull_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Module__startupDoneFxn__C, ".const:xdc_runtime_knl_SyncNull_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Module__startupDoneFxn xdc_runtime_knl_SyncNull_Module__startupDoneFxn__C = ((CT__xdc_runtime_knl_SyncNull_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Object__count__C, ".const:xdc_runtime_knl_SyncNull_Object__count__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Object__count xdc_runtime_knl_SyncNull_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Object__heap__C, ".const:xdc_runtime_knl_SyncNull_Object__heap__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Object__heap xdc_runtime_knl_SyncNull_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Object__sizeof__C, ".const:xdc_runtime_knl_SyncNull_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Object__sizeof xdc_runtime_knl_SyncNull_Object__sizeof__C = sizeof(xdc_runtime_knl_SyncNull_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Object__table__C, ".const:xdc_runtime_knl_SyncNull_Object__table__C"); -__FAR__ const CT__xdc_runtime_knl_SyncNull_Object__table xdc_runtime_knl_SyncNull_Object__table__C = 0; - - -/* - * ======== xdc.runtime.knl.SyncSemThread INITIALIZERS ======== - */ - -/* Object__DESC__C */ -__FAR__ const xdc_runtime_Core_ObjDesc xdc_runtime_knl_SyncSemThread_Object__DESC__C; - -/* Object__PARAMS__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Object__PARAMS__C, ".const:xdc_runtime_knl_SyncSemThread_Object__PARAMS__C"); -__FAR__ const xdc_runtime_knl_SyncSemThread_Params xdc_runtime_knl_SyncSemThread_Object__PARAMS__C = { - sizeof (xdc_runtime_knl_SyncSemThread_Params), /* __size */ - 0, /* __self */ - 0, /* __fxns */ - (xdc_runtime_IInstance_Params*)&xdc_runtime_knl_SyncSemThread_Object__PARAMS__C.__iprms, /* instance */ - { - sizeof (xdc_runtime_IInstance_Params), /* __size */ - 0, /* name */ - }, /* instance */ -}; - -/* Module__root__V */ -xdc_runtime_knl_SyncSemThread_Module__ xdc_runtime_knl_SyncSemThread_Module__root__V = { - {&xdc_runtime_knl_SyncSemThread_Module__root__V.link, /* link.next */ - &xdc_runtime_knl_SyncSemThread_Module__root__V.link}, /* link.prev */ -}; - -/* Module__diagsEnabled__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Module__diagsEnabled__C, ".const:xdc_runtime_knl_SyncSemThread_Module__diagsEnabled__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Module__diagsEnabled xdc_runtime_knl_SyncSemThread_Module__diagsEnabled__C = (xdc_Bits32)0x90; - -/* Module__diagsIncluded__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Module__diagsIncluded__C, ".const:xdc_runtime_knl_SyncSemThread_Module__diagsIncluded__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Module__diagsIncluded xdc_runtime_knl_SyncSemThread_Module__diagsIncluded__C = (xdc_Bits32)0x90; - -/* Module__diagsMask__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Module__diagsMask__C, ".const:xdc_runtime_knl_SyncSemThread_Module__diagsMask__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Module__diagsMask xdc_runtime_knl_SyncSemThread_Module__diagsMask__C = ((CT__xdc_runtime_knl_SyncSemThread_Module__diagsMask)0); - -/* Module__gateObj__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Module__gateObj__C, ".const:xdc_runtime_knl_SyncSemThread_Module__gateObj__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Module__gateObj xdc_runtime_knl_SyncSemThread_Module__gateObj__C = ((CT__xdc_runtime_knl_SyncSemThread_Module__gateObj)0); - -/* Module__gatePrms__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Module__gatePrms__C, ".const:xdc_runtime_knl_SyncSemThread_Module__gatePrms__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Module__gatePrms xdc_runtime_knl_SyncSemThread_Module__gatePrms__C = ((CT__xdc_runtime_knl_SyncSemThread_Module__gatePrms)0); - -/* Module__id__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Module__id__C, ".const:xdc_runtime_knl_SyncSemThread_Module__id__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Module__id xdc_runtime_knl_SyncSemThread_Module__id__C = (xdc_Bits16)0x8036; - -/* Module__loggerDefined__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Module__loggerDefined__C, ".const:xdc_runtime_knl_SyncSemThread_Module__loggerDefined__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Module__loggerDefined xdc_runtime_knl_SyncSemThread_Module__loggerDefined__C = 0; - -/* Module__loggerObj__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Module__loggerObj__C, ".const:xdc_runtime_knl_SyncSemThread_Module__loggerObj__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Module__loggerObj xdc_runtime_knl_SyncSemThread_Module__loggerObj__C = ((CT__xdc_runtime_knl_SyncSemThread_Module__loggerObj)0); - -/* Module__loggerFxn0__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Module__loggerFxn0__C, ".const:xdc_runtime_knl_SyncSemThread_Module__loggerFxn0__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Module__loggerFxn0 xdc_runtime_knl_SyncSemThread_Module__loggerFxn0__C = ((CT__xdc_runtime_knl_SyncSemThread_Module__loggerFxn0)0); - -/* Module__loggerFxn1__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Module__loggerFxn1__C, ".const:xdc_runtime_knl_SyncSemThread_Module__loggerFxn1__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Module__loggerFxn1 xdc_runtime_knl_SyncSemThread_Module__loggerFxn1__C = ((CT__xdc_runtime_knl_SyncSemThread_Module__loggerFxn1)0); - -/* Module__loggerFxn2__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Module__loggerFxn2__C, ".const:xdc_runtime_knl_SyncSemThread_Module__loggerFxn2__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Module__loggerFxn2 xdc_runtime_knl_SyncSemThread_Module__loggerFxn2__C = ((CT__xdc_runtime_knl_SyncSemThread_Module__loggerFxn2)0); - -/* Module__loggerFxn4__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Module__loggerFxn4__C, ".const:xdc_runtime_knl_SyncSemThread_Module__loggerFxn4__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Module__loggerFxn4 xdc_runtime_knl_SyncSemThread_Module__loggerFxn4__C = ((CT__xdc_runtime_knl_SyncSemThread_Module__loggerFxn4)0); - -/* Module__loggerFxn8__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Module__loggerFxn8__C, ".const:xdc_runtime_knl_SyncSemThread_Module__loggerFxn8__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Module__loggerFxn8 xdc_runtime_knl_SyncSemThread_Module__loggerFxn8__C = ((CT__xdc_runtime_knl_SyncSemThread_Module__loggerFxn8)0); - -/* Module__startupDoneFxn__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Module__startupDoneFxn__C, ".const:xdc_runtime_knl_SyncSemThread_Module__startupDoneFxn__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Module__startupDoneFxn xdc_runtime_knl_SyncSemThread_Module__startupDoneFxn__C = ((CT__xdc_runtime_knl_SyncSemThread_Module__startupDoneFxn)0); - -/* Object__count__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Object__count__C, ".const:xdc_runtime_knl_SyncSemThread_Object__count__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Object__count xdc_runtime_knl_SyncSemThread_Object__count__C = 0; - -/* Object__heap__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Object__heap__C, ".const:xdc_runtime_knl_SyncSemThread_Object__heap__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Object__heap xdc_runtime_knl_SyncSemThread_Object__heap__C = 0; - -/* Object__sizeof__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Object__sizeof__C, ".const:xdc_runtime_knl_SyncSemThread_Object__sizeof__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Object__sizeof xdc_runtime_knl_SyncSemThread_Object__sizeof__C = sizeof(xdc_runtime_knl_SyncSemThread_Object__); - -/* Object__table__C */ -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Object__table__C, ".const:xdc_runtime_knl_SyncSemThread_Object__table__C"); -__FAR__ const CT__xdc_runtime_knl_SyncSemThread_Object__table xdc_runtime_knl_SyncSemThread_Object__table__C = 0; - - -/* - * ======== xdc.runtime.knl.Sync_Proxy INITIALIZERS ======== - */ - - -/* - * ======== xdc.runtime.System FUNCTION STUBS ======== - */ - -/* printf_va__E */ -xdc_Int xdc_runtime_System_printf_va__E( xdc_CString fmt, va_list __va ) -{ - return xdc_runtime_System_printf_va__F(fmt, __va); -} - -/* printf__E */ -xdc_Int xdc_runtime_System_printf__E( xdc_CString fmt, ... ) -{ - xdc_Int __ret; - - va_list __va; va_start(__va, fmt); - __ret = xdc_runtime_System_printf_va__F(fmt, __va); - - va_end(__va); - return __ret; -} - -/* aprintf_va__E */ -xdc_Int xdc_runtime_System_aprintf_va__E( xdc_CString fmt, va_list __va ) -{ - return xdc_runtime_System_aprintf_va__F(fmt, __va); -} - -/* aprintf__E */ -xdc_Int xdc_runtime_System_aprintf__E( xdc_CString fmt, ... ) -{ - xdc_Int __ret; - - va_list __va; va_start(__va, fmt); - __ret = xdc_runtime_System_aprintf_va__F(fmt, __va); - - va_end(__va); - return __ret; -} - -/* sprintf_va__E */ -xdc_Int xdc_runtime_System_sprintf_va__E( xdc_Char buf[], xdc_CString fmt, va_list __va ) -{ - return xdc_runtime_System_sprintf_va__F(buf, fmt, __va); -} - -/* sprintf__E */ -xdc_Int xdc_runtime_System_sprintf__E( xdc_Char buf[], xdc_CString fmt, ... ) -{ - xdc_Int __ret; - - va_list __va; va_start(__va, fmt); - __ret = xdc_runtime_System_sprintf_va__F(buf, fmt, __va); - - va_end(__va); - return __ret; -} - -/* asprintf_va__E */ -xdc_Int xdc_runtime_System_asprintf_va__E( xdc_Char buf[], xdc_CString fmt, va_list __va ) -{ - return xdc_runtime_System_asprintf_va__F(buf, fmt, __va); -} - -/* asprintf__E */ -xdc_Int xdc_runtime_System_asprintf__E( xdc_Char buf[], xdc_CString fmt, ... ) -{ - xdc_Int __ret; - - va_list __va; va_start(__va, fmt); - __ret = xdc_runtime_System_asprintf_va__F(buf, fmt, __va); - - va_end(__va); - return __ret; -} - -/* snprintf_va__E */ -xdc_Int xdc_runtime_System_snprintf_va__E( xdc_Char buf[], xdc_SizeT n, xdc_CString fmt, va_list __va ) -{ - return xdc_runtime_System_snprintf_va__F(buf, n, fmt, __va); -} - -/* snprintf__E */ -xdc_Int xdc_runtime_System_snprintf__E( xdc_Char buf[], xdc_SizeT n, xdc_CString fmt, ... ) -{ - xdc_Int __ret; - - va_list __va; va_start(__va, fmt); - __ret = xdc_runtime_System_snprintf_va__F(buf, n, fmt, __va); - - va_end(__va); - return __ret; -} - - -/* - * ======== ti.sysbios.BIOS_RtsGateProxy PROXY BODY ======== - */ - -/* DELEGATES TO ti.sysbios.gates.GateMutex */ - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_BIOS_RtsGateProxy_Module__startupDone__S( void ) -{ - return ti_sysbios_gates_GateMutex_Module__startupDone__S(); -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_BIOS_RtsGateProxy_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_BIOS_RtsGateProxy___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - return ti_sysbios_gates_GateMutex_Object__create__S(__obj, __osz, __aa, (ti_sysbios_gates_GateMutex___ParamsPtr)__paramsPtr, sizeof(xdc_runtime_IGateProvider_Params), __eb); -} - -/* create */ -ti_sysbios_BIOS_RtsGateProxy_Handle ti_sysbios_BIOS_RtsGateProxy_create( const ti_sysbios_BIOS_RtsGateProxy_Params *__prms, xdc_runtime_Error_Block *__eb ) -{ - return (ti_sysbios_BIOS_RtsGateProxy_Handle)ti_sysbios_BIOS_RtsGateProxy_Object__create__S(0, 0, 0, (const xdc_UChar*)__prms, sizeof(ti_sysbios_BIOS_RtsGateProxy_Params), __eb); -} - -/* Object__delete__S */ -void ti_sysbios_BIOS_RtsGateProxy_Object__delete__S( xdc_Ptr instp ) -{ - ti_sysbios_gates_GateMutex_Object__delete__S(instp); -} - -/* delete */ -void ti_sysbios_BIOS_RtsGateProxy_delete(ti_sysbios_BIOS_RtsGateProxy_Handle *instp) -{ - ti_sysbios_BIOS_RtsGateProxy_Object__delete__S(instp); -} - -/* Params__init__S */ -void ti_sysbios_BIOS_RtsGateProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - ti_sysbios_gates_GateMutex_Params__init__S(dst, src, psz, isz); -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_BIOS_RtsGateProxy_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - return ti_sysbios_gates_GateMutex_Handle__label__S(obj, lab); -} - -/* query__E */ -xdc_Bool ti_sysbios_BIOS_RtsGateProxy_query__E( xdc_Int qual ) -{ - return ti_sysbios_gates_GateMutex_query(qual); -} - -/* enter__E */ -xdc_IArg ti_sysbios_BIOS_RtsGateProxy_enter__E( ti_sysbios_BIOS_RtsGateProxy_Handle __inst ) -{ - return ti_sysbios_gates_GateMutex_enter((ti_sysbios_gates_GateMutex_Handle)__inst); -} - -/* leave__E */ -xdc_Void ti_sysbios_BIOS_RtsGateProxy_leave__E( ti_sysbios_BIOS_RtsGateProxy_Handle __inst, xdc_IArg key ) -{ - ti_sysbios_gates_GateMutex_leave((ti_sysbios_gates_GateMutex_Handle)__inst, key); -} - - -/* - * ======== ti.sysbios.hal.Hwi_HwiProxy PROXY BODY ======== - */ - -/* DELEGATES TO ti.sysbios.family.arm.m3.Hwi */ - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S( void ) -{ - return ti_sysbios_family_arm_m3_Hwi_Module__startupDone__S(); -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_hal_Hwi_HwiProxy_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_hal_Hwi_HwiProxy___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - return ti_sysbios_family_arm_m3_Hwi_Object__create__S(__obj, __osz, __aa, (ti_sysbios_family_arm_m3_Hwi___ParamsPtr)__paramsPtr, sizeof(ti_sysbios_interfaces_IHwi_Params), __eb); -} - -/* create */ -ti_sysbios_hal_Hwi_HwiProxy_Handle ti_sysbios_hal_Hwi_HwiProxy_create( xdc_Int intNum, ti_sysbios_interfaces_IHwi_FuncPtr hwiFxn, const ti_sysbios_hal_Hwi_HwiProxy_Params *__prms, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_hal_Hwi_HwiProxy_Args__create __args; - __args.intNum = intNum; - __args.hwiFxn = hwiFxn; - return (ti_sysbios_hal_Hwi_HwiProxy_Handle)ti_sysbios_hal_Hwi_HwiProxy_Object__create__S(0, 0, &__args, (const xdc_UChar*)__prms, sizeof(ti_sysbios_hal_Hwi_HwiProxy_Params), __eb); -} - -/* Object__delete__S */ -void ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S( xdc_Ptr instp ) -{ - ti_sysbios_family_arm_m3_Hwi_Object__delete__S(instp); -} - -/* delete */ -void ti_sysbios_hal_Hwi_HwiProxy_delete(ti_sysbios_hal_Hwi_HwiProxy_Handle *instp) -{ - ti_sysbios_hal_Hwi_HwiProxy_Object__delete__S(instp); -} - -/* Params__init__S */ -void ti_sysbios_hal_Hwi_HwiProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - ti_sysbios_family_arm_m3_Hwi_Params__init__S(dst, src, psz, isz); -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_hal_Hwi_HwiProxy_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - return ti_sysbios_family_arm_m3_Hwi_Handle__label__S(obj, lab); -} - -/* getStackInfo__E */ -xdc_Bool ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E( ti_sysbios_interfaces_IHwi_StackInfo *stkInfo, xdc_Bool computeStackDepth ) -{ - return ti_sysbios_family_arm_m3_Hwi_getStackInfo(stkInfo, computeStackDepth); -} - -/* getCoreStackInfo__E */ -xdc_Bool ti_sysbios_hal_Hwi_HwiProxy_getCoreStackInfo__E( ti_sysbios_interfaces_IHwi_StackInfo *stkInfo, xdc_Bool computeStackDepth, xdc_UInt coreId ) -{ - return ti_sysbios_family_arm_m3_Hwi_getCoreStackInfo(stkInfo, computeStackDepth, coreId); -} - -/* startup__E */ -xdc_Void ti_sysbios_hal_Hwi_HwiProxy_startup__E( void ) -{ - ti_sysbios_family_arm_m3_Hwi_startup(); -} - -/* disable__E */ -xdc_UInt ti_sysbios_hal_Hwi_HwiProxy_disable__E( void ) -{ - return ti_sysbios_family_arm_m3_Hwi_disable(); -} - -/* enable__E */ -xdc_UInt ti_sysbios_hal_Hwi_HwiProxy_enable__E( void ) -{ - return ti_sysbios_family_arm_m3_Hwi_enable(); -} - -/* restore__E */ -xdc_Void ti_sysbios_hal_Hwi_HwiProxy_restore__E( xdc_UInt key ) -{ - ti_sysbios_family_arm_m3_Hwi_restore(key); -} - -/* switchFromBootStack__E */ -xdc_Void ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E( void ) -{ - ti_sysbios_family_arm_m3_Hwi_switchFromBootStack(); -} - -/* post__E */ -xdc_Void ti_sysbios_hal_Hwi_HwiProxy_post__E( xdc_UInt intNum ) -{ - ti_sysbios_family_arm_m3_Hwi_post(intNum); -} - -/* getTaskSP__E */ -xdc_Char *ti_sysbios_hal_Hwi_HwiProxy_getTaskSP__E( void ) -{ - return ti_sysbios_family_arm_m3_Hwi_getTaskSP(); -} - -/* disableInterrupt__E */ -xdc_UInt ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E( xdc_UInt intNum ) -{ - return ti_sysbios_family_arm_m3_Hwi_disableInterrupt(intNum); -} - -/* enableInterrupt__E */ -xdc_UInt ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E( xdc_UInt intNum ) -{ - return ti_sysbios_family_arm_m3_Hwi_enableInterrupt(intNum); -} - -/* restoreInterrupt__E */ -xdc_Void ti_sysbios_hal_Hwi_HwiProxy_restoreInterrupt__E( xdc_UInt intNum, xdc_UInt key ) -{ - ti_sysbios_family_arm_m3_Hwi_restoreInterrupt(intNum, key); -} - -/* clearInterrupt__E */ -xdc_Void ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E( xdc_UInt intNum ) -{ - ti_sysbios_family_arm_m3_Hwi_clearInterrupt(intNum); -} - -/* getFunc__E */ -ti_sysbios_interfaces_IHwi_FuncPtr ti_sysbios_hal_Hwi_HwiProxy_getFunc__E( ti_sysbios_hal_Hwi_HwiProxy_Handle __inst, xdc_UArg *arg ) -{ - return ti_sysbios_family_arm_m3_Hwi_getFunc((ti_sysbios_family_arm_m3_Hwi_Handle)__inst, arg); -} - -/* setFunc__E */ -xdc_Void ti_sysbios_hal_Hwi_HwiProxy_setFunc__E( ti_sysbios_hal_Hwi_HwiProxy_Handle __inst, ti_sysbios_interfaces_IHwi_FuncPtr fxn, xdc_UArg arg ) -{ - ti_sysbios_family_arm_m3_Hwi_setFunc((ti_sysbios_family_arm_m3_Hwi_Handle)__inst, fxn, arg); -} - -/* getHookContext__E */ -xdc_Ptr ti_sysbios_hal_Hwi_HwiProxy_getHookContext__E( ti_sysbios_hal_Hwi_HwiProxy_Handle __inst, xdc_Int id ) -{ - return ti_sysbios_family_arm_m3_Hwi_getHookContext((ti_sysbios_family_arm_m3_Hwi_Handle)__inst, id); -} - -/* setHookContext__E */ -xdc_Void ti_sysbios_hal_Hwi_HwiProxy_setHookContext__E( ti_sysbios_hal_Hwi_HwiProxy_Handle __inst, xdc_Int id, xdc_Ptr hookContext ) -{ - ti_sysbios_family_arm_m3_Hwi_setHookContext((ti_sysbios_family_arm_m3_Hwi_Handle)__inst, id, hookContext); -} - -/* getIrp__E */ -ti_sysbios_interfaces_IHwi_Irp ti_sysbios_hal_Hwi_HwiProxy_getIrp__E( ti_sysbios_hal_Hwi_HwiProxy_Handle __inst ) -{ - return ti_sysbios_family_arm_m3_Hwi_getIrp((ti_sysbios_family_arm_m3_Hwi_Handle)__inst); -} - - -/* - * ======== ti.sysbios.hal.Seconds_SecondsProxy PROXY BODY ======== - */ - -/* DELEGATES TO ti.sysbios.family.arm.lm4.Seconds */ - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_hal_Seconds_SecondsProxy_Module__startupDone__S( void ) -{ - return ti_sysbios_family_arm_lm4_Seconds_Module__startupDone__S(); -} - -/* get__E */ -xdc_UInt32 ti_sysbios_hal_Seconds_SecondsProxy_get__E( void ) -{ - return ti_sysbios_family_arm_lm4_Seconds_get(); -} - -/* getTime__E */ -xdc_UInt32 ti_sysbios_hal_Seconds_SecondsProxy_getTime__E( ti_sysbios_interfaces_ISeconds_Time *ts ) -{ - return ti_sysbios_family_arm_lm4_Seconds_getTime(ts); -} - -/* set__E */ -xdc_Void ti_sysbios_hal_Seconds_SecondsProxy_set__E( xdc_UInt32 seconds ) -{ - ti_sysbios_family_arm_lm4_Seconds_set(seconds); -} - - -/* - * ======== ti.sysbios.heaps.HeapMem_Module_GateProxy PROXY BODY ======== - */ - -/* DELEGATES TO ti.sysbios.gates.GateMutex */ - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__startupDone__S( void ) -{ - return ti_sysbios_gates_GateMutex_Module__startupDone__S(); -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_heaps_HeapMem_Module_GateProxy___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - return ti_sysbios_gates_GateMutex_Object__create__S(__obj, __osz, __aa, (ti_sysbios_gates_GateMutex___ParamsPtr)__paramsPtr, sizeof(xdc_runtime_IGateProvider_Params), __eb); -} - -/* create */ -ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle ti_sysbios_heaps_HeapMem_Module_GateProxy_create( const ti_sysbios_heaps_HeapMem_Module_GateProxy_Params *__prms, xdc_runtime_Error_Block *__eb ) -{ - return (ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle)ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__create__S(0, 0, 0, (const xdc_UChar*)__prms, sizeof(ti_sysbios_heaps_HeapMem_Module_GateProxy_Params), __eb); -} - -/* Object__delete__S */ -void ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S( xdc_Ptr instp ) -{ - ti_sysbios_gates_GateMutex_Object__delete__S(instp); -} - -/* delete */ -void ti_sysbios_heaps_HeapMem_Module_GateProxy_delete(ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle *instp) -{ - ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S(instp); -} - -/* Params__init__S */ -void ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - ti_sysbios_gates_GateMutex_Params__init__S(dst, src, psz, isz); -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - return ti_sysbios_gates_GateMutex_Handle__label__S(obj, lab); -} - -/* query__E */ -xdc_Bool ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E( xdc_Int qual ) -{ - return ti_sysbios_gates_GateMutex_query(qual); -} - -/* enter__E */ -xdc_IArg ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E( ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle __inst ) -{ - return ti_sysbios_gates_GateMutex_enter((ti_sysbios_gates_GateMutex_Handle)__inst); -} - -/* leave__E */ -xdc_Void ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E( ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle __inst, xdc_IArg key ) -{ - ti_sysbios_gates_GateMutex_leave((ti_sysbios_gates_GateMutex_Handle)__inst, key); -} - - -/* - * ======== ti.sysbios.knl.Clock_TimerProxy PROXY BODY ======== - */ - -/* DELEGATES TO ti.sysbios.family.arm.lm4.Timer */ - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S( void ) -{ - return ti_sysbios_family_arm_lm4_Timer_Module__startupDone__S(); -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_knl_Clock_TimerProxy_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_knl_Clock_TimerProxy___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - return ti_sysbios_family_arm_lm4_Timer_Object__create__S(__obj, __osz, __aa, (ti_sysbios_family_arm_lm4_Timer___ParamsPtr)__paramsPtr, sizeof(ti_sysbios_interfaces_ITimer_Params), __eb); -} - -/* create */ -ti_sysbios_knl_Clock_TimerProxy_Handle ti_sysbios_knl_Clock_TimerProxy_create( xdc_Int id, ti_sysbios_interfaces_ITimer_FuncPtr tickFxn, const ti_sysbios_knl_Clock_TimerProxy_Params *__prms, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_knl_Clock_TimerProxy_Args__create __args; - __args.id = id; - __args.tickFxn = tickFxn; - return (ti_sysbios_knl_Clock_TimerProxy_Handle)ti_sysbios_knl_Clock_TimerProxy_Object__create__S(0, 0, &__args, (const xdc_UChar*)__prms, sizeof(ti_sysbios_knl_Clock_TimerProxy_Params), __eb); -} - -/* Object__delete__S */ -void ti_sysbios_knl_Clock_TimerProxy_Object__delete__S( xdc_Ptr instp ) -{ - ti_sysbios_family_arm_lm4_Timer_Object__delete__S(instp); -} - -/* delete */ -void ti_sysbios_knl_Clock_TimerProxy_delete(ti_sysbios_knl_Clock_TimerProxy_Handle *instp) -{ - ti_sysbios_knl_Clock_TimerProxy_Object__delete__S(instp); -} - -/* Params__init__S */ -void ti_sysbios_knl_Clock_TimerProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - ti_sysbios_family_arm_lm4_Timer_Params__init__S(dst, src, psz, isz); -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_knl_Clock_TimerProxy_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - return ti_sysbios_family_arm_lm4_Timer_Handle__label__S(obj, lab); -} - -/* getNumTimers__E */ -xdc_UInt ti_sysbios_knl_Clock_TimerProxy_getNumTimers__E( void ) -{ - return ti_sysbios_family_arm_lm4_Timer_getNumTimers(); -} - -/* getStatus__E */ -ti_sysbios_interfaces_ITimer_Status ti_sysbios_knl_Clock_TimerProxy_getStatus__E( xdc_UInt id ) -{ - return ti_sysbios_family_arm_lm4_Timer_getStatus(id); -} - -/* startup__E */ -xdc_Void ti_sysbios_knl_Clock_TimerProxy_startup__E( void ) -{ - ti_sysbios_family_arm_lm4_Timer_startup(); -} - -/* getMaxTicks__E */ -xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ) -{ - return ti_sysbios_family_arm_lm4_Timer_getMaxTicks((ti_sysbios_family_arm_lm4_Timer_Handle)__inst); -} - -/* setNextTick__E */ -xdc_Void ti_sysbios_knl_Clock_TimerProxy_setNextTick__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 ticks ) -{ - ti_sysbios_family_arm_lm4_Timer_setNextTick((ti_sysbios_family_arm_lm4_Timer_Handle)__inst, ticks); -} - -/* start__E */ -xdc_Void ti_sysbios_knl_Clock_TimerProxy_start__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ) -{ - ti_sysbios_family_arm_lm4_Timer_start((ti_sysbios_family_arm_lm4_Timer_Handle)__inst); -} - -/* stop__E */ -xdc_Void ti_sysbios_knl_Clock_TimerProxy_stop__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ) -{ - ti_sysbios_family_arm_lm4_Timer_stop((ti_sysbios_family_arm_lm4_Timer_Handle)__inst); -} - -/* setPeriod__E */ -xdc_Void ti_sysbios_knl_Clock_TimerProxy_setPeriod__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 period ) -{ - ti_sysbios_family_arm_lm4_Timer_setPeriod((ti_sysbios_family_arm_lm4_Timer_Handle)__inst, period); -} - -/* setPeriodMicroSecs__E */ -xdc_Bool ti_sysbios_knl_Clock_TimerProxy_setPeriodMicroSecs__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 microsecs ) -{ - return ti_sysbios_family_arm_lm4_Timer_setPeriodMicroSecs((ti_sysbios_family_arm_lm4_Timer_Handle)__inst, microsecs); -} - -/* getPeriod__E */ -xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getPeriod__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ) -{ - return ti_sysbios_family_arm_lm4_Timer_getPeriod((ti_sysbios_family_arm_lm4_Timer_Handle)__inst); -} - -/* getCount__E */ -xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getCount__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ) -{ - return ti_sysbios_family_arm_lm4_Timer_getCount((ti_sysbios_family_arm_lm4_Timer_Handle)__inst); -} - -/* getFreq__E */ -xdc_Void ti_sysbios_knl_Clock_TimerProxy_getFreq__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_runtime_Types_FreqHz *freq ) -{ - ti_sysbios_family_arm_lm4_Timer_getFreq((ti_sysbios_family_arm_lm4_Timer_Handle)__inst, freq); -} - -/* getFunc__E */ -ti_sysbios_interfaces_ITimer_FuncPtr ti_sysbios_knl_Clock_TimerProxy_getFunc__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UArg *arg ) -{ - return ti_sysbios_family_arm_lm4_Timer_getFunc((ti_sysbios_family_arm_lm4_Timer_Handle)__inst, arg); -} - -/* setFunc__E */ -xdc_Void ti_sysbios_knl_Clock_TimerProxy_setFunc__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, ti_sysbios_interfaces_ITimer_FuncPtr fxn, xdc_UArg arg ) -{ - ti_sysbios_family_arm_lm4_Timer_setFunc((ti_sysbios_family_arm_lm4_Timer_Handle)__inst, fxn, arg); -} - -/* trigger__E */ -xdc_Void ti_sysbios_knl_Clock_TimerProxy_trigger__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 cycles ) -{ - ti_sysbios_family_arm_lm4_Timer_trigger((ti_sysbios_family_arm_lm4_Timer_Handle)__inst, cycles); -} - -/* getExpiredCounts__E */ -xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getExpiredCounts__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ) -{ - return ti_sysbios_family_arm_lm4_Timer_getExpiredCounts((ti_sysbios_family_arm_lm4_Timer_Handle)__inst); -} - -/* getExpiredTicks__E */ -xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getExpiredTicks__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 tickPeriod ) -{ - return ti_sysbios_family_arm_lm4_Timer_getExpiredTicks((ti_sysbios_family_arm_lm4_Timer_Handle)__inst, tickPeriod); -} - -/* getCurrentTick__E */ -xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_Bool save ) -{ - return ti_sysbios_family_arm_lm4_Timer_getCurrentTick((ti_sysbios_family_arm_lm4_Timer_Handle)__inst, save); -} - - -/* - * ======== ti.sysbios.knl.Intrinsics_SupportProxy PROXY BODY ======== - */ - -/* DELEGATES TO ti.sysbios.family.arm.m3.IntrinsicsSupport */ - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_knl_Intrinsics_SupportProxy_Module__startupDone__S( void ) -{ - return ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__startupDone__S(); -} - -/* maxbit__E */ -xdc_UInt ti_sysbios_knl_Intrinsics_SupportProxy_maxbit__E( xdc_UInt bits ) -{ - return ti_sysbios_family_arm_m3_IntrinsicsSupport_maxbit(bits); -} - - -/* - * ======== ti.sysbios.knl.Task_SupportProxy PROXY BODY ======== - */ - -/* DELEGATES TO ti.sysbios.family.arm.m3.TaskSupport */ - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S( void ) -{ - return ti_sysbios_family_arm_m3_TaskSupport_Module__startupDone__S(); -} - -/* start__E */ -xdc_Ptr ti_sysbios_knl_Task_SupportProxy_start__E( xdc_Ptr curTask, ti_sysbios_interfaces_ITaskSupport_FuncPtr enter, ti_sysbios_interfaces_ITaskSupport_FuncPtr exit, xdc_runtime_Error_Block *eb ) -{ - return ti_sysbios_family_arm_m3_TaskSupport_start(curTask, enter, exit, eb); -} - -/* swap__E */ -xdc_Void ti_sysbios_knl_Task_SupportProxy_swap__E( xdc_Ptr *oldtskContext, xdc_Ptr *newtskContext ) -{ - ti_sysbios_family_arm_m3_TaskSupport_swap(oldtskContext, newtskContext); -} - -/* checkStack__E */ -xdc_Bool ti_sysbios_knl_Task_SupportProxy_checkStack__E( xdc_Char *stack, xdc_SizeT size ) -{ - return ti_sysbios_family_arm_m3_TaskSupport_checkStack(stack, size); -} - -/* stackUsed__E */ -xdc_SizeT ti_sysbios_knl_Task_SupportProxy_stackUsed__E( xdc_Char *stack, xdc_SizeT size ) -{ - return ti_sysbios_family_arm_m3_TaskSupport_stackUsed(stack, size); -} - -/* getStackAlignment__E */ -xdc_UInt ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E( void ) -{ - return ti_sysbios_family_arm_m3_TaskSupport_getStackAlignment(); -} - -/* getDefaultStackSize__E */ -xdc_SizeT ti_sysbios_knl_Task_SupportProxy_getDefaultStackSize__E( void ) -{ - return ti_sysbios_family_arm_m3_TaskSupport_getDefaultStackSize(); -} - - -/* - * ======== xdc.runtime.Main_Module_GateProxy PROXY BODY ======== - */ - -/* DELEGATES TO ti.sysbios.gates.GateHwi */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_Main_Module_GateProxy_Module__startupDone__S( void ) -{ - return ti_sysbios_gates_GateHwi_Module__startupDone__S(); -} - -/* Object__create__S */ -xdc_Ptr xdc_runtime_Main_Module_GateProxy_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const xdc_runtime_Main_Module_GateProxy___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - return ti_sysbios_gates_GateHwi_Object__create__S(__obj, __osz, __aa, (ti_sysbios_gates_GateHwi___ParamsPtr)__paramsPtr, sizeof(xdc_runtime_IGateProvider_Params), __eb); -} - -/* create */ -xdc_runtime_Main_Module_GateProxy_Handle xdc_runtime_Main_Module_GateProxy_create( const xdc_runtime_Main_Module_GateProxy_Params *__prms, xdc_runtime_Error_Block *__eb ) -{ - return (xdc_runtime_Main_Module_GateProxy_Handle)xdc_runtime_Main_Module_GateProxy_Object__create__S(0, 0, 0, (const xdc_UChar*)__prms, sizeof(xdc_runtime_Main_Module_GateProxy_Params), __eb); -} - -/* Object__delete__S */ -void xdc_runtime_Main_Module_GateProxy_Object__delete__S( xdc_Ptr instp ) -{ - ti_sysbios_gates_GateHwi_Object__delete__S(instp); -} - -/* delete */ -void xdc_runtime_Main_Module_GateProxy_delete(xdc_runtime_Main_Module_GateProxy_Handle *instp) -{ - xdc_runtime_Main_Module_GateProxy_Object__delete__S(instp); -} - -/* Params__init__S */ -void xdc_runtime_Main_Module_GateProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - ti_sysbios_gates_GateHwi_Params__init__S(dst, src, psz, isz); -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *xdc_runtime_Main_Module_GateProxy_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - return ti_sysbios_gates_GateHwi_Handle__label__S(obj, lab); -} - -/* query__E */ -xdc_Bool xdc_runtime_Main_Module_GateProxy_query__E( xdc_Int qual ) -{ - return ti_sysbios_gates_GateHwi_query(qual); -} - -/* enter__E */ -xdc_IArg xdc_runtime_Main_Module_GateProxy_enter__E( xdc_runtime_Main_Module_GateProxy_Handle __inst ) -{ - return ti_sysbios_gates_GateHwi_enter((ti_sysbios_gates_GateHwi_Handle)__inst); -} - -/* leave__E */ -xdc_Void xdc_runtime_Main_Module_GateProxy_leave__E( xdc_runtime_Main_Module_GateProxy_Handle __inst, xdc_IArg key ) -{ - ti_sysbios_gates_GateHwi_leave((ti_sysbios_gates_GateHwi_Handle)__inst, key); -} - - -/* - * ======== xdc.runtime.Memory_HeapProxy PROXY BODY ======== - */ - -/* DELEGATES TO ti.sysbios.heaps.HeapMem */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_Memory_HeapProxy_Module__startupDone__S( void ) -{ - return ti_sysbios_heaps_HeapMem_Module__startupDone__S(); -} - -/* Object__create__S */ -xdc_Ptr xdc_runtime_Memory_HeapProxy_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const xdc_runtime_Memory_HeapProxy___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - return ti_sysbios_heaps_HeapMem_Object__create__S(__obj, __osz, __aa, (ti_sysbios_heaps_HeapMem___ParamsPtr)__paramsPtr, sizeof(xdc_runtime_IHeap_Params), __eb); -} - -/* create */ -xdc_runtime_Memory_HeapProxy_Handle xdc_runtime_Memory_HeapProxy_create( const xdc_runtime_Memory_HeapProxy_Params *__prms, xdc_runtime_Error_Block *__eb ) -{ - return (xdc_runtime_Memory_HeapProxy_Handle)xdc_runtime_Memory_HeapProxy_Object__create__S(0, 0, 0, (const xdc_UChar*)__prms, sizeof(xdc_runtime_Memory_HeapProxy_Params), __eb); -} - -/* Object__delete__S */ -void xdc_runtime_Memory_HeapProxy_Object__delete__S( xdc_Ptr instp ) -{ - ti_sysbios_heaps_HeapMem_Object__delete__S(instp); -} - -/* delete */ -void xdc_runtime_Memory_HeapProxy_delete(xdc_runtime_Memory_HeapProxy_Handle *instp) -{ - xdc_runtime_Memory_HeapProxy_Object__delete__S(instp); -} - -/* Params__init__S */ -void xdc_runtime_Memory_HeapProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - ti_sysbios_heaps_HeapMem_Params__init__S(dst, src, psz, isz); -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *xdc_runtime_Memory_HeapProxy_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - return ti_sysbios_heaps_HeapMem_Handle__label__S(obj, lab); -} - -/* alloc__E */ -xdc_Ptr xdc_runtime_Memory_HeapProxy_alloc__E( xdc_runtime_Memory_HeapProxy_Handle __inst, xdc_SizeT size, xdc_SizeT align, xdc_runtime_Error_Block *eb ) -{ - return xdc_runtime_IHeap_alloc((xdc_runtime_IHeap_Handle)__inst, size, align, eb); -} - -/* free__E */ -xdc_Void xdc_runtime_Memory_HeapProxy_free__E( xdc_runtime_Memory_HeapProxy_Handle __inst, xdc_Ptr block, xdc_SizeT size ) -{ - xdc_runtime_IHeap_free((xdc_runtime_IHeap_Handle)__inst, block, size); -} - -/* isBlocking__E */ -xdc_Bool xdc_runtime_Memory_HeapProxy_isBlocking__E( xdc_runtime_Memory_HeapProxy_Handle __inst ) -{ - return xdc_runtime_IHeap_isBlocking((xdc_runtime_IHeap_Handle)__inst); -} - -/* getStats__E */ -xdc_Void xdc_runtime_Memory_HeapProxy_getStats__E( xdc_runtime_Memory_HeapProxy_Handle __inst, xdc_runtime_Memory_Stats *stats ) -{ - xdc_runtime_IHeap_getStats((xdc_runtime_IHeap_Handle)__inst, stats); -} - - -/* - * ======== xdc.runtime.System_Module_GateProxy PROXY BODY ======== - */ - -/* DELEGATES TO ti.sysbios.gates.GateHwi */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_System_Module_GateProxy_Module__startupDone__S( void ) -{ - return ti_sysbios_gates_GateHwi_Module__startupDone__S(); -} - -/* Object__create__S */ -xdc_Ptr xdc_runtime_System_Module_GateProxy_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const xdc_runtime_System_Module_GateProxy___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - return ti_sysbios_gates_GateHwi_Object__create__S(__obj, __osz, __aa, (ti_sysbios_gates_GateHwi___ParamsPtr)__paramsPtr, sizeof(xdc_runtime_IGateProvider_Params), __eb); -} - -/* create */ -xdc_runtime_System_Module_GateProxy_Handle xdc_runtime_System_Module_GateProxy_create( const xdc_runtime_System_Module_GateProxy_Params *__prms, xdc_runtime_Error_Block *__eb ) -{ - return (xdc_runtime_System_Module_GateProxy_Handle)xdc_runtime_System_Module_GateProxy_Object__create__S(0, 0, 0, (const xdc_UChar*)__prms, sizeof(xdc_runtime_System_Module_GateProxy_Params), __eb); -} - -/* Object__delete__S */ -void xdc_runtime_System_Module_GateProxy_Object__delete__S( xdc_Ptr instp ) -{ - ti_sysbios_gates_GateHwi_Object__delete__S(instp); -} - -/* delete */ -void xdc_runtime_System_Module_GateProxy_delete(xdc_runtime_System_Module_GateProxy_Handle *instp) -{ - xdc_runtime_System_Module_GateProxy_Object__delete__S(instp); -} - -/* Params__init__S */ -void xdc_runtime_System_Module_GateProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - ti_sysbios_gates_GateHwi_Params__init__S(dst, src, psz, isz); -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *xdc_runtime_System_Module_GateProxy_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - return ti_sysbios_gates_GateHwi_Handle__label__S(obj, lab); -} - -/* query__E */ -xdc_Bool xdc_runtime_System_Module_GateProxy_query__E( xdc_Int qual ) -{ - return ti_sysbios_gates_GateHwi_query(qual); -} - -/* enter__E */ -xdc_IArg xdc_runtime_System_Module_GateProxy_enter__E( xdc_runtime_System_Module_GateProxy_Handle __inst ) -{ - return ti_sysbios_gates_GateHwi_enter((ti_sysbios_gates_GateHwi_Handle)__inst); -} - -/* leave__E */ -xdc_Void xdc_runtime_System_Module_GateProxy_leave__E( xdc_runtime_System_Module_GateProxy_Handle __inst, xdc_IArg key ) -{ - ti_sysbios_gates_GateHwi_leave((ti_sysbios_gates_GateHwi_Handle)__inst, key); -} - - -/* - * ======== xdc.runtime.System_SupportProxy PROXY BODY ======== - */ - -/* DELEGATES TO xdc.runtime.SysMin */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_System_SupportProxy_Module__startupDone__S( void ) -{ - return xdc_runtime_SysMin_Module__startupDone__S(); -} - -/* abort__E */ -xdc_Void xdc_runtime_System_SupportProxy_abort__E( xdc_CString str ) -{ - xdc_runtime_SysMin_abort(str); -} - -/* exit__E */ -xdc_Void xdc_runtime_System_SupportProxy_exit__E( xdc_Int stat ) -{ - xdc_runtime_SysMin_exit(stat); -} - -/* flush__E */ -xdc_Void xdc_runtime_System_SupportProxy_flush__E( void ) -{ - xdc_runtime_SysMin_flush(); -} - -/* putch__E */ -xdc_Void xdc_runtime_System_SupportProxy_putch__E( xdc_Char ch ) -{ - xdc_runtime_SysMin_putch(ch); -} - -/* ready__E */ -xdc_Bool xdc_runtime_System_SupportProxy_ready__E( void ) -{ - return xdc_runtime_SysMin_ready(); -} - - -/* - * ======== xdc.runtime.Timestamp_SupportProxy PROXY BODY ======== - */ - -/* DELEGATES TO ti.sysbios.family.arm.lm4.TimestampProvider */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_Timestamp_SupportProxy_Module__startupDone__S( void ) -{ - return ti_sysbios_family_arm_lm4_TimestampProvider_Module__startupDone__S(); -} - -/* get32__E */ -xdc_Bits32 xdc_runtime_Timestamp_SupportProxy_get32__E( void ) -{ - return ti_sysbios_family_arm_lm4_TimestampProvider_get32(); -} - -/* get64__E */ -xdc_Void xdc_runtime_Timestamp_SupportProxy_get64__E( xdc_runtime_Types_Timestamp64 *result ) -{ - ti_sysbios_family_arm_lm4_TimestampProvider_get64(result); -} - -/* getFreq__E */ -xdc_Void xdc_runtime_Timestamp_SupportProxy_getFreq__E( xdc_runtime_Types_FreqHz *freq ) -{ - ti_sysbios_family_arm_lm4_TimestampProvider_getFreq(freq); -} - - -/* - * ======== xdc.runtime.knl.SemThread_Proxy PROXY BODY ======== - */ - -/* DELEGATES TO ti.sysbios.xdcruntime.SemThreadSupport */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_knl_SemThread_Proxy_Module__startupDone__S( void ) -{ - return ti_sysbios_xdcruntime_SemThreadSupport_Module__startupDone__S(); -} - -/* Object__create__S */ -xdc_Ptr xdc_runtime_knl_SemThread_Proxy_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const xdc_runtime_knl_SemThread_Proxy___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - return ti_sysbios_xdcruntime_SemThreadSupport_Object__create__S(__obj, __osz, __aa, (ti_sysbios_xdcruntime_SemThreadSupport___ParamsPtr)__paramsPtr, sizeof(xdc_runtime_knl_ISemThreadSupport_Params), __eb); -} - -/* create */ -xdc_runtime_knl_SemThread_Proxy_Handle xdc_runtime_knl_SemThread_Proxy_create( xdc_Int count, const xdc_runtime_knl_SemThread_Proxy_Params *__prms, xdc_runtime_Error_Block *__eb ) -{ - xdc_runtime_knl_SemThread_Proxy_Args__create __args; - __args.count = count; - return (xdc_runtime_knl_SemThread_Proxy_Handle)xdc_runtime_knl_SemThread_Proxy_Object__create__S(0, 0, &__args, (const xdc_UChar*)__prms, sizeof(xdc_runtime_knl_SemThread_Proxy_Params), __eb); -} - -/* Object__delete__S */ -void xdc_runtime_knl_SemThread_Proxy_Object__delete__S( xdc_Ptr instp ) -{ - ti_sysbios_xdcruntime_SemThreadSupport_Object__delete__S(instp); -} - -/* delete */ -void xdc_runtime_knl_SemThread_Proxy_delete(xdc_runtime_knl_SemThread_Proxy_Handle *instp) -{ - xdc_runtime_knl_SemThread_Proxy_Object__delete__S(instp); -} - -/* Params__init__S */ -void xdc_runtime_knl_SemThread_Proxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - ti_sysbios_xdcruntime_SemThreadSupport_Params__init__S(dst, src, psz, isz); -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *xdc_runtime_knl_SemThread_Proxy_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - return ti_sysbios_xdcruntime_SemThreadSupport_Handle__label__S(obj, lab); -} - -/* pend__E */ -xdc_Int xdc_runtime_knl_SemThread_Proxy_pend__E( xdc_runtime_knl_SemThread_Proxy_Handle __inst, xdc_UInt timeout, xdc_runtime_Error_Block *eb ) -{ - return ti_sysbios_xdcruntime_SemThreadSupport_pend((ti_sysbios_xdcruntime_SemThreadSupport_Handle)__inst, timeout, eb); -} - -/* post__E */ -xdc_Bool xdc_runtime_knl_SemThread_Proxy_post__E( xdc_runtime_knl_SemThread_Proxy_Handle __inst, xdc_runtime_Error_Block *eb ) -{ - return ti_sysbios_xdcruntime_SemThreadSupport_post((ti_sysbios_xdcruntime_SemThreadSupport_Handle)__inst, eb); -} - - -/* - * ======== xdc.runtime.knl.Sync_Proxy PROXY BODY ======== - */ - -/* DELEGATES TO xdc.runtime.knl.SyncNull */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_knl_Sync_Proxy_Module__startupDone__S( void ) -{ - return xdc_runtime_knl_SyncNull_Module__startupDone__S(); -} - -/* Object__create__S */ -xdc_Ptr xdc_runtime_knl_Sync_Proxy_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const xdc_runtime_knl_Sync_Proxy___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - return xdc_runtime_knl_SyncNull_Object__create__S(__obj, __osz, __aa, (xdc_runtime_knl_SyncNull___ParamsPtr)__paramsPtr, sizeof(xdc_runtime_knl_ISync_Params), __eb); -} - -/* create */ -xdc_runtime_knl_Sync_Proxy_Handle xdc_runtime_knl_Sync_Proxy_create( const xdc_runtime_knl_Sync_Proxy_Params *__prms, xdc_runtime_Error_Block *__eb ) -{ - return (xdc_runtime_knl_Sync_Proxy_Handle)xdc_runtime_knl_Sync_Proxy_Object__create__S(0, 0, 0, (const xdc_UChar*)__prms, sizeof(xdc_runtime_knl_Sync_Proxy_Params), __eb); -} - -/* Object__delete__S */ -void xdc_runtime_knl_Sync_Proxy_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_knl_SyncNull_Object__delete__S(instp); -} - -/* delete */ -void xdc_runtime_knl_Sync_Proxy_delete(xdc_runtime_knl_Sync_Proxy_Handle *instp) -{ - xdc_runtime_knl_Sync_Proxy_Object__delete__S(instp); -} - -/* Params__init__S */ -void xdc_runtime_knl_Sync_Proxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_knl_SyncNull_Params__init__S(dst, src, psz, isz); -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *xdc_runtime_knl_Sync_Proxy_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - return xdc_runtime_knl_SyncNull_Handle__label__S(obj, lab); -} - -/* query__E */ -xdc_Bool xdc_runtime_knl_Sync_Proxy_query__E( xdc_runtime_knl_Sync_Proxy_Handle __inst, xdc_Int qual ) -{ - return xdc_runtime_knl_ISync_query((xdc_runtime_knl_ISync_Handle)__inst, qual); -} - -/* signal__E */ -xdc_Void xdc_runtime_knl_Sync_Proxy_signal__E( xdc_runtime_knl_Sync_Proxy_Handle __inst ) -{ - xdc_runtime_knl_ISync_signal((xdc_runtime_knl_ISync_Handle)__inst); -} - -/* wait__E */ -xdc_Int xdc_runtime_knl_Sync_Proxy_wait__E( xdc_runtime_knl_Sync_Proxy_Handle __inst, xdc_UInt timeout, xdc_runtime_Error_Block *eb ) -{ - return xdc_runtime_knl_ISync_wait((xdc_runtime_knl_ISync_Handle)__inst, timeout, eb); -} - - -/* - * ======== ti.sysbios.family.arm.lm4.Timer OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { ti_sysbios_family_arm_lm4_Timer_Object2__ s0; char c; } ti_sysbios_family_arm_lm4_Timer___S1; -#pragma DATA_SECTION(ti_sysbios_family_arm_lm4_Timer_Object__DESC__C, ".const:ti_sysbios_family_arm_lm4_Timer_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_family_arm_lm4_Timer_Object__DESC__C = { - (xdc_Ptr)0, /* fxnTab */ - &ti_sysbios_family_arm_lm4_Timer_Module__root__V.link, /* modLink */ - sizeof(ti_sysbios_family_arm_lm4_Timer___S1) - sizeof(ti_sysbios_family_arm_lm4_Timer_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(ti_sysbios_family_arm_lm4_Timer_Object2__), /* objSize */ - (xdc_Ptr)&ti_sysbios_family_arm_lm4_Timer_Object__PARAMS__C, /* prmsInit */ - sizeof(ti_sysbios_family_arm_lm4_Timer_Params), /* prmsSize */ -}; - - -/* - * ======== ti.sysbios.family.arm.m3.Hwi OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { ti_sysbios_family_arm_m3_Hwi_Object2__ s0; char c; } ti_sysbios_family_arm_m3_Hwi___S1; -#pragma DATA_SECTION(ti_sysbios_family_arm_m3_Hwi_Object__DESC__C, ".const:ti_sysbios_family_arm_m3_Hwi_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_family_arm_m3_Hwi_Object__DESC__C = { - (xdc_Ptr)0, /* fxnTab */ - &ti_sysbios_family_arm_m3_Hwi_Module__root__V.link, /* modLink */ - sizeof(ti_sysbios_family_arm_m3_Hwi___S1) - sizeof(ti_sysbios_family_arm_m3_Hwi_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(ti_sysbios_family_arm_m3_Hwi_Object2__), /* objSize */ - (xdc_Ptr)&ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C, /* prmsInit */ - sizeof(ti_sysbios_family_arm_m3_Hwi_Params), /* prmsSize */ -}; - - -/* - * ======== ti.sysbios.gates.GateHwi OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { ti_sysbios_gates_GateHwi_Object2__ s0; char c; } ti_sysbios_gates_GateHwi___S1; -#pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Object__DESC__C, ".const:ti_sysbios_gates_GateHwi_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_gates_GateHwi_Object__DESC__C = { - (xdc_Ptr)&ti_sysbios_gates_GateHwi_Module__FXNS__C, /* fxnTab */ - &ti_sysbios_gates_GateHwi_Module__root__V.link, /* modLink */ - sizeof(ti_sysbios_gates_GateHwi___S1) - sizeof(ti_sysbios_gates_GateHwi_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(ti_sysbios_gates_GateHwi_Object2__), /* objSize */ - (xdc_Ptr)&ti_sysbios_gates_GateHwi_Object__PARAMS__C, /* prmsInit */ - sizeof(ti_sysbios_gates_GateHwi_Params), /* prmsSize */ -}; - - -/* - * ======== ti.sysbios.gates.GateMutex OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { ti_sysbios_gates_GateMutex_Object2__ s0; char c; } ti_sysbios_gates_GateMutex___S1; -#pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Object__DESC__C, ".const:ti_sysbios_gates_GateMutex_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_gates_GateMutex_Object__DESC__C = { - (xdc_Ptr)&ti_sysbios_gates_GateMutex_Module__FXNS__C, /* fxnTab */ - &ti_sysbios_gates_GateMutex_Module__root__V.link, /* modLink */ - sizeof(ti_sysbios_gates_GateMutex___S1) - sizeof(ti_sysbios_gates_GateMutex_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(ti_sysbios_gates_GateMutex_Object2__), /* objSize */ - (xdc_Ptr)&ti_sysbios_gates_GateMutex_Object__PARAMS__C, /* prmsInit */ - sizeof(ti_sysbios_gates_GateMutex_Params), /* prmsSize */ -}; - - -/* - * ======== ti.sysbios.hal.Hwi OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { ti_sysbios_hal_Hwi_Object2__ s0; char c; } ti_sysbios_hal_Hwi___S1; -#pragma DATA_SECTION(ti_sysbios_hal_Hwi_Object__DESC__C, ".const:ti_sysbios_hal_Hwi_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_hal_Hwi_Object__DESC__C = { - (xdc_Ptr)0, /* fxnTab */ - &ti_sysbios_hal_Hwi_Module__root__V.link, /* modLink */ - sizeof(ti_sysbios_hal_Hwi___S1) - sizeof(ti_sysbios_hal_Hwi_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(ti_sysbios_hal_Hwi_Object2__), /* objSize */ - (xdc_Ptr)&ti_sysbios_hal_Hwi_Object__PARAMS__C, /* prmsInit */ - sizeof(ti_sysbios_hal_Hwi_Params), /* prmsSize */ -}; - - -/* - * ======== ti.sysbios.heaps.HeapMem OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { ti_sysbios_heaps_HeapMem_Object2__ s0; char c; } ti_sysbios_heaps_HeapMem___S1; -#pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Object__DESC__C, ".const:ti_sysbios_heaps_HeapMem_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_heaps_HeapMem_Object__DESC__C = { - (xdc_Ptr)&ti_sysbios_heaps_HeapMem_Module__FXNS__C, /* fxnTab */ - &ti_sysbios_heaps_HeapMem_Module__root__V.link, /* modLink */ - sizeof(ti_sysbios_heaps_HeapMem___S1) - sizeof(ti_sysbios_heaps_HeapMem_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(ti_sysbios_heaps_HeapMem_Object2__), /* objSize */ - (xdc_Ptr)&ti_sysbios_heaps_HeapMem_Object__PARAMS__C, /* prmsInit */ - sizeof(ti_sysbios_heaps_HeapMem_Params), /* prmsSize */ -}; - - -/* - * ======== ti.sysbios.io.DEV OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { ti_sysbios_io_DEV_Object2__ s0; char c; } ti_sysbios_io_DEV___S1; -#pragma DATA_SECTION(ti_sysbios_io_DEV_Object__DESC__C, ".const:ti_sysbios_io_DEV_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_io_DEV_Object__DESC__C = { - (xdc_Ptr)-1, /* fxnTab */ - &ti_sysbios_io_DEV_Module__root__V.link, /* modLink */ - sizeof(ti_sysbios_io_DEV___S1) - sizeof(ti_sysbios_io_DEV_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(ti_sysbios_io_DEV_Object2__), /* objSize */ - (xdc_Ptr)&ti_sysbios_io_DEV_Object__PARAMS__C, /* prmsInit */ - sizeof(ti_sysbios_io_DEV_Params), /* prmsSize */ -}; - - -/* - * ======== ti.sysbios.io.GIO OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { ti_sysbios_io_GIO_Object2__ s0; char c; } ti_sysbios_io_GIO___S1; -#pragma DATA_SECTION(ti_sysbios_io_GIO_Object__DESC__C, ".const:ti_sysbios_io_GIO_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_io_GIO_Object__DESC__C = { - (xdc_Ptr)-1, /* fxnTab */ - &ti_sysbios_io_GIO_Module__root__V.link, /* modLink */ - sizeof(ti_sysbios_io_GIO___S1) - sizeof(ti_sysbios_io_GIO_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(ti_sysbios_io_GIO_Object2__), /* objSize */ - (xdc_Ptr)&ti_sysbios_io_GIO_Object__PARAMS__C, /* prmsInit */ - sizeof(ti_sysbios_io_GIO_Params), /* prmsSize */ -}; - - -/* - * ======== ti.sysbios.knl.Clock OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { ti_sysbios_knl_Clock_Object2__ s0; char c; } ti_sysbios_knl_Clock___S1; -#pragma DATA_SECTION(ti_sysbios_knl_Clock_Object__DESC__C, ".const:ti_sysbios_knl_Clock_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Clock_Object__DESC__C = { - (xdc_Ptr)-1, /* fxnTab */ - &ti_sysbios_knl_Clock_Module__root__V.link, /* modLink */ - sizeof(ti_sysbios_knl_Clock___S1) - sizeof(ti_sysbios_knl_Clock_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(ti_sysbios_knl_Clock_Object2__), /* objSize */ - (xdc_Ptr)&ti_sysbios_knl_Clock_Object__PARAMS__C, /* prmsInit */ - sizeof(ti_sysbios_knl_Clock_Params), /* prmsSize */ -}; - - -/* - * ======== ti.sysbios.knl.Event OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { ti_sysbios_knl_Event_Object2__ s0; char c; } ti_sysbios_knl_Event___S1; -#pragma DATA_SECTION(ti_sysbios_knl_Event_Object__DESC__C, ".const:ti_sysbios_knl_Event_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Event_Object__DESC__C = { - (xdc_Ptr)-1, /* fxnTab */ - &ti_sysbios_knl_Event_Module__root__V.link, /* modLink */ - sizeof(ti_sysbios_knl_Event___S1) - sizeof(ti_sysbios_knl_Event_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(ti_sysbios_knl_Event_Object2__), /* objSize */ - (xdc_Ptr)&ti_sysbios_knl_Event_Object__PARAMS__C, /* prmsInit */ - sizeof(ti_sysbios_knl_Event_Params), /* prmsSize */ -}; - - -/* - * ======== ti.sysbios.knl.Mailbox OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { ti_sysbios_knl_Mailbox_Object2__ s0; char c; } ti_sysbios_knl_Mailbox___S1; -#pragma DATA_SECTION(ti_sysbios_knl_Mailbox_Object__DESC__C, ".const:ti_sysbios_knl_Mailbox_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Mailbox_Object__DESC__C = { - (xdc_Ptr)-1, /* fxnTab */ - &ti_sysbios_knl_Mailbox_Module__root__V.link, /* modLink */ - sizeof(ti_sysbios_knl_Mailbox___S1) - sizeof(ti_sysbios_knl_Mailbox_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(ti_sysbios_knl_Mailbox_Object2__), /* objSize */ - (xdc_Ptr)&ti_sysbios_knl_Mailbox_Object__PARAMS__C, /* prmsInit */ - sizeof(ti_sysbios_knl_Mailbox_Params), /* prmsSize */ -}; - - -/* - * ======== ti.sysbios.knl.Queue OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { ti_sysbios_knl_Queue_Object2__ s0; char c; } ti_sysbios_knl_Queue___S1; -#pragma DATA_SECTION(ti_sysbios_knl_Queue_Object__DESC__C, ".const:ti_sysbios_knl_Queue_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Queue_Object__DESC__C = { - (xdc_Ptr)-1, /* fxnTab */ - &ti_sysbios_knl_Queue_Module__root__V.link, /* modLink */ - sizeof(ti_sysbios_knl_Queue___S1) - sizeof(ti_sysbios_knl_Queue_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(ti_sysbios_knl_Queue_Object2__), /* objSize */ - (xdc_Ptr)&ti_sysbios_knl_Queue_Object__PARAMS__C, /* prmsInit */ - sizeof(ti_sysbios_knl_Queue_Params), /* prmsSize */ -}; - - -/* - * ======== ti.sysbios.knl.Semaphore OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { ti_sysbios_knl_Semaphore_Object2__ s0; char c; } ti_sysbios_knl_Semaphore___S1; -#pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Object__DESC__C, ".const:ti_sysbios_knl_Semaphore_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Semaphore_Object__DESC__C = { - (xdc_Ptr)-1, /* fxnTab */ - &ti_sysbios_knl_Semaphore_Module__root__V.link, /* modLink */ - sizeof(ti_sysbios_knl_Semaphore___S1) - sizeof(ti_sysbios_knl_Semaphore_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(ti_sysbios_knl_Semaphore_Object2__), /* objSize */ - (xdc_Ptr)&ti_sysbios_knl_Semaphore_Object__PARAMS__C, /* prmsInit */ - sizeof(ti_sysbios_knl_Semaphore_Params), /* prmsSize */ -}; - - -/* - * ======== ti.sysbios.knl.Swi OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { ti_sysbios_knl_Swi_Object2__ s0; char c; } ti_sysbios_knl_Swi___S1; -#pragma DATA_SECTION(ti_sysbios_knl_Swi_Object__DESC__C, ".const:ti_sysbios_knl_Swi_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Swi_Object__DESC__C = { - (xdc_Ptr)-1, /* fxnTab */ - &ti_sysbios_knl_Swi_Module__root__V.link, /* modLink */ - sizeof(ti_sysbios_knl_Swi___S1) - sizeof(ti_sysbios_knl_Swi_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(ti_sysbios_knl_Swi_Object2__), /* objSize */ - (xdc_Ptr)&ti_sysbios_knl_Swi_Object__PARAMS__C, /* prmsInit */ - sizeof(ti_sysbios_knl_Swi_Params), /* prmsSize */ -}; - - -/* - * ======== ti.sysbios.knl.Task OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { ti_sysbios_knl_Task_Object2__ s0; char c; } ti_sysbios_knl_Task___S1; -#pragma DATA_SECTION(ti_sysbios_knl_Task_Object__DESC__C, ".const:ti_sysbios_knl_Task_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Task_Object__DESC__C = { - (xdc_Ptr)-1, /* fxnTab */ - &ti_sysbios_knl_Task_Module__root__V.link, /* modLink */ - sizeof(ti_sysbios_knl_Task___S1) - sizeof(ti_sysbios_knl_Task_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(ti_sysbios_knl_Task_Object2__), /* objSize */ - (xdc_Ptr)&ti_sysbios_knl_Task_Object__PARAMS__C, /* prmsInit */ - sizeof(ti_sysbios_knl_Task_Params), /* prmsSize */ -}; - - -/* - * ======== ti.sysbios.xdcruntime.SemThreadSupport OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { ti_sysbios_xdcruntime_SemThreadSupport_Object2__ s0; char c; } ti_sysbios_xdcruntime_SemThreadSupport___S1; -#pragma DATA_SECTION(ti_sysbios_xdcruntime_SemThreadSupport_Object__DESC__C, ".const:ti_sysbios_xdcruntime_SemThreadSupport_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc ti_sysbios_xdcruntime_SemThreadSupport_Object__DESC__C = { - (xdc_Ptr)0, /* fxnTab */ - &ti_sysbios_xdcruntime_SemThreadSupport_Module__root__V.link, /* modLink */ - sizeof(ti_sysbios_xdcruntime_SemThreadSupport___S1) - sizeof(ti_sysbios_xdcruntime_SemThreadSupport_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(ti_sysbios_xdcruntime_SemThreadSupport_Object2__), /* objSize */ - (xdc_Ptr)&ti_sysbios_xdcruntime_SemThreadSupport_Object__PARAMS__C, /* prmsInit */ - sizeof(ti_sysbios_xdcruntime_SemThreadSupport_Params), /* prmsSize */ -}; - - -/* - * ======== xdc.runtime.HeapStd OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { xdc_runtime_HeapStd_Object2__ s0; char c; } xdc_runtime_HeapStd___S1; -#pragma DATA_SECTION(xdc_runtime_HeapStd_Object__DESC__C, ".const:xdc_runtime_HeapStd_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc xdc_runtime_HeapStd_Object__DESC__C = { - (xdc_Ptr)&xdc_runtime_HeapStd_Module__FXNS__C, /* fxnTab */ - &xdc_runtime_HeapStd_Module__root__V.link, /* modLink */ - sizeof(xdc_runtime_HeapStd___S1) - sizeof(xdc_runtime_HeapStd_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(xdc_runtime_HeapStd_Object2__), /* objSize */ - (xdc_Ptr)&xdc_runtime_HeapStd_Object__PARAMS__C, /* prmsInit */ - sizeof(xdc_runtime_HeapStd_Params), /* prmsSize */ -}; - - -/* - * ======== xdc.runtime.knl.SemThread OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { xdc_runtime_knl_SemThread_Object2__ s0; char c; } xdc_runtime_knl_SemThread___S1; -#pragma DATA_SECTION(xdc_runtime_knl_SemThread_Object__DESC__C, ".const:xdc_runtime_knl_SemThread_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc xdc_runtime_knl_SemThread_Object__DESC__C = { - (xdc_Ptr)&xdc_runtime_knl_SemThread_Module__FXNS__C, /* fxnTab */ - &xdc_runtime_knl_SemThread_Module__root__V.link, /* modLink */ - sizeof(xdc_runtime_knl_SemThread___S1) - sizeof(xdc_runtime_knl_SemThread_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(xdc_runtime_knl_SemThread_Object2__), /* objSize */ - (xdc_Ptr)&xdc_runtime_knl_SemThread_Object__PARAMS__C, /* prmsInit */ - sizeof(xdc_runtime_knl_SemThread_Params), /* prmsSize */ -}; - - -/* - * ======== xdc.runtime.knl.SyncGeneric OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { xdc_runtime_knl_SyncGeneric_Object2__ s0; char c; } xdc_runtime_knl_SyncGeneric___S1; -#pragma DATA_SECTION(xdc_runtime_knl_SyncGeneric_Object__DESC__C, ".const:xdc_runtime_knl_SyncGeneric_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc xdc_runtime_knl_SyncGeneric_Object__DESC__C = { - (xdc_Ptr)&xdc_runtime_knl_SyncGeneric_Module__FXNS__C, /* fxnTab */ - &xdc_runtime_knl_SyncGeneric_Module__root__V.link, /* modLink */ - sizeof(xdc_runtime_knl_SyncGeneric___S1) - sizeof(xdc_runtime_knl_SyncGeneric_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(xdc_runtime_knl_SyncGeneric_Object2__), /* objSize */ - (xdc_Ptr)&xdc_runtime_knl_SyncGeneric_Object__PARAMS__C, /* prmsInit */ - sizeof(xdc_runtime_knl_SyncGeneric_Params), /* prmsSize */ -}; - - -/* - * ======== xdc.runtime.knl.SyncNull OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { xdc_runtime_knl_SyncNull_Object2__ s0; char c; } xdc_runtime_knl_SyncNull___S1; -#pragma DATA_SECTION(xdc_runtime_knl_SyncNull_Object__DESC__C, ".const:xdc_runtime_knl_SyncNull_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc xdc_runtime_knl_SyncNull_Object__DESC__C = { - (xdc_Ptr)&xdc_runtime_knl_SyncNull_Module__FXNS__C, /* fxnTab */ - &xdc_runtime_knl_SyncNull_Module__root__V.link, /* modLink */ - sizeof(xdc_runtime_knl_SyncNull___S1) - sizeof(xdc_runtime_knl_SyncNull_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(xdc_runtime_knl_SyncNull_Object2__), /* objSize */ - (xdc_Ptr)&xdc_runtime_knl_SyncNull_Object__PARAMS__C, /* prmsInit */ - sizeof(xdc_runtime_knl_SyncNull_Params), /* prmsSize */ -}; - - -/* - * ======== xdc.runtime.knl.SyncSemThread OBJECT DESCRIPTOR ======== - */ - -/* Object__DESC__C */ -typedef struct { xdc_runtime_knl_SyncSemThread_Object2__ s0; char c; } xdc_runtime_knl_SyncSemThread___S1; -#pragma DATA_SECTION(xdc_runtime_knl_SyncSemThread_Object__DESC__C, ".const:xdc_runtime_knl_SyncSemThread_Object__DESC__C"); -__FAR__ const xdc_runtime_Core_ObjDesc xdc_runtime_knl_SyncSemThread_Object__DESC__C = { - (xdc_Ptr)&xdc_runtime_knl_SyncSemThread_Module__FXNS__C, /* fxnTab */ - &xdc_runtime_knl_SyncSemThread_Module__root__V.link, /* modLink */ - sizeof(xdc_runtime_knl_SyncSemThread___S1) - sizeof(xdc_runtime_knl_SyncSemThread_Object2__), /* objAlign */ - 0, /* objHeap */ - 0, /* objName */ - sizeof(xdc_runtime_knl_SyncSemThread_Object2__), /* objSize */ - (xdc_Ptr)&xdc_runtime_knl_SyncSemThread_Object__PARAMS__C, /* prmsInit */ - sizeof(xdc_runtime_knl_SyncSemThread_Params), /* prmsSize */ -}; - - -/* - * ======== xdc.runtime.IHeap VIRTUAL FUNCTIONS ======== - */ - -/* create */ -xdc_runtime_IHeap_Handle xdc_runtime_IHeap_create( xdc_runtime_IHeap_Module __mod, const xdc_runtime_IHeap_Params *__prms, xdc_runtime_Error_Block *__eb ) -{ - return (xdc_runtime_IHeap_Handle) __mod->__sysp->__create(0, 0, 0, (const xdc_UChar*)__prms, sizeof (xdc_runtime_IHeap_Params), __eb); -} - -/* delete */ -void xdc_runtime_IHeap_delete( xdc_runtime_IHeap_Handle *instp ) -{ - (*instp)->__fxns->__sysp->__delete(instp); -} - - -/* - * ======== xdc.runtime.knl.ISemaphore VIRTUAL FUNCTIONS ======== - */ - -/* create */ -xdc_runtime_knl_ISemaphore_Handle xdc_runtime_knl_ISemaphore_create( xdc_runtime_knl_ISemaphore_Module __mod, const xdc_runtime_knl_ISemaphore_Params *__prms, xdc_runtime_Error_Block *__eb ) -{ - return (xdc_runtime_knl_ISemaphore_Handle) __mod->__sysp->__create(0, 0, 0, (const xdc_UChar*)__prms, sizeof (xdc_runtime_knl_ISemaphore_Params), __eb); -} - -/* delete */ -void xdc_runtime_knl_ISemaphore_delete( xdc_runtime_knl_ISemaphore_Handle *instp ) -{ - (*instp)->__fxns->__sysp->__delete(instp); -} - - -/* - * ======== xdc.runtime.IGateProvider VIRTUAL FUNCTIONS ======== - */ - -/* create */ -xdc_runtime_IGateProvider_Handle xdc_runtime_IGateProvider_create( xdc_runtime_IGateProvider_Module __mod, const xdc_runtime_IGateProvider_Params *__prms, xdc_runtime_Error_Block *__eb ) -{ - return (xdc_runtime_IGateProvider_Handle) __mod->__sysp->__create(0, 0, 0, (const xdc_UChar*)__prms, sizeof (xdc_runtime_IGateProvider_Params), __eb); -} - -/* delete */ -void xdc_runtime_IGateProvider_delete( xdc_runtime_IGateProvider_Handle *instp ) -{ - (*instp)->__fxns->__sysp->__delete(instp); -} - - -/* - * ======== xdc.runtime.knl.ISync VIRTUAL FUNCTIONS ======== - */ - -/* create */ -xdc_runtime_knl_ISync_Handle xdc_runtime_knl_ISync_create( xdc_runtime_knl_ISync_Module __mod, const xdc_runtime_knl_ISync_Params *__prms, xdc_runtime_Error_Block *__eb ) -{ - return (xdc_runtime_knl_ISync_Handle) __mod->__sysp->__create(0, 0, 0, (const xdc_UChar*)__prms, sizeof (xdc_runtime_knl_ISync_Params), __eb); -} - -/* delete */ -void xdc_runtime_knl_ISync_delete( xdc_runtime_knl_ISync_Handle *instp ) -{ - (*instp)->__fxns->__sysp->__delete(instp); -} - - -/* - * ======== ti.catalog.arm.cortexm4.tiva.ce.Boot SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool ti_catalog_arm_cortexm4_tiva_ce_Boot_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== ti.sysbios.BIOS SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_BIOS_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== ti.sysbios.BIOS_RtsGateProxy SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_BIOS_RtsGateProxy_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_BIOS_RtsGateProxy_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_BIOS_RtsGateProxy_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_BIOS_RtsGateProxy_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_BIOS_RtsGateProxy_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_BIOS_RtsGateProxy_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_BIOS_RtsGateProxy_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_BIOS_RtsGateProxy_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_BIOS_RtsGateProxy_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_BIOS_RtsGateProxy_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_BIOS_RtsGateProxy_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_BIOS_RtsGateProxy_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_BIOS_RtsGateProxy_Module_GateProxy_query - -xdc_Bool ti_sysbios_BIOS_RtsGateProxy_Proxy__abstract__S( void ) -{ - return 0; -} -xdc_Ptr ti_sysbios_BIOS_RtsGateProxy_Proxy__delegate__S( void ) -{ - return (xdc_Ptr)&ti_sysbios_gates_GateMutex_Module__FXNS__C; -} - - - -/* - * ======== ti.sysbios.family.arm.lm4.Seconds SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_family_arm_lm4_Seconds_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== ti.sysbios.family.arm.lm4.Timer SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_family_arm_lm4_Timer_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_family_arm_lm4_Timer_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_family_arm_lm4_Timer_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_family_arm_lm4_Timer_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_family_arm_lm4_Timer_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_family_arm_lm4_Timer_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_family_arm_lm4_Timer_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_family_arm_lm4_Timer_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_family_arm_lm4_Timer_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_family_arm_lm4_Timer_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_family_arm_lm4_Timer_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_family_arm_lm4_Timer_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_family_arm_lm4_Timer_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_family_arm_lm4_Timer_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_family_arm_lm4_Timer_Module__startupDone__S( void ) -{ - return ti_sysbios_family_arm_lm4_Timer_Module__startupDone__F(); -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_family_arm_lm4_Timer_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32816; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void ti_sysbios_family_arm_lm4_Timer_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &ti_sysbios_family_arm_lm4_Timer_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr ti_sysbios_family_arm_lm4_Timer_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((ti_sysbios_family_arm_lm4_Timer_Object__ *)oa) + i; - } - - if (ti_sysbios_family_arm_lm4_Timer_Object__count__C == 0) { - return NULL; - } - - return ((ti_sysbios_family_arm_lm4_Timer_Object__ *)ti_sysbios_family_arm_lm4_Timer_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr ti_sysbios_family_arm_lm4_Timer_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)ti_sysbios_family_arm_lm4_Timer_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&ti_sysbios_family_arm_lm4_Timer_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr ti_sysbios_family_arm_lm4_Timer_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&ti_sysbios_family_arm_lm4_Timer_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_family_arm_lm4_Timer_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_family_arm_lm4_Timer___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - ti_sysbios_family_arm_lm4_Timer_Args__create *__args = __aa; - ti_sysbios_family_arm_lm4_Timer_Params __prms; - ti_sysbios_family_arm_lm4_Timer_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_family_arm_lm4_Timer_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_family_arm_lm4_Timer_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = ti_sysbios_family_arm_lm4_Timer_Instance_init__E(__newobj, __args->id, __args->tickFxn, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_family_arm_lm4_Timer_Object__DESC__C, __newobj, (xdc_Fxn)ti_sysbios_family_arm_lm4_Timer_Instance_finalize__E, iStat, (xdc_Bool)(__obj != NULL)); - return NULL; - } - - return __newobj; -} - -/* create */ -ti_sysbios_family_arm_lm4_Timer_Handle ti_sysbios_family_arm_lm4_Timer_create( xdc_Int id, ti_sysbios_interfaces_ITimer_FuncPtr tickFxn, const ti_sysbios_family_arm_lm4_Timer_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_family_arm_lm4_Timer_Params __prms; - ti_sysbios_family_arm_lm4_Timer_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_family_arm_lm4_Timer_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_family_arm_lm4_Timer_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = ti_sysbios_family_arm_lm4_Timer_Instance_init__E(__newobj, id, tickFxn, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_family_arm_lm4_Timer_Object__DESC__C, __newobj, (xdc_Fxn)ti_sysbios_family_arm_lm4_Timer_Instance_finalize__E, iStat, 0); - return NULL; - } - - return __newobj; -} - -/* construct */ -void ti_sysbios_family_arm_lm4_Timer_construct(ti_sysbios_family_arm_lm4_Timer_Struct *__obj, xdc_Int id, ti_sysbios_interfaces_ITimer_FuncPtr tickFxn, const ti_sysbios_family_arm_lm4_Timer_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_family_arm_lm4_Timer_Params __prms; - int iStat; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&ti_sysbios_family_arm_lm4_Timer_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_family_arm_lm4_Timer_Params), __eb); - /* module-specific initialization */ - iStat = ti_sysbios_family_arm_lm4_Timer_Instance_init__E((xdc_Ptr)__obj, id, tickFxn, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_family_arm_lm4_Timer_Object__DESC__C, (xdc_Ptr)__obj, (xdc_Fxn)ti_sysbios_family_arm_lm4_Timer_Instance_finalize__E, iStat, 1); - } - -} - -/* Object__destruct__S */ -xdc_Void ti_sysbios_family_arm_lm4_Timer_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_family_arm_lm4_Timer_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_family_arm_lm4_Timer_Instance_finalize__E, 0, TRUE); -} - -/* destruct */ -void ti_sysbios_family_arm_lm4_Timer_destruct(ti_sysbios_family_arm_lm4_Timer_Struct *obj) -{ - ti_sysbios_family_arm_lm4_Timer_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void ti_sysbios_family_arm_lm4_Timer_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_family_arm_lm4_Timer_Object__DESC__C, *((ti_sysbios_family_arm_lm4_Timer_Object**)instp), (xdc_Fxn)ti_sysbios_family_arm_lm4_Timer_Instance_finalize__E, 0, FALSE); - *((ti_sysbios_family_arm_lm4_Timer_Handle*)instp) = NULL; -} - -/* delete */ -void ti_sysbios_family_arm_lm4_Timer_delete(ti_sysbios_family_arm_lm4_Timer_Handle *instp) -{ - ti_sysbios_family_arm_lm4_Timer_Object__delete__S(instp); -} - - -/* - * ======== ti.sysbios.family.arm.lm4.TimestampProvider SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_family_arm_lm4_TimestampProvider_Module__startupDone__S( void ) -{ - return ti_sysbios_family_arm_lm4_TimestampProvider_Module__startupDone__F(); -} - - - -/* - * ======== ti.sysbios.family.arm.m3.Hwi SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_family_arm_m3_Hwi_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_family_arm_m3_Hwi_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_family_arm_m3_Hwi_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_family_arm_m3_Hwi_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_family_arm_m3_Hwi_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_family_arm_m3_Hwi_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_family_arm_m3_Hwi_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_family_arm_m3_Hwi_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_family_arm_m3_Hwi_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_family_arm_m3_Hwi_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_family_arm_m3_Hwi_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_family_arm_m3_Hwi_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_family_arm_m3_Hwi_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_family_arm_m3_Hwi_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_family_arm_m3_Hwi_Module__startupDone__S( void ) -{ - return ti_sysbios_family_arm_m3_Hwi_Module__startupDone__F(); -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_family_arm_m3_Hwi_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32797; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void ti_sysbios_family_arm_m3_Hwi_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &ti_sysbios_family_arm_m3_Hwi_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr ti_sysbios_family_arm_m3_Hwi_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((ti_sysbios_family_arm_m3_Hwi_Object__ *)oa) + i; - } - - if (ti_sysbios_family_arm_m3_Hwi_Object__count__C == 0) { - return NULL; - } - - return ((ti_sysbios_family_arm_m3_Hwi_Object__ *)ti_sysbios_family_arm_m3_Hwi_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr ti_sysbios_family_arm_m3_Hwi_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)ti_sysbios_family_arm_m3_Hwi_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&ti_sysbios_family_arm_m3_Hwi_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr ti_sysbios_family_arm_m3_Hwi_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&ti_sysbios_family_arm_m3_Hwi_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_family_arm_m3_Hwi_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_family_arm_m3_Hwi___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - ti_sysbios_family_arm_m3_Hwi_Args__create *__args = __aa; - ti_sysbios_family_arm_m3_Hwi_Params __prms; - ti_sysbios_family_arm_m3_Hwi_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_family_arm_m3_Hwi_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_family_arm_m3_Hwi_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = ti_sysbios_family_arm_m3_Hwi_Instance_init__E(__newobj, __args->intNum, __args->hwiFxn, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_family_arm_m3_Hwi_Object__DESC__C, __newobj, (xdc_Fxn)ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E, iStat, (xdc_Bool)(__obj != NULL)); - return NULL; - } - - return __newobj; -} - -/* create */ -ti_sysbios_family_arm_m3_Hwi_Handle ti_sysbios_family_arm_m3_Hwi_create( xdc_Int intNum, ti_sysbios_interfaces_IHwi_FuncPtr hwiFxn, const ti_sysbios_family_arm_m3_Hwi_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_family_arm_m3_Hwi_Params __prms; - ti_sysbios_family_arm_m3_Hwi_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_family_arm_m3_Hwi_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_family_arm_m3_Hwi_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = ti_sysbios_family_arm_m3_Hwi_Instance_init__E(__newobj, intNum, hwiFxn, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_family_arm_m3_Hwi_Object__DESC__C, __newobj, (xdc_Fxn)ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E, iStat, 0); - return NULL; - } - - return __newobj; -} - -/* construct */ -void ti_sysbios_family_arm_m3_Hwi_construct(ti_sysbios_family_arm_m3_Hwi_Struct *__obj, xdc_Int intNum, ti_sysbios_interfaces_IHwi_FuncPtr hwiFxn, const ti_sysbios_family_arm_m3_Hwi_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_family_arm_m3_Hwi_Params __prms; - int iStat; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&ti_sysbios_family_arm_m3_Hwi_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_family_arm_m3_Hwi_Params), __eb); - /* module-specific initialization */ - iStat = ti_sysbios_family_arm_m3_Hwi_Instance_init__E((xdc_Ptr)__obj, intNum, hwiFxn, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_family_arm_m3_Hwi_Object__DESC__C, (xdc_Ptr)__obj, (xdc_Fxn)ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E, iStat, 1); - } - -} - -/* Object__destruct__S */ -xdc_Void ti_sysbios_family_arm_m3_Hwi_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_family_arm_m3_Hwi_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E, 0, TRUE); -} - -/* destruct */ -void ti_sysbios_family_arm_m3_Hwi_destruct(ti_sysbios_family_arm_m3_Hwi_Struct *obj) -{ - ti_sysbios_family_arm_m3_Hwi_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void ti_sysbios_family_arm_m3_Hwi_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_family_arm_m3_Hwi_Object__DESC__C, *((ti_sysbios_family_arm_m3_Hwi_Object**)instp), (xdc_Fxn)ti_sysbios_family_arm_m3_Hwi_Instance_finalize__E, 0, FALSE); - *((ti_sysbios_family_arm_m3_Hwi_Handle*)instp) = NULL; -} - -/* delete */ -void ti_sysbios_family_arm_m3_Hwi_delete(ti_sysbios_family_arm_m3_Hwi_Handle *instp) -{ - ti_sysbios_family_arm_m3_Hwi_Object__delete__S(instp); -} - - -/* - * ======== ti.sysbios.family.arm.m3.IntrinsicsSupport SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== ti.sysbios.family.arm.m3.TaskSupport SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_family_arm_m3_TaskSupport_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== ti.sysbios.gates.GateHwi SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_gates_GateHwi_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_gates_GateHwi_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_gates_GateHwi_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_gates_GateHwi_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_gates_GateHwi_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_gates_GateHwi_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_gates_GateHwi_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_gates_GateHwi_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_gates_GateHwi_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_gates_GateHwi_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_gates_GateHwi_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_gates_GateHwi_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_gates_GateHwi_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_gates_GateHwi_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_gates_GateHwi_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_gates_GateHwi_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_gates_GateHwi_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_gates_GateHwi_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_gates_GateHwi_Module__startupDone__S( void ) -{ - return 1; -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_gates_GateHwi_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32827; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void ti_sysbios_gates_GateHwi_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &ti_sysbios_gates_GateHwi_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr ti_sysbios_gates_GateHwi_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((ti_sysbios_gates_GateHwi_Object__ *)oa) + i; - } - - if (ti_sysbios_gates_GateHwi_Object__count__C == 0) { - return NULL; - } - - return ((ti_sysbios_gates_GateHwi_Object__ *)ti_sysbios_gates_GateHwi_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr ti_sysbios_gates_GateHwi_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)ti_sysbios_gates_GateHwi_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&ti_sysbios_gates_GateHwi_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr ti_sysbios_gates_GateHwi_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&ti_sysbios_gates_GateHwi_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_gates_GateHwi_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_gates_GateHwi___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - ti_sysbios_gates_GateHwi_Params __prms; - ti_sysbios_gates_GateHwi_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_gates_GateHwi_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_gates_GateHwi_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - ti_sysbios_gates_GateHwi_Instance_init__E(__newobj, &__prms); - return __newobj; -} - -/* create */ -ti_sysbios_gates_GateHwi_Handle ti_sysbios_gates_GateHwi_create( const ti_sysbios_gates_GateHwi_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_gates_GateHwi_Params __prms; - ti_sysbios_gates_GateHwi_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_gates_GateHwi_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_gates_GateHwi_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - ti_sysbios_gates_GateHwi_Instance_init__E(__newobj, &__prms); - return __newobj; -} - -/* construct */ -void ti_sysbios_gates_GateHwi_construct(ti_sysbios_gates_GateHwi_Struct *__obj, const ti_sysbios_gates_GateHwi_Params *__paramsPtr ) -{ - ti_sysbios_gates_GateHwi_Params __prms; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&ti_sysbios_gates_GateHwi_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_gates_GateHwi_Params), NULL); - /* module-specific initialization */ - ti_sysbios_gates_GateHwi_Instance_init__E((xdc_Ptr)__obj, &__prms); -} - -/* Object__destruct__S */ -xdc_Void ti_sysbios_gates_GateHwi_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_gates_GateHwi_Object__DESC__C, obj, NULL, -1, TRUE); -} - -/* destruct */ -void ti_sysbios_gates_GateHwi_destruct(ti_sysbios_gates_GateHwi_Struct *obj) -{ - ti_sysbios_gates_GateHwi_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void ti_sysbios_gates_GateHwi_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_gates_GateHwi_Object__DESC__C, *((ti_sysbios_gates_GateHwi_Object**)instp), NULL, -1, FALSE); - *((ti_sysbios_gates_GateHwi_Handle*)instp) = NULL; -} - -/* delete */ -void ti_sysbios_gates_GateHwi_delete(ti_sysbios_gates_GateHwi_Handle *instp) -{ - ti_sysbios_gates_GateHwi_Object__delete__S(instp); -} - - -/* - * ======== ti.sysbios.gates.GateMutex SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_gates_GateMutex_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_gates_GateMutex_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_gates_GateMutex_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_gates_GateMutex_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_gates_GateMutex_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_gates_GateMutex_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_gates_GateMutex_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_gates_GateMutex_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_gates_GateMutex_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_gates_GateMutex_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_gates_GateMutex_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_gates_GateMutex_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_gates_GateMutex_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_gates_GateMutex_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_gates_GateMutex_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_gates_GateMutex_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_gates_GateMutex_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_gates_GateMutex_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_gates_GateMutex_Module__startupDone__S( void ) -{ - return 1; -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_gates_GateMutex_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32828; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void ti_sysbios_gates_GateMutex_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &ti_sysbios_gates_GateMutex_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr ti_sysbios_gates_GateMutex_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((ti_sysbios_gates_GateMutex_Object__ *)oa) + i; - } - - if (ti_sysbios_gates_GateMutex_Object__count__C == 0) { - return NULL; - } - - return ((ti_sysbios_gates_GateMutex_Object__ *)ti_sysbios_gates_GateMutex_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr ti_sysbios_gates_GateMutex_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)ti_sysbios_gates_GateMutex_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&ti_sysbios_gates_GateMutex_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr ti_sysbios_gates_GateMutex_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&ti_sysbios_gates_GateMutex_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_gates_GateMutex_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_gates_GateMutex___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - ti_sysbios_gates_GateMutex_Params __prms; - ti_sysbios_gates_GateMutex_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_gates_GateMutex_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_gates_GateMutex_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - ti_sysbios_gates_GateMutex_Instance_init__E(__newobj, &__prms); - return __newobj; -} - -/* create */ -ti_sysbios_gates_GateMutex_Handle ti_sysbios_gates_GateMutex_create( const ti_sysbios_gates_GateMutex_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_gates_GateMutex_Params __prms; - ti_sysbios_gates_GateMutex_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_gates_GateMutex_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_gates_GateMutex_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - ti_sysbios_gates_GateMutex_Instance_init__E(__newobj, &__prms); - return __newobj; -} - -/* construct */ -void ti_sysbios_gates_GateMutex_construct(ti_sysbios_gates_GateMutex_Struct *__obj, const ti_sysbios_gates_GateMutex_Params *__paramsPtr ) -{ - ti_sysbios_gates_GateMutex_Params __prms; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&ti_sysbios_gates_GateMutex_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_gates_GateMutex_Params), NULL); - /* module-specific initialization */ - ti_sysbios_gates_GateMutex_Instance_init__E((xdc_Ptr)__obj, &__prms); -} - -/* Object__destruct__S */ -xdc_Void ti_sysbios_gates_GateMutex_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_gates_GateMutex_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_gates_GateMutex_Instance_finalize__E, -1, TRUE); -} - -/* destruct */ -void ti_sysbios_gates_GateMutex_destruct(ti_sysbios_gates_GateMutex_Struct *obj) -{ - ti_sysbios_gates_GateMutex_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void ti_sysbios_gates_GateMutex_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_gates_GateMutex_Object__DESC__C, *((ti_sysbios_gates_GateMutex_Object**)instp), (xdc_Fxn)ti_sysbios_gates_GateMutex_Instance_finalize__E, -1, FALSE); - *((ti_sysbios_gates_GateMutex_Handle*)instp) = NULL; -} - -/* delete */ -void ti_sysbios_gates_GateMutex_delete(ti_sysbios_gates_GateMutex_Handle *instp) -{ - ti_sysbios_gates_GateMutex_Object__delete__S(instp); -} - - -/* - * ======== ti.sysbios.hal.Hwi SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_hal_Hwi_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_hal_Hwi_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_hal_Hwi_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_hal_Hwi_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_hal_Hwi_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_hal_Hwi_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_hal_Hwi_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_hal_Hwi_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_hal_Hwi_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_hal_Hwi_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_hal_Hwi_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_hal_Hwi_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_hal_Hwi_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_hal_Hwi_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_hal_Hwi_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_hal_Hwi_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_hal_Hwi_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_hal_Hwi_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_hal_Hwi_Module__startupDone__S( void ) -{ - return ti_sysbios_hal_Hwi_Module__startupDone__F(); -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_hal_Hwi_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32811; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void ti_sysbios_hal_Hwi_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &ti_sysbios_hal_Hwi_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr ti_sysbios_hal_Hwi_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((ti_sysbios_hal_Hwi_Object__ *)oa) + i; - } - - if (ti_sysbios_hal_Hwi_Object__count__C == 0) { - return NULL; - } - - return ((ti_sysbios_hal_Hwi_Object__ *)ti_sysbios_hal_Hwi_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr ti_sysbios_hal_Hwi_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)ti_sysbios_hal_Hwi_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&ti_sysbios_hal_Hwi_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr ti_sysbios_hal_Hwi_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&ti_sysbios_hal_Hwi_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_hal_Hwi_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_hal_Hwi___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - ti_sysbios_hal_Hwi_Args__create *__args = __aa; - ti_sysbios_hal_Hwi_Params __prms; - ti_sysbios_hal_Hwi_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_hal_Hwi_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_hal_Hwi_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = ti_sysbios_hal_Hwi_Instance_init__E(__newobj, __args->intNum, __args->hwiFxn, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_hal_Hwi_Object__DESC__C, __newobj, (xdc_Fxn)ti_sysbios_hal_Hwi_Instance_finalize__E, iStat, (xdc_Bool)(__obj != NULL)); - return NULL; - } - - return __newobj; -} - -/* create */ -ti_sysbios_hal_Hwi_Handle ti_sysbios_hal_Hwi_create( xdc_Int intNum, ti_sysbios_hal_Hwi_FuncPtr hwiFxn, const ti_sysbios_hal_Hwi_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_hal_Hwi_Params __prms; - ti_sysbios_hal_Hwi_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_hal_Hwi_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_hal_Hwi_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = ti_sysbios_hal_Hwi_Instance_init__E(__newobj, intNum, hwiFxn, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_hal_Hwi_Object__DESC__C, __newobj, (xdc_Fxn)ti_sysbios_hal_Hwi_Instance_finalize__E, iStat, 0); - return NULL; - } - - return __newobj; -} - -/* construct */ -void ti_sysbios_hal_Hwi_construct(ti_sysbios_hal_Hwi_Struct *__obj, xdc_Int intNum, ti_sysbios_hal_Hwi_FuncPtr hwiFxn, const ti_sysbios_hal_Hwi_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_hal_Hwi_Params __prms; - int iStat; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&ti_sysbios_hal_Hwi_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_hal_Hwi_Params), __eb); - /* module-specific initialization */ - iStat = ti_sysbios_hal_Hwi_Instance_init__E((xdc_Ptr)__obj, intNum, hwiFxn, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_hal_Hwi_Object__DESC__C, (xdc_Ptr)__obj, (xdc_Fxn)ti_sysbios_hal_Hwi_Instance_finalize__E, iStat, 1); - } - -} - -/* Object__destruct__S */ -xdc_Void ti_sysbios_hal_Hwi_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_hal_Hwi_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_hal_Hwi_Instance_finalize__E, 0, TRUE); -} - -/* destruct */ -void ti_sysbios_hal_Hwi_destruct(ti_sysbios_hal_Hwi_Struct *obj) -{ - ti_sysbios_hal_Hwi_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void ti_sysbios_hal_Hwi_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_hal_Hwi_Object__DESC__C, *((ti_sysbios_hal_Hwi_Object**)instp), (xdc_Fxn)ti_sysbios_hal_Hwi_Instance_finalize__E, 0, FALSE); - *((ti_sysbios_hal_Hwi_Handle*)instp) = NULL; -} - -/* delete */ -void ti_sysbios_hal_Hwi_delete(ti_sysbios_hal_Hwi_Handle *instp) -{ - ti_sysbios_hal_Hwi_Object__delete__S(instp); -} - - -/* - * ======== ti.sysbios.hal.Hwi_HwiProxy SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_hal_Hwi_HwiProxy_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_hal_Hwi_HwiProxy_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_hal_Hwi_HwiProxy_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_hal_Hwi_HwiProxy_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_hal_Hwi_HwiProxy_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_hal_Hwi_HwiProxy_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_hal_Hwi_HwiProxy_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_hal_Hwi_HwiProxy_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_hal_Hwi_HwiProxy_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_hal_Hwi_HwiProxy_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_hal_Hwi_HwiProxy_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_hal_Hwi_HwiProxy_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_hal_Hwi_HwiProxy_Module_GateProxy_query - -xdc_Bool ti_sysbios_hal_Hwi_HwiProxy_Proxy__abstract__S( void ) -{ - return 0; -} -xdc_Ptr ti_sysbios_hal_Hwi_HwiProxy_Proxy__delegate__S( void ) -{ - return 0; -} - - - -/* - * ======== ti.sysbios.hal.Seconds SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_hal_Seconds_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== ti.sysbios.hal.Seconds_SecondsProxy SYSTEM FUNCTIONS ======== - */ - - -xdc_Bool ti_sysbios_hal_Seconds_SecondsProxy_Proxy__abstract__S( void ) -{ - return 0; -} -xdc_Ptr ti_sysbios_hal_Seconds_SecondsProxy_Proxy__delegate__S( void ) -{ - return (xdc_Ptr)&ti_sysbios_family_arm_lm4_Seconds_Module__FXNS__C; -} - - -/* - * ======== ti.sysbios.heaps.HeapMem SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_heaps_HeapMem_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_heaps_HeapMem_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_heaps_HeapMem_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_heaps_HeapMem_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_heaps_HeapMem_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_heaps_HeapMem_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_heaps_HeapMem_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_heaps_HeapMem_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_heaps_HeapMem_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_heaps_HeapMem_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_heaps_HeapMem_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_heaps_HeapMem_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_heaps_HeapMem_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_heaps_HeapMem_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_heaps_HeapMem_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_heaps_HeapMem_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_heaps_HeapMem_Module__startupDone__S( void ) -{ - return 1; -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_heaps_HeapMem_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32832; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void ti_sysbios_heaps_HeapMem_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &ti_sysbios_heaps_HeapMem_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr ti_sysbios_heaps_HeapMem_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((ti_sysbios_heaps_HeapMem_Object__ *)oa) + i; - } - - if (ti_sysbios_heaps_HeapMem_Object__count__C == 0) { - return NULL; - } - - return ((ti_sysbios_heaps_HeapMem_Object__ *)ti_sysbios_heaps_HeapMem_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr ti_sysbios_heaps_HeapMem_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)ti_sysbios_heaps_HeapMem_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&ti_sysbios_heaps_HeapMem_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr ti_sysbios_heaps_HeapMem_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&ti_sysbios_heaps_HeapMem_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_heaps_HeapMem_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_heaps_HeapMem___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - ti_sysbios_heaps_HeapMem_Params __prms; - ti_sysbios_heaps_HeapMem_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_heaps_HeapMem_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_heaps_HeapMem_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - ti_sysbios_heaps_HeapMem_Instance_init__E(__newobj, &__prms); - return __newobj; -} - -/* create */ -ti_sysbios_heaps_HeapMem_Handle ti_sysbios_heaps_HeapMem_create( const ti_sysbios_heaps_HeapMem_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_heaps_HeapMem_Params __prms; - ti_sysbios_heaps_HeapMem_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_heaps_HeapMem_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_heaps_HeapMem_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - ti_sysbios_heaps_HeapMem_Instance_init__E(__newobj, &__prms); - return __newobj; -} - -/* construct */ -void ti_sysbios_heaps_HeapMem_construct(ti_sysbios_heaps_HeapMem_Struct *__obj, const ti_sysbios_heaps_HeapMem_Params *__paramsPtr ) -{ - ti_sysbios_heaps_HeapMem_Params __prms; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&ti_sysbios_heaps_HeapMem_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_heaps_HeapMem_Params), NULL); - /* module-specific initialization */ - ti_sysbios_heaps_HeapMem_Instance_init__E((xdc_Ptr)__obj, &__prms); -} - -/* Object__destruct__S */ -xdc_Void ti_sysbios_heaps_HeapMem_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_heaps_HeapMem_Object__DESC__C, obj, NULL, -1, TRUE); -} - -/* destruct */ -void ti_sysbios_heaps_HeapMem_destruct(ti_sysbios_heaps_HeapMem_Struct *obj) -{ - ti_sysbios_heaps_HeapMem_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void ti_sysbios_heaps_HeapMem_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_heaps_HeapMem_Object__DESC__C, *((ti_sysbios_heaps_HeapMem_Object**)instp), NULL, -1, FALSE); - *((ti_sysbios_heaps_HeapMem_Handle*)instp) = NULL; -} - -/* delete */ -void ti_sysbios_heaps_HeapMem_delete(ti_sysbios_heaps_HeapMem_Handle *instp) -{ - ti_sysbios_heaps_HeapMem_Object__delete__S(instp); -} - - -/* - * ======== ti.sysbios.heaps.HeapMem_Module_GateProxy SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_heaps_HeapMem_Module_GateProxy_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_heaps_HeapMem_Module_GateProxy_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_heaps_HeapMem_Module_GateProxy_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_heaps_HeapMem_Module_GateProxy_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_heaps_HeapMem_Module_GateProxy_Module_GateProxy_query - -xdc_Bool ti_sysbios_heaps_HeapMem_Module_GateProxy_Proxy__abstract__S( void ) -{ - return 0; -} -xdc_Ptr ti_sysbios_heaps_HeapMem_Module_GateProxy_Proxy__delegate__S( void ) -{ - return (xdc_Ptr)&ti_sysbios_gates_GateMutex_Module__FXNS__C; -} - - - -/* - * ======== ti.sysbios.io.DEV SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_io_DEV_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_io_DEV_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_io_DEV_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_io_DEV_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_io_DEV_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_io_DEV_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_io_DEV_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_io_DEV_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_io_DEV_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_io_DEV_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_io_DEV_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_io_DEV_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_io_DEV_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_io_DEV_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_io_DEV_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_io_DEV_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_io_DEV_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_io_DEV_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_io_DEV_Module__startupDone__S( void ) -{ - return ti_sysbios_io_DEV_Module__startupDone__F(); -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_io_DEV_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32824; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void ti_sysbios_io_DEV_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &ti_sysbios_io_DEV_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr ti_sysbios_io_DEV_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((ti_sysbios_io_DEV_Object__ *)oa) + i; - } - - if (ti_sysbios_io_DEV_Object__count__C == 0) { - return NULL; - } - - return ((ti_sysbios_io_DEV_Object__ *)ti_sysbios_io_DEV_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr ti_sysbios_io_DEV_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)ti_sysbios_io_DEV_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&ti_sysbios_io_DEV_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr ti_sysbios_io_DEV_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&ti_sysbios_io_DEV_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_io_DEV_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_io_DEV___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - ti_sysbios_io_DEV_Args__create *__args = __aa; - ti_sysbios_io_DEV_Params __prms; - ti_sysbios_io_DEV_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_io_DEV_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_io_DEV_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = ti_sysbios_io_DEV_Instance_init__E(__newobj, __args->name, __args->fxns, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_io_DEV_Object__DESC__C, __newobj, (xdc_Fxn)ti_sysbios_io_DEV_Instance_finalize__E, iStat, (xdc_Bool)(__obj != NULL)); - return NULL; - } - - return __newobj; -} - -/* create */ -ti_sysbios_io_DEV_Handle ti_sysbios_io_DEV_create( xdc_String name, xdc_Ptr fxns, const ti_sysbios_io_DEV_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_io_DEV_Params __prms; - ti_sysbios_io_DEV_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_io_DEV_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_io_DEV_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = ti_sysbios_io_DEV_Instance_init__E(__newobj, name, fxns, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_io_DEV_Object__DESC__C, __newobj, (xdc_Fxn)ti_sysbios_io_DEV_Instance_finalize__E, iStat, 0); - return NULL; - } - - return __newobj; -} - -/* construct */ -void ti_sysbios_io_DEV_construct(ti_sysbios_io_DEV_Struct *__obj, xdc_String name, xdc_Ptr fxns, const ti_sysbios_io_DEV_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_io_DEV_Params __prms; - int iStat; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&ti_sysbios_io_DEV_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_io_DEV_Params), __eb); - /* module-specific initialization */ - iStat = ti_sysbios_io_DEV_Instance_init__E((xdc_Ptr)__obj, name, fxns, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_io_DEV_Object__DESC__C, (xdc_Ptr)__obj, (xdc_Fxn)ti_sysbios_io_DEV_Instance_finalize__E, iStat, 1); - } - -} - -/* Object__destruct__S */ -xdc_Void ti_sysbios_io_DEV_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_io_DEV_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_io_DEV_Instance_finalize__E, 0, TRUE); -} - -/* destruct */ -void ti_sysbios_io_DEV_destruct(ti_sysbios_io_DEV_Struct *obj) -{ - ti_sysbios_io_DEV_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void ti_sysbios_io_DEV_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_io_DEV_Object__DESC__C, *((ti_sysbios_io_DEV_Object**)instp), (xdc_Fxn)ti_sysbios_io_DEV_Instance_finalize__E, 0, FALSE); - *((ti_sysbios_io_DEV_Handle*)instp) = NULL; -} - -/* delete */ -void ti_sysbios_io_DEV_delete(ti_sysbios_io_DEV_Handle *instp) -{ - ti_sysbios_io_DEV_Object__delete__S(instp); -} - - -/* - * ======== ti.sysbios.io.GIO SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_io_GIO_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_io_GIO_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_io_GIO_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_io_GIO_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_io_GIO_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_io_GIO_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_io_GIO_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_io_GIO_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_io_GIO_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_io_GIO_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_io_GIO_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_io_GIO_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_io_GIO_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_io_GIO_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_io_GIO_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_io_GIO_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_io_GIO_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_io_GIO_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_io_GIO_Module__startupDone__S( void ) -{ - return 1; -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_io_GIO_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32825; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void ti_sysbios_io_GIO_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &ti_sysbios_io_GIO_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr ti_sysbios_io_GIO_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((ti_sysbios_io_GIO_Object__ *)oa) + i; - } - - if (ti_sysbios_io_GIO_Object__count__C == 0) { - return NULL; - } - - return ((ti_sysbios_io_GIO_Object__ *)ti_sysbios_io_GIO_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr ti_sysbios_io_GIO_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)ti_sysbios_io_GIO_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&ti_sysbios_io_GIO_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr ti_sysbios_io_GIO_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&ti_sysbios_io_GIO_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_io_GIO_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_io_GIO___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - ti_sysbios_io_GIO_Args__create *__args = __aa; - ti_sysbios_io_GIO_Params __prms; - ti_sysbios_io_GIO_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_io_GIO_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_io_GIO_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = ti_sysbios_io_GIO_Instance_init__E(__newobj, __args->name, __args->mode, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_io_GIO_Object__DESC__C, __newobj, (xdc_Fxn)ti_sysbios_io_GIO_Instance_finalize__E, iStat, (xdc_Bool)(__obj != NULL)); - return NULL; - } - - return __newobj; -} - -/* create */ -ti_sysbios_io_GIO_Handle ti_sysbios_io_GIO_create( xdc_String name, xdc_UInt mode, const ti_sysbios_io_GIO_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_io_GIO_Params __prms; - ti_sysbios_io_GIO_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_io_GIO_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_io_GIO_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = ti_sysbios_io_GIO_Instance_init__E(__newobj, name, mode, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_io_GIO_Object__DESC__C, __newobj, (xdc_Fxn)ti_sysbios_io_GIO_Instance_finalize__E, iStat, 0); - return NULL; - } - - return __newobj; -} - -/* construct */ -void ti_sysbios_io_GIO_construct(ti_sysbios_io_GIO_Struct *__obj, xdc_String name, xdc_UInt mode, const ti_sysbios_io_GIO_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_io_GIO_Params __prms; - int iStat; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&ti_sysbios_io_GIO_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_io_GIO_Params), __eb); - /* module-specific initialization */ - iStat = ti_sysbios_io_GIO_Instance_init__E((xdc_Ptr)__obj, name, mode, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_io_GIO_Object__DESC__C, (xdc_Ptr)__obj, (xdc_Fxn)ti_sysbios_io_GIO_Instance_finalize__E, iStat, 1); - } - -} - -/* Object__destruct__S */ -xdc_Void ti_sysbios_io_GIO_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_io_GIO_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_io_GIO_Instance_finalize__E, 0, TRUE); -} - -/* destruct */ -void ti_sysbios_io_GIO_destruct(ti_sysbios_io_GIO_Struct *obj) -{ - ti_sysbios_io_GIO_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void ti_sysbios_io_GIO_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_io_GIO_Object__DESC__C, *((ti_sysbios_io_GIO_Object**)instp), (xdc_Fxn)ti_sysbios_io_GIO_Instance_finalize__E, 0, FALSE); - *((ti_sysbios_io_GIO_Handle*)instp) = NULL; -} - -/* delete */ -void ti_sysbios_io_GIO_delete(ti_sysbios_io_GIO_Handle *instp) -{ - ti_sysbios_io_GIO_Object__delete__S(instp); -} - - -/* - * ======== ti.sysbios.knl.Clock SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_knl_Clock_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_knl_Clock_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_knl_Clock_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_knl_Clock_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_knl_Clock_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_knl_Clock_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_knl_Clock_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_knl_Clock_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_knl_Clock_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_knl_Clock_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_knl_Clock_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_knl_Clock_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_knl_Clock_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_knl_Clock_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_knl_Clock_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_knl_Clock_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_knl_Clock_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_knl_Clock_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_knl_Clock_Module__startupDone__S( void ) -{ - return ti_sysbios_knl_Clock_Module__startupDone__F(); -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_knl_Clock_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32801; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void ti_sysbios_knl_Clock_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &ti_sysbios_knl_Clock_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr ti_sysbios_knl_Clock_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((ti_sysbios_knl_Clock_Object__ *)oa) + i; - } - - if (ti_sysbios_knl_Clock_Object__count__C == 0) { - return NULL; - } - - return ((ti_sysbios_knl_Clock_Object__ *)ti_sysbios_knl_Clock_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr ti_sysbios_knl_Clock_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)ti_sysbios_knl_Clock_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&ti_sysbios_knl_Clock_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr ti_sysbios_knl_Clock_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&ti_sysbios_knl_Clock_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_knl_Clock_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_knl_Clock___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - ti_sysbios_knl_Clock_Args__create *__args = __aa; - ti_sysbios_knl_Clock_Params __prms; - ti_sysbios_knl_Clock_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_knl_Clock_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Clock_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - ti_sysbios_knl_Clock_Instance_init__E(__newobj, __args->clockFxn, __args->timeout, &__prms); - return __newobj; -} - -/* create */ -ti_sysbios_knl_Clock_Handle ti_sysbios_knl_Clock_create( ti_sysbios_knl_Clock_FuncPtr clockFxn, xdc_UInt timeout, const ti_sysbios_knl_Clock_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_knl_Clock_Params __prms; - ti_sysbios_knl_Clock_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_knl_Clock_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Clock_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - ti_sysbios_knl_Clock_Instance_init__E(__newobj, clockFxn, timeout, &__prms); - return __newobj; -} - -/* construct */ -void ti_sysbios_knl_Clock_construct(ti_sysbios_knl_Clock_Struct *__obj, ti_sysbios_knl_Clock_FuncPtr clockFxn, xdc_UInt timeout, const ti_sysbios_knl_Clock_Params *__paramsPtr ) -{ - ti_sysbios_knl_Clock_Params __prms; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&ti_sysbios_knl_Clock_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Clock_Params), NULL); - /* module-specific initialization */ - ti_sysbios_knl_Clock_Instance_init__E((xdc_Ptr)__obj, clockFxn, timeout, &__prms); -} - -/* Object__destruct__S */ -xdc_Void ti_sysbios_knl_Clock_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Clock_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_knl_Clock_Instance_finalize__E, -1, TRUE); -} - -/* destruct */ -void ti_sysbios_knl_Clock_destruct(ti_sysbios_knl_Clock_Struct *obj) -{ - ti_sysbios_knl_Clock_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void ti_sysbios_knl_Clock_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Clock_Object__DESC__C, *((ti_sysbios_knl_Clock_Object**)instp), (xdc_Fxn)ti_sysbios_knl_Clock_Instance_finalize__E, -1, FALSE); - *((ti_sysbios_knl_Clock_Handle*)instp) = NULL; -} - -/* delete */ -void ti_sysbios_knl_Clock_delete(ti_sysbios_knl_Clock_Handle *instp) -{ - ti_sysbios_knl_Clock_Object__delete__S(instp); -} - - -/* - * ======== ti.sysbios.knl.Clock_TimerProxy SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_knl_Clock_TimerProxy_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_knl_Clock_TimerProxy_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_knl_Clock_TimerProxy_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_knl_Clock_TimerProxy_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_knl_Clock_TimerProxy_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_knl_Clock_TimerProxy_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_knl_Clock_TimerProxy_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_knl_Clock_TimerProxy_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_knl_Clock_TimerProxy_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_knl_Clock_TimerProxy_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_knl_Clock_TimerProxy_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_knl_Clock_TimerProxy_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_knl_Clock_TimerProxy_Module_GateProxy_query - -xdc_Bool ti_sysbios_knl_Clock_TimerProxy_Proxy__abstract__S( void ) -{ - return 0; -} -xdc_Ptr ti_sysbios_knl_Clock_TimerProxy_Proxy__delegate__S( void ) -{ - return 0; -} - - - -/* - * ======== ti.sysbios.knl.Event SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_knl_Event_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_knl_Event_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_knl_Event_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_knl_Event_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_knl_Event_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_knl_Event_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_knl_Event_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_knl_Event_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_knl_Event_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_knl_Event_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_knl_Event_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_knl_Event_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_knl_Event_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_knl_Event_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_knl_Event_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_knl_Event_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_knl_Event_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_knl_Event_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_knl_Event_Module__startupDone__S( void ) -{ - return 1; -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_knl_Event_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32804; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void ti_sysbios_knl_Event_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &ti_sysbios_knl_Event_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr ti_sysbios_knl_Event_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((ti_sysbios_knl_Event_Object__ *)oa) + i; - } - - if (ti_sysbios_knl_Event_Object__count__C == 0) { - return NULL; - } - - return ((ti_sysbios_knl_Event_Object__ *)ti_sysbios_knl_Event_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr ti_sysbios_knl_Event_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)ti_sysbios_knl_Event_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&ti_sysbios_knl_Event_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr ti_sysbios_knl_Event_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&ti_sysbios_knl_Event_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_knl_Event_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_knl_Event___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - ti_sysbios_knl_Event_Params __prms; - ti_sysbios_knl_Event_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_knl_Event_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Event_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - ti_sysbios_knl_Event_Instance_init__E(__newobj, &__prms); - return __newobj; -} - -/* create */ -ti_sysbios_knl_Event_Handle ti_sysbios_knl_Event_create( const ti_sysbios_knl_Event_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_knl_Event_Params __prms; - ti_sysbios_knl_Event_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_knl_Event_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Event_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - ti_sysbios_knl_Event_Instance_init__E(__newobj, &__prms); - return __newobj; -} - -/* construct */ -void ti_sysbios_knl_Event_construct(ti_sysbios_knl_Event_Struct *__obj, const ti_sysbios_knl_Event_Params *__paramsPtr ) -{ - ti_sysbios_knl_Event_Params __prms; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&ti_sysbios_knl_Event_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Event_Params), NULL); - /* module-specific initialization */ - ti_sysbios_knl_Event_Instance_init__E((xdc_Ptr)__obj, &__prms); -} - -/* Object__destruct__S */ -xdc_Void ti_sysbios_knl_Event_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Event_Object__DESC__C, obj, NULL, -1, TRUE); -} - -/* destruct */ -void ti_sysbios_knl_Event_destruct(ti_sysbios_knl_Event_Struct *obj) -{ - ti_sysbios_knl_Event_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void ti_sysbios_knl_Event_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Event_Object__DESC__C, *((ti_sysbios_knl_Event_Object**)instp), NULL, -1, FALSE); - *((ti_sysbios_knl_Event_Handle*)instp) = NULL; -} - -/* delete */ -void ti_sysbios_knl_Event_delete(ti_sysbios_knl_Event_Handle *instp) -{ - ti_sysbios_knl_Event_Object__delete__S(instp); -} - - -/* - * ======== ti.sysbios.knl.Idle SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_knl_Idle_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== ti.sysbios.knl.Intrinsics SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_knl_Intrinsics_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== ti.sysbios.knl.Intrinsics_SupportProxy SYSTEM FUNCTIONS ======== - */ - - -xdc_Bool ti_sysbios_knl_Intrinsics_SupportProxy_Proxy__abstract__S( void ) -{ - return 0; -} -xdc_Ptr ti_sysbios_knl_Intrinsics_SupportProxy_Proxy__delegate__S( void ) -{ - return (xdc_Ptr)&ti_sysbios_family_arm_m3_IntrinsicsSupport_Module__FXNS__C; -} - - -/* - * ======== ti.sysbios.knl.Mailbox SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_knl_Mailbox_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_knl_Mailbox_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_knl_Mailbox_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_knl_Mailbox_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_knl_Mailbox_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_knl_Mailbox_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_knl_Mailbox_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_knl_Mailbox_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_knl_Mailbox_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_knl_Mailbox_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_knl_Mailbox_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_knl_Mailbox_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_knl_Mailbox_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_knl_Mailbox_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_knl_Mailbox_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_knl_Mailbox_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_knl_Mailbox_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_knl_Mailbox_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_knl_Mailbox_Module__startupDone__S( void ) -{ - return ti_sysbios_knl_Mailbox_Module__startupDone__F(); -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_knl_Mailbox_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32805; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void ti_sysbios_knl_Mailbox_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &ti_sysbios_knl_Mailbox_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr ti_sysbios_knl_Mailbox_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((ti_sysbios_knl_Mailbox_Object__ *)oa) + i; - } - - if (ti_sysbios_knl_Mailbox_Object__count__C == 0) { - return NULL; - } - - return ((ti_sysbios_knl_Mailbox_Object__ *)ti_sysbios_knl_Mailbox_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr ti_sysbios_knl_Mailbox_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)ti_sysbios_knl_Mailbox_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&ti_sysbios_knl_Mailbox_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr ti_sysbios_knl_Mailbox_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&ti_sysbios_knl_Mailbox_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_knl_Mailbox_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_knl_Mailbox___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - ti_sysbios_knl_Mailbox_Args__create *__args = __aa; - ti_sysbios_knl_Mailbox_Params __prms; - ti_sysbios_knl_Mailbox_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_knl_Mailbox_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Mailbox_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = ti_sysbios_knl_Mailbox_Instance_init__E(__newobj, __args->msgSize, __args->numMsgs, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Mailbox_Object__DESC__C, __newobj, (xdc_Fxn)ti_sysbios_knl_Mailbox_Instance_finalize__E, iStat, (xdc_Bool)(__obj != NULL)); - return NULL; - } - - return __newobj; -} - -/* create */ -ti_sysbios_knl_Mailbox_Handle ti_sysbios_knl_Mailbox_create( xdc_SizeT msgSize, xdc_UInt numMsgs, const ti_sysbios_knl_Mailbox_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_knl_Mailbox_Params __prms; - ti_sysbios_knl_Mailbox_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_knl_Mailbox_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Mailbox_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = ti_sysbios_knl_Mailbox_Instance_init__E(__newobj, msgSize, numMsgs, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Mailbox_Object__DESC__C, __newobj, (xdc_Fxn)ti_sysbios_knl_Mailbox_Instance_finalize__E, iStat, 0); - return NULL; - } - - return __newobj; -} - -/* construct */ -void ti_sysbios_knl_Mailbox_construct(ti_sysbios_knl_Mailbox_Struct *__obj, xdc_SizeT msgSize, xdc_UInt numMsgs, const ti_sysbios_knl_Mailbox_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_knl_Mailbox_Params __prms; - int iStat; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&ti_sysbios_knl_Mailbox_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Mailbox_Params), __eb); - /* module-specific initialization */ - iStat = ti_sysbios_knl_Mailbox_Instance_init__E((xdc_Ptr)__obj, msgSize, numMsgs, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Mailbox_Object__DESC__C, (xdc_Ptr)__obj, (xdc_Fxn)ti_sysbios_knl_Mailbox_Instance_finalize__E, iStat, 1); - } - -} - -/* Object__destruct__S */ -xdc_Void ti_sysbios_knl_Mailbox_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Mailbox_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_knl_Mailbox_Instance_finalize__E, 0, TRUE); -} - -/* destruct */ -void ti_sysbios_knl_Mailbox_destruct(ti_sysbios_knl_Mailbox_Struct *obj) -{ - ti_sysbios_knl_Mailbox_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void ti_sysbios_knl_Mailbox_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Mailbox_Object__DESC__C, *((ti_sysbios_knl_Mailbox_Object**)instp), (xdc_Fxn)ti_sysbios_knl_Mailbox_Instance_finalize__E, 0, FALSE); - *((ti_sysbios_knl_Mailbox_Handle*)instp) = NULL; -} - -/* delete */ -void ti_sysbios_knl_Mailbox_delete(ti_sysbios_knl_Mailbox_Handle *instp) -{ - ti_sysbios_knl_Mailbox_Object__delete__S(instp); -} - - -/* - * ======== ti.sysbios.knl.Queue SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_knl_Queue_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_knl_Queue_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_knl_Queue_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_knl_Queue_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_knl_Queue_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_knl_Queue_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_knl_Queue_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_knl_Queue_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_knl_Queue_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_knl_Queue_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_knl_Queue_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_knl_Queue_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_knl_Queue_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_knl_Queue_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_knl_Queue_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_knl_Queue_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_knl_Queue_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_knl_Queue_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_knl_Queue_Module__startupDone__S( void ) -{ - return 1; -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_knl_Queue_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32806; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void ti_sysbios_knl_Queue_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &ti_sysbios_knl_Queue_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr ti_sysbios_knl_Queue_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((ti_sysbios_knl_Queue_Object__ *)oa) + i; - } - - if (ti_sysbios_knl_Queue_Object__count__C == 0) { - return NULL; - } - - return ((ti_sysbios_knl_Queue_Object__ *)ti_sysbios_knl_Queue_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr ti_sysbios_knl_Queue_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)ti_sysbios_knl_Queue_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&ti_sysbios_knl_Queue_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr ti_sysbios_knl_Queue_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&ti_sysbios_knl_Queue_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_knl_Queue_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_knl_Queue___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - ti_sysbios_knl_Queue_Params __prms; - ti_sysbios_knl_Queue_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_knl_Queue_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Queue_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - ti_sysbios_knl_Queue_Instance_init__E(__newobj, &__prms); - return __newobj; -} - -/* create */ -ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Queue_create( const ti_sysbios_knl_Queue_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_knl_Queue_Params __prms; - ti_sysbios_knl_Queue_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_knl_Queue_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Queue_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - ti_sysbios_knl_Queue_Instance_init__E(__newobj, &__prms); - return __newobj; -} - -/* construct */ -void ti_sysbios_knl_Queue_construct(ti_sysbios_knl_Queue_Struct *__obj, const ti_sysbios_knl_Queue_Params *__paramsPtr ) -{ - ti_sysbios_knl_Queue_Params __prms; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&ti_sysbios_knl_Queue_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Queue_Params), NULL); - /* module-specific initialization */ - ti_sysbios_knl_Queue_Instance_init__E((xdc_Ptr)__obj, &__prms); -} - -/* Object__destruct__S */ -xdc_Void ti_sysbios_knl_Queue_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Queue_Object__DESC__C, obj, NULL, -1, TRUE); -} - -/* destruct */ -void ti_sysbios_knl_Queue_destruct(ti_sysbios_knl_Queue_Struct *obj) -{ - ti_sysbios_knl_Queue_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void ti_sysbios_knl_Queue_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Queue_Object__DESC__C, *((ti_sysbios_knl_Queue_Object**)instp), NULL, -1, FALSE); - *((ti_sysbios_knl_Queue_Handle*)instp) = NULL; -} - -/* delete */ -void ti_sysbios_knl_Queue_delete(ti_sysbios_knl_Queue_Handle *instp) -{ - ti_sysbios_knl_Queue_Object__delete__S(instp); -} - - -/* - * ======== ti.sysbios.knl.Semaphore SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_knl_Semaphore_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_knl_Semaphore_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_knl_Semaphore_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_knl_Semaphore_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_knl_Semaphore_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_knl_Semaphore_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_knl_Semaphore_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_knl_Semaphore_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_knl_Semaphore_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_knl_Semaphore_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_knl_Semaphore_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_knl_Semaphore_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_knl_Semaphore_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_knl_Semaphore_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_knl_Semaphore_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_knl_Semaphore_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_knl_Semaphore_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_knl_Semaphore_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_knl_Semaphore_Module__startupDone__S( void ) -{ - return 1; -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_knl_Semaphore_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32807; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void ti_sysbios_knl_Semaphore_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &ti_sysbios_knl_Semaphore_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr ti_sysbios_knl_Semaphore_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((ti_sysbios_knl_Semaphore_Object__ *)oa) + i; - } - - if (ti_sysbios_knl_Semaphore_Object__count__C == 0) { - return NULL; - } - - return ((ti_sysbios_knl_Semaphore_Object__ *)ti_sysbios_knl_Semaphore_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr ti_sysbios_knl_Semaphore_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)ti_sysbios_knl_Semaphore_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&ti_sysbios_knl_Semaphore_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr ti_sysbios_knl_Semaphore_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&ti_sysbios_knl_Semaphore_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_knl_Semaphore_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_knl_Semaphore___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - ti_sysbios_knl_Semaphore_Args__create *__args = __aa; - ti_sysbios_knl_Semaphore_Params __prms; - ti_sysbios_knl_Semaphore_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_knl_Semaphore_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Semaphore_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - ti_sysbios_knl_Semaphore_Instance_init__E(__newobj, __args->count, &__prms); - return __newobj; -} - -/* create */ -ti_sysbios_knl_Semaphore_Handle ti_sysbios_knl_Semaphore_create( xdc_Int count, const ti_sysbios_knl_Semaphore_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_knl_Semaphore_Params __prms; - ti_sysbios_knl_Semaphore_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_knl_Semaphore_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Semaphore_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - ti_sysbios_knl_Semaphore_Instance_init__E(__newobj, count, &__prms); - return __newobj; -} - -/* construct */ -void ti_sysbios_knl_Semaphore_construct(ti_sysbios_knl_Semaphore_Struct *__obj, xdc_Int count, const ti_sysbios_knl_Semaphore_Params *__paramsPtr ) -{ - ti_sysbios_knl_Semaphore_Params __prms; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&ti_sysbios_knl_Semaphore_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Semaphore_Params), NULL); - /* module-specific initialization */ - ti_sysbios_knl_Semaphore_Instance_init__E((xdc_Ptr)__obj, count, &__prms); -} - -/* Object__destruct__S */ -xdc_Void ti_sysbios_knl_Semaphore_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Semaphore_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_knl_Semaphore_Instance_finalize__E, -1, TRUE); -} - -/* destruct */ -void ti_sysbios_knl_Semaphore_destruct(ti_sysbios_knl_Semaphore_Struct *obj) -{ - ti_sysbios_knl_Semaphore_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void ti_sysbios_knl_Semaphore_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Semaphore_Object__DESC__C, *((ti_sysbios_knl_Semaphore_Object**)instp), (xdc_Fxn)ti_sysbios_knl_Semaphore_Instance_finalize__E, -1, FALSE); - *((ti_sysbios_knl_Semaphore_Handle*)instp) = NULL; -} - -/* delete */ -void ti_sysbios_knl_Semaphore_delete(ti_sysbios_knl_Semaphore_Handle *instp) -{ - ti_sysbios_knl_Semaphore_Object__delete__S(instp); -} - - -/* - * ======== ti.sysbios.knl.Swi SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_knl_Swi_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_knl_Swi_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_knl_Swi_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_knl_Swi_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_knl_Swi_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_knl_Swi_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_knl_Swi_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_knl_Swi_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_knl_Swi_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_knl_Swi_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_knl_Swi_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_knl_Swi_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_knl_Swi_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_knl_Swi_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_knl_Swi_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_knl_Swi_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_knl_Swi_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_knl_Swi_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_knl_Swi_Module__startupDone__S( void ) -{ - return ti_sysbios_knl_Swi_Module__startupDone__F(); -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_knl_Swi_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32808; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void ti_sysbios_knl_Swi_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &ti_sysbios_knl_Swi_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr ti_sysbios_knl_Swi_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((ti_sysbios_knl_Swi_Object__ *)oa) + i; - } - - if (ti_sysbios_knl_Swi_Object__count__C == 0) { - return NULL; - } - - return ((ti_sysbios_knl_Swi_Object__ *)ti_sysbios_knl_Swi_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr ti_sysbios_knl_Swi_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)ti_sysbios_knl_Swi_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&ti_sysbios_knl_Swi_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr ti_sysbios_knl_Swi_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&ti_sysbios_knl_Swi_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_knl_Swi_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_knl_Swi___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - ti_sysbios_knl_Swi_Args__create *__args = __aa; - ti_sysbios_knl_Swi_Params __prms; - ti_sysbios_knl_Swi_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_knl_Swi_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Swi_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = ti_sysbios_knl_Swi_Instance_init__E(__newobj, __args->swiFxn, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Swi_Object__DESC__C, __newobj, (xdc_Fxn)ti_sysbios_knl_Swi_Instance_finalize__E, iStat, (xdc_Bool)(__obj != NULL)); - return NULL; - } - - return __newobj; -} - -/* create */ -ti_sysbios_knl_Swi_Handle ti_sysbios_knl_Swi_create( ti_sysbios_knl_Swi_FuncPtr swiFxn, const ti_sysbios_knl_Swi_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_knl_Swi_Params __prms; - ti_sysbios_knl_Swi_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_knl_Swi_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Swi_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = ti_sysbios_knl_Swi_Instance_init__E(__newobj, swiFxn, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Swi_Object__DESC__C, __newobj, (xdc_Fxn)ti_sysbios_knl_Swi_Instance_finalize__E, iStat, 0); - return NULL; - } - - return __newobj; -} - -/* construct */ -void ti_sysbios_knl_Swi_construct(ti_sysbios_knl_Swi_Struct *__obj, ti_sysbios_knl_Swi_FuncPtr swiFxn, const ti_sysbios_knl_Swi_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_knl_Swi_Params __prms; - int iStat; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&ti_sysbios_knl_Swi_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Swi_Params), __eb); - /* module-specific initialization */ - iStat = ti_sysbios_knl_Swi_Instance_init__E((xdc_Ptr)__obj, swiFxn, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Swi_Object__DESC__C, (xdc_Ptr)__obj, (xdc_Fxn)ti_sysbios_knl_Swi_Instance_finalize__E, iStat, 1); - } - -} - -/* Object__destruct__S */ -xdc_Void ti_sysbios_knl_Swi_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Swi_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_knl_Swi_Instance_finalize__E, 0, TRUE); -} - -/* destruct */ -void ti_sysbios_knl_Swi_destruct(ti_sysbios_knl_Swi_Struct *obj) -{ - ti_sysbios_knl_Swi_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void ti_sysbios_knl_Swi_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Swi_Object__DESC__C, *((ti_sysbios_knl_Swi_Object**)instp), (xdc_Fxn)ti_sysbios_knl_Swi_Instance_finalize__E, 0, FALSE); - *((ti_sysbios_knl_Swi_Handle*)instp) = NULL; -} - -/* delete */ -void ti_sysbios_knl_Swi_delete(ti_sysbios_knl_Swi_Handle *instp) -{ - ti_sysbios_knl_Swi_Object__delete__S(instp); -} - - -/* - * ======== ti.sysbios.knl.Task SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_knl_Task_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_knl_Task_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_knl_Task_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_knl_Task_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_knl_Task_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_knl_Task_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_knl_Task_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_knl_Task_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_knl_Task_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_knl_Task_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_knl_Task_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_knl_Task_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_knl_Task_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_knl_Task_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_knl_Task_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_knl_Task_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_knl_Task_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_knl_Task_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_knl_Task_Module__startupDone__S( void ) -{ - return ti_sysbios_knl_Task_Module__startupDone__F(); -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_knl_Task_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32809; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void ti_sysbios_knl_Task_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &ti_sysbios_knl_Task_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr ti_sysbios_knl_Task_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((ti_sysbios_knl_Task_Object__ *)oa) + i; - } - - if (ti_sysbios_knl_Task_Object__count__C == 0) { - return NULL; - } - - return ((ti_sysbios_knl_Task_Object__ *)ti_sysbios_knl_Task_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr ti_sysbios_knl_Task_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)ti_sysbios_knl_Task_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&ti_sysbios_knl_Task_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr ti_sysbios_knl_Task_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&ti_sysbios_knl_Task_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_knl_Task_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_knl_Task___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - ti_sysbios_knl_Task_Args__create *__args = __aa; - ti_sysbios_knl_Task_Params __prms; - ti_sysbios_knl_Task_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_knl_Task_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Task_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = ti_sysbios_knl_Task_Instance_init__E(__newobj, __args->fxn, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Task_Object__DESC__C, __newobj, (xdc_Fxn)ti_sysbios_knl_Task_Instance_finalize__E, iStat, (xdc_Bool)(__obj != NULL)); - return NULL; - } - - return __newobj; -} - -/* create */ -ti_sysbios_knl_Task_Handle ti_sysbios_knl_Task_create( ti_sysbios_knl_Task_FuncPtr fxn, const ti_sysbios_knl_Task_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_knl_Task_Params __prms; - ti_sysbios_knl_Task_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_knl_Task_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Task_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = ti_sysbios_knl_Task_Instance_init__E(__newobj, fxn, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Task_Object__DESC__C, __newobj, (xdc_Fxn)ti_sysbios_knl_Task_Instance_finalize__E, iStat, 0); - return NULL; - } - - return __newobj; -} - -/* construct */ -void ti_sysbios_knl_Task_construct(ti_sysbios_knl_Task_Struct *__obj, ti_sysbios_knl_Task_FuncPtr fxn, const ti_sysbios_knl_Task_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_knl_Task_Params __prms; - int iStat; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&ti_sysbios_knl_Task_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_knl_Task_Params), __eb); - /* module-specific initialization */ - iStat = ti_sysbios_knl_Task_Instance_init__E((xdc_Ptr)__obj, fxn, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Task_Object__DESC__C, (xdc_Ptr)__obj, (xdc_Fxn)ti_sysbios_knl_Task_Instance_finalize__E, iStat, 1); - } - -} - -/* Object__destruct__S */ -xdc_Void ti_sysbios_knl_Task_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Task_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_knl_Task_Instance_finalize__E, 0, TRUE); -} - -/* destruct */ -void ti_sysbios_knl_Task_destruct(ti_sysbios_knl_Task_Struct *obj) -{ - ti_sysbios_knl_Task_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void ti_sysbios_knl_Task_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_knl_Task_Object__DESC__C, *((ti_sysbios_knl_Task_Object**)instp), (xdc_Fxn)ti_sysbios_knl_Task_Instance_finalize__E, 0, FALSE); - *((ti_sysbios_knl_Task_Handle*)instp) = NULL; -} - -/* delete */ -void ti_sysbios_knl_Task_delete(ti_sysbios_knl_Task_Handle *instp) -{ - ti_sysbios_knl_Task_Object__delete__S(instp); -} - - -/* - * ======== ti.sysbios.knl.Task_SupportProxy SYSTEM FUNCTIONS ======== - */ - - -xdc_Bool ti_sysbios_knl_Task_SupportProxy_Proxy__abstract__S( void ) -{ - return 0; -} -xdc_Ptr ti_sysbios_knl_Task_SupportProxy_Proxy__delegate__S( void ) -{ - return 0; -} - - -/* - * ======== ti.sysbios.xdcruntime.SemThreadSupport SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID ti_sysbios_xdcruntime_SemThreadSupport_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL ti_sysbios_xdcruntime_SemThreadSupport_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB ti_sysbios_xdcruntime_SemThreadSupport_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK ti_sysbios_xdcruntime_SemThreadSupport_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 ti_sysbios_xdcruntime_SemThreadSupport_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ ti_sysbios_xdcruntime_SemThreadSupport_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS ti_sysbios_xdcruntime_SemThreadSupport_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create ti_sysbios_xdcruntime_SemThreadSupport_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete ti_sysbios_xdcruntime_SemThreadSupport_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter ti_sysbios_xdcruntime_SemThreadSupport_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave ti_sysbios_xdcruntime_SemThreadSupport_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query ti_sysbios_xdcruntime_SemThreadSupport_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool ti_sysbios_xdcruntime_SemThreadSupport_Module__startupDone__S( void ) -{ - return 1; -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *ti_sysbios_xdcruntime_SemThreadSupport_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32830; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void ti_sysbios_xdcruntime_SemThreadSupport_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &ti_sysbios_xdcruntime_SemThreadSupport_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr ti_sysbios_xdcruntime_SemThreadSupport_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((ti_sysbios_xdcruntime_SemThreadSupport_Object__ *)oa) + i; - } - - if (ti_sysbios_xdcruntime_SemThreadSupport_Object__count__C == 0) { - return NULL; - } - - return ((ti_sysbios_xdcruntime_SemThreadSupport_Object__ *)ti_sysbios_xdcruntime_SemThreadSupport_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr ti_sysbios_xdcruntime_SemThreadSupport_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)ti_sysbios_xdcruntime_SemThreadSupport_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&ti_sysbios_xdcruntime_SemThreadSupport_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr ti_sysbios_xdcruntime_SemThreadSupport_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&ti_sysbios_xdcruntime_SemThreadSupport_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr ti_sysbios_xdcruntime_SemThreadSupport_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const ti_sysbios_xdcruntime_SemThreadSupport___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - ti_sysbios_xdcruntime_SemThreadSupport_Args__create *__args = __aa; - ti_sysbios_xdcruntime_SemThreadSupport_Params __prms; - ti_sysbios_xdcruntime_SemThreadSupport_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_xdcruntime_SemThreadSupport_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_xdcruntime_SemThreadSupport_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - ti_sysbios_xdcruntime_SemThreadSupport_Instance_init__E(__newobj, __args->count, &__prms); - return __newobj; -} - -/* create */ -ti_sysbios_xdcruntime_SemThreadSupport_Handle ti_sysbios_xdcruntime_SemThreadSupport_create( xdc_Int count, const ti_sysbios_xdcruntime_SemThreadSupport_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - ti_sysbios_xdcruntime_SemThreadSupport_Params __prms; - ti_sysbios_xdcruntime_SemThreadSupport_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&ti_sysbios_xdcruntime_SemThreadSupport_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_xdcruntime_SemThreadSupport_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - ti_sysbios_xdcruntime_SemThreadSupport_Instance_init__E(__newobj, count, &__prms); - return __newobj; -} - -/* construct */ -void ti_sysbios_xdcruntime_SemThreadSupport_construct(ti_sysbios_xdcruntime_SemThreadSupport_Struct *__obj, xdc_Int count, const ti_sysbios_xdcruntime_SemThreadSupport_Params *__paramsPtr ) -{ - ti_sysbios_xdcruntime_SemThreadSupport_Params __prms; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&ti_sysbios_xdcruntime_SemThreadSupport_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(ti_sysbios_xdcruntime_SemThreadSupport_Params), NULL); - /* module-specific initialization */ - ti_sysbios_xdcruntime_SemThreadSupport_Instance_init__E((xdc_Ptr)__obj, count, &__prms); -} - -/* Object__destruct__S */ -xdc_Void ti_sysbios_xdcruntime_SemThreadSupport_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_xdcruntime_SemThreadSupport_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_xdcruntime_SemThreadSupport_Instance_finalize__E, -1, TRUE); -} - -/* destruct */ -void ti_sysbios_xdcruntime_SemThreadSupport_destruct(ti_sysbios_xdcruntime_SemThreadSupport_Struct *obj) -{ - ti_sysbios_xdcruntime_SemThreadSupport_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void ti_sysbios_xdcruntime_SemThreadSupport_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&ti_sysbios_xdcruntime_SemThreadSupport_Object__DESC__C, *((ti_sysbios_xdcruntime_SemThreadSupport_Object**)instp), (xdc_Fxn)ti_sysbios_xdcruntime_SemThreadSupport_Instance_finalize__E, -1, FALSE); - *((ti_sysbios_xdcruntime_SemThreadSupport_Handle*)instp) = NULL; -} - -/* delete */ -void ti_sysbios_xdcruntime_SemThreadSupport_delete(ti_sysbios_xdcruntime_SemThreadSupport_Handle *instp) -{ - ti_sysbios_xdcruntime_SemThreadSupport_Object__delete__S(instp); -} - - -/* - * ======== xdc.runtime.Assert SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_Assert_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== xdc.runtime.Core SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_Core_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== xdc.runtime.Defaults SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_Defaults_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== xdc.runtime.Diags SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_Diags_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== xdc.runtime.Error SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_Error_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== xdc.runtime.Gate SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_Gate_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== xdc.runtime.HeapStd SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID xdc_runtime_HeapStd_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL xdc_runtime_HeapStd_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB xdc_runtime_HeapStd_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK xdc_runtime_HeapStd_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF xdc_runtime_HeapStd_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ xdc_runtime_HeapStd_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 xdc_runtime_HeapStd_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 xdc_runtime_HeapStd_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 xdc_runtime_HeapStd_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 xdc_runtime_HeapStd_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 xdc_runtime_HeapStd_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ xdc_runtime_HeapStd_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS xdc_runtime_HeapStd_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create xdc_runtime_HeapStd_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete xdc_runtime_HeapStd_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter xdc_runtime_HeapStd_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave xdc_runtime_HeapStd_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query xdc_runtime_HeapStd_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_HeapStd_Module__startupDone__S( void ) -{ - return 1; -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *xdc_runtime_HeapStd_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32779; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void xdc_runtime_HeapStd_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &xdc_runtime_HeapStd_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr xdc_runtime_HeapStd_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((xdc_runtime_HeapStd_Object__ *)oa) + i; - } - - if (xdc_runtime_HeapStd_Object__count__C == 0) { - return NULL; - } - - return ((xdc_runtime_HeapStd_Object__ *)xdc_runtime_HeapStd_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr xdc_runtime_HeapStd_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)xdc_runtime_HeapStd_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&xdc_runtime_HeapStd_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr xdc_runtime_HeapStd_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&xdc_runtime_HeapStd_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr xdc_runtime_HeapStd_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const xdc_runtime_HeapStd___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - xdc_runtime_HeapStd_Params __prms; - xdc_runtime_HeapStd_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&xdc_runtime_HeapStd_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(xdc_runtime_HeapStd_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = xdc_runtime_HeapStd_Instance_init__E(__newobj, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&xdc_runtime_HeapStd_Object__DESC__C, __newobj, NULL, iStat, (xdc_Bool)(__obj != NULL)); - return NULL; - } - - return __newobj; -} - -/* create */ -xdc_runtime_HeapStd_Handle xdc_runtime_HeapStd_create( const xdc_runtime_HeapStd_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - xdc_runtime_HeapStd_Params __prms; - xdc_runtime_HeapStd_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&xdc_runtime_HeapStd_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(xdc_runtime_HeapStd_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = xdc_runtime_HeapStd_Instance_init__E(__newobj, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&xdc_runtime_HeapStd_Object__DESC__C, __newobj, NULL, iStat, 0); - return NULL; - } - - return __newobj; -} - -/* construct */ -void xdc_runtime_HeapStd_construct(xdc_runtime_HeapStd_Struct *__obj, const xdc_runtime_HeapStd_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - xdc_runtime_HeapStd_Params __prms; - int iStat; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&xdc_runtime_HeapStd_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(xdc_runtime_HeapStd_Params), __eb); - /* module-specific initialization */ - iStat = xdc_runtime_HeapStd_Instance_init__E((xdc_Ptr)__obj, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&xdc_runtime_HeapStd_Object__DESC__C, (xdc_Ptr)__obj, NULL, iStat, 1); - } - -} - -/* Object__destruct__S */ -xdc_Void xdc_runtime_HeapStd_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&xdc_runtime_HeapStd_Object__DESC__C, obj, NULL, 0, TRUE); -} - -/* destruct */ -void xdc_runtime_HeapStd_destruct(xdc_runtime_HeapStd_Struct *obj) -{ - xdc_runtime_HeapStd_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void xdc_runtime_HeapStd_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&xdc_runtime_HeapStd_Object__DESC__C, *((xdc_runtime_HeapStd_Object**)instp), NULL, 0, FALSE); - *((xdc_runtime_HeapStd_Handle*)instp) = NULL; -} - -/* delete */ -void xdc_runtime_HeapStd_delete(xdc_runtime_HeapStd_Handle *instp) -{ - xdc_runtime_HeapStd_Object__delete__S(instp); -} - - -/* - * ======== xdc.runtime.Log SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_Log_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== xdc.runtime.Main SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_Main_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== xdc.runtime.Main_Module_GateProxy SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID xdc_runtime_Main_Module_GateProxy_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL xdc_runtime_Main_Module_GateProxy_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB xdc_runtime_Main_Module_GateProxy_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK xdc_runtime_Main_Module_GateProxy_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF xdc_runtime_Main_Module_GateProxy_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ xdc_runtime_Main_Module_GateProxy_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 xdc_runtime_Main_Module_GateProxy_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 xdc_runtime_Main_Module_GateProxy_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 xdc_runtime_Main_Module_GateProxy_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 xdc_runtime_Main_Module_GateProxy_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 xdc_runtime_Main_Module_GateProxy_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ xdc_runtime_Main_Module_GateProxy_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS xdc_runtime_Main_Module_GateProxy_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create xdc_runtime_Main_Module_GateProxy_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete xdc_runtime_Main_Module_GateProxy_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter xdc_runtime_Main_Module_GateProxy_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave xdc_runtime_Main_Module_GateProxy_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query xdc_runtime_Main_Module_GateProxy_Module_GateProxy_query - -xdc_Bool xdc_runtime_Main_Module_GateProxy_Proxy__abstract__S( void ) -{ - return 0; -} -xdc_Ptr xdc_runtime_Main_Module_GateProxy_Proxy__delegate__S( void ) -{ - return (xdc_Ptr)&ti_sysbios_gates_GateHwi_Module__FXNS__C; -} - - - -/* - * ======== xdc.runtime.Memory SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_Memory_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== xdc.runtime.Memory_HeapProxy SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID xdc_runtime_Memory_HeapProxy_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL xdc_runtime_Memory_HeapProxy_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB xdc_runtime_Memory_HeapProxy_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK xdc_runtime_Memory_HeapProxy_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF xdc_runtime_Memory_HeapProxy_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ xdc_runtime_Memory_HeapProxy_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 xdc_runtime_Memory_HeapProxy_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 xdc_runtime_Memory_HeapProxy_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 xdc_runtime_Memory_HeapProxy_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 xdc_runtime_Memory_HeapProxy_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 xdc_runtime_Memory_HeapProxy_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ xdc_runtime_Memory_HeapProxy_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS xdc_runtime_Memory_HeapProxy_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create xdc_runtime_Memory_HeapProxy_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete xdc_runtime_Memory_HeapProxy_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter xdc_runtime_Memory_HeapProxy_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave xdc_runtime_Memory_HeapProxy_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query xdc_runtime_Memory_HeapProxy_Module_GateProxy_query - -xdc_Bool xdc_runtime_Memory_HeapProxy_Proxy__abstract__S( void ) -{ - return 1; -} -xdc_Ptr xdc_runtime_Memory_HeapProxy_Proxy__delegate__S( void ) -{ - return (xdc_Ptr)&ti_sysbios_heaps_HeapMem_Module__FXNS__C; -} - - - -/* - * ======== xdc.runtime.Registry SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_Registry_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== xdc.runtime.Startup SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_Startup_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== xdc.runtime.SysMin SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_SysMin_Module__startupDone__S( void ) -{ - return xdc_runtime_SysMin_Module__startupDone__F(); -} - - - -/* - * ======== xdc.runtime.System SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_System_Module__startupDone__S( void ) -{ - return xdc_runtime_System_Module__startupDone__F(); -} - - - -/* - * ======== xdc.runtime.System_Module_GateProxy SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID xdc_runtime_System_Module_GateProxy_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL xdc_runtime_System_Module_GateProxy_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB xdc_runtime_System_Module_GateProxy_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK xdc_runtime_System_Module_GateProxy_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF xdc_runtime_System_Module_GateProxy_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ xdc_runtime_System_Module_GateProxy_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 xdc_runtime_System_Module_GateProxy_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 xdc_runtime_System_Module_GateProxy_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 xdc_runtime_System_Module_GateProxy_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 xdc_runtime_System_Module_GateProxy_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 xdc_runtime_System_Module_GateProxy_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ xdc_runtime_System_Module_GateProxy_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS xdc_runtime_System_Module_GateProxy_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create xdc_runtime_System_Module_GateProxy_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete xdc_runtime_System_Module_GateProxy_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter xdc_runtime_System_Module_GateProxy_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave xdc_runtime_System_Module_GateProxy_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query xdc_runtime_System_Module_GateProxy_Module_GateProxy_query - -xdc_Bool xdc_runtime_System_Module_GateProxy_Proxy__abstract__S( void ) -{ - return 0; -} -xdc_Ptr xdc_runtime_System_Module_GateProxy_Proxy__delegate__S( void ) -{ - return (xdc_Ptr)&ti_sysbios_gates_GateHwi_Module__FXNS__C; -} - - - -/* - * ======== xdc.runtime.System_SupportProxy SYSTEM FUNCTIONS ======== - */ - - -xdc_Bool xdc_runtime_System_SupportProxy_Proxy__abstract__S( void ) -{ - return 0; -} -xdc_Ptr xdc_runtime_System_SupportProxy_Proxy__delegate__S( void ) -{ - return (xdc_Ptr)&xdc_runtime_SysMin_Module__FXNS__C; -} - - -/* - * ======== xdc.runtime.Text SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_Text_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== xdc.runtime.Timestamp SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_Timestamp_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== xdc.runtime.Timestamp_SupportProxy SYSTEM FUNCTIONS ======== - */ - - -xdc_Bool xdc_runtime_Timestamp_SupportProxy_Proxy__abstract__S( void ) -{ - return 0; -} -xdc_Ptr xdc_runtime_Timestamp_SupportProxy_Proxy__delegate__S( void ) -{ - return 0; -} - - -/* - * ======== xdc.runtime.knl.SemThread SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID xdc_runtime_knl_SemThread_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL xdc_runtime_knl_SemThread_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB xdc_runtime_knl_SemThread_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK xdc_runtime_knl_SemThread_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF xdc_runtime_knl_SemThread_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ xdc_runtime_knl_SemThread_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 xdc_runtime_knl_SemThread_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 xdc_runtime_knl_SemThread_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 xdc_runtime_knl_SemThread_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 xdc_runtime_knl_SemThread_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 xdc_runtime_knl_SemThread_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ xdc_runtime_knl_SemThread_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS xdc_runtime_knl_SemThread_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create xdc_runtime_knl_SemThread_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete xdc_runtime_knl_SemThread_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter xdc_runtime_knl_SemThread_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave xdc_runtime_knl_SemThread_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query xdc_runtime_knl_SemThread_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_knl_SemThread_Module__startupDone__S( void ) -{ - return 1; -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *xdc_runtime_knl_SemThread_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32819; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void xdc_runtime_knl_SemThread_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &xdc_runtime_knl_SemThread_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr xdc_runtime_knl_SemThread_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((xdc_runtime_knl_SemThread_Object__ *)oa) + i; - } - - if (xdc_runtime_knl_SemThread_Object__count__C == 0) { - return NULL; - } - - return ((xdc_runtime_knl_SemThread_Object__ *)xdc_runtime_knl_SemThread_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr xdc_runtime_knl_SemThread_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)xdc_runtime_knl_SemThread_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&xdc_runtime_knl_SemThread_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr xdc_runtime_knl_SemThread_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&xdc_runtime_knl_SemThread_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr xdc_runtime_knl_SemThread_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const xdc_runtime_knl_SemThread___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - xdc_runtime_knl_SemThread_Args__create *__args = __aa; - xdc_runtime_knl_SemThread_Params __prms; - xdc_runtime_knl_SemThread_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&xdc_runtime_knl_SemThread_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(xdc_runtime_knl_SemThread_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = xdc_runtime_knl_SemThread_Instance_init__E(__newobj, __args->count, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&xdc_runtime_knl_SemThread_Object__DESC__C, __newobj, (xdc_Fxn)xdc_runtime_knl_SemThread_Instance_finalize__E, iStat, (xdc_Bool)(__obj != NULL)); - return NULL; - } - - return __newobj; -} - -/* create */ -xdc_runtime_knl_SemThread_Handle xdc_runtime_knl_SemThread_create( xdc_Int count, const xdc_runtime_knl_SemThread_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - xdc_runtime_knl_SemThread_Params __prms; - xdc_runtime_knl_SemThread_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&xdc_runtime_knl_SemThread_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(xdc_runtime_knl_SemThread_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = xdc_runtime_knl_SemThread_Instance_init__E(__newobj, count, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&xdc_runtime_knl_SemThread_Object__DESC__C, __newobj, (xdc_Fxn)xdc_runtime_knl_SemThread_Instance_finalize__E, iStat, 0); - return NULL; - } - - return __newobj; -} - -/* construct */ -void xdc_runtime_knl_SemThread_construct(xdc_runtime_knl_SemThread_Struct *__obj, xdc_Int count, const xdc_runtime_knl_SemThread_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - xdc_runtime_knl_SemThread_Params __prms; - int iStat; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&xdc_runtime_knl_SemThread_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(xdc_runtime_knl_SemThread_Params), __eb); - /* module-specific initialization */ - iStat = xdc_runtime_knl_SemThread_Instance_init__E((xdc_Ptr)__obj, count, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&xdc_runtime_knl_SemThread_Object__DESC__C, (xdc_Ptr)__obj, (xdc_Fxn)xdc_runtime_knl_SemThread_Instance_finalize__E, iStat, 1); - } - -} - -/* Object__destruct__S */ -xdc_Void xdc_runtime_knl_SemThread_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&xdc_runtime_knl_SemThread_Object__DESC__C, obj, (xdc_Fxn)xdc_runtime_knl_SemThread_Instance_finalize__E, 0, TRUE); -} - -/* destruct */ -void xdc_runtime_knl_SemThread_destruct(xdc_runtime_knl_SemThread_Struct *obj) -{ - xdc_runtime_knl_SemThread_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void xdc_runtime_knl_SemThread_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&xdc_runtime_knl_SemThread_Object__DESC__C, *((xdc_runtime_knl_SemThread_Object**)instp), (xdc_Fxn)xdc_runtime_knl_SemThread_Instance_finalize__E, 0, FALSE); - *((xdc_runtime_knl_SemThread_Handle*)instp) = NULL; -} - -/* delete */ -void xdc_runtime_knl_SemThread_delete(xdc_runtime_knl_SemThread_Handle *instp) -{ - xdc_runtime_knl_SemThread_Object__delete__S(instp); -} - - -/* - * ======== xdc.runtime.knl.SemThread_Proxy SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID xdc_runtime_knl_SemThread_Proxy_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL xdc_runtime_knl_SemThread_Proxy_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB xdc_runtime_knl_SemThread_Proxy_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK xdc_runtime_knl_SemThread_Proxy_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF xdc_runtime_knl_SemThread_Proxy_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ xdc_runtime_knl_SemThread_Proxy_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 xdc_runtime_knl_SemThread_Proxy_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 xdc_runtime_knl_SemThread_Proxy_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 xdc_runtime_knl_SemThread_Proxy_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 xdc_runtime_knl_SemThread_Proxy_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 xdc_runtime_knl_SemThread_Proxy_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ xdc_runtime_knl_SemThread_Proxy_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS xdc_runtime_knl_SemThread_Proxy_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create xdc_runtime_knl_SemThread_Proxy_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete xdc_runtime_knl_SemThread_Proxy_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter xdc_runtime_knl_SemThread_Proxy_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave xdc_runtime_knl_SemThread_Proxy_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query xdc_runtime_knl_SemThread_Proxy_Module_GateProxy_query - -xdc_Bool xdc_runtime_knl_SemThread_Proxy_Proxy__abstract__S( void ) -{ - return 0; -} -xdc_Ptr xdc_runtime_knl_SemThread_Proxy_Proxy__delegate__S( void ) -{ - return 0; -} - - - -/* - * ======== xdc.runtime.knl.Sync SYSTEM FUNCTIONS ======== - */ - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_knl_Sync_Module__startupDone__S( void ) -{ - return 1; -} - - - -/* - * ======== xdc.runtime.knl.SyncGeneric SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID xdc_runtime_knl_SyncGeneric_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL xdc_runtime_knl_SyncGeneric_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB xdc_runtime_knl_SyncGeneric_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK xdc_runtime_knl_SyncGeneric_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF xdc_runtime_knl_SyncGeneric_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ xdc_runtime_knl_SyncGeneric_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 xdc_runtime_knl_SyncGeneric_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 xdc_runtime_knl_SyncGeneric_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 xdc_runtime_knl_SyncGeneric_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 xdc_runtime_knl_SyncGeneric_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 xdc_runtime_knl_SyncGeneric_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ xdc_runtime_knl_SyncGeneric_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS xdc_runtime_knl_SyncGeneric_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create xdc_runtime_knl_SyncGeneric_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete xdc_runtime_knl_SyncGeneric_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter xdc_runtime_knl_SyncGeneric_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave xdc_runtime_knl_SyncGeneric_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query xdc_runtime_knl_SyncGeneric_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_knl_SyncGeneric_Module__startupDone__S( void ) -{ - return 1; -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *xdc_runtime_knl_SyncGeneric_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32820; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void xdc_runtime_knl_SyncGeneric_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &xdc_runtime_knl_SyncGeneric_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr xdc_runtime_knl_SyncGeneric_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((xdc_runtime_knl_SyncGeneric_Object__ *)oa) + i; - } - - if (xdc_runtime_knl_SyncGeneric_Object__count__C == 0) { - return NULL; - } - - return ((xdc_runtime_knl_SyncGeneric_Object__ *)xdc_runtime_knl_SyncGeneric_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr xdc_runtime_knl_SyncGeneric_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)xdc_runtime_knl_SyncGeneric_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&xdc_runtime_knl_SyncGeneric_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr xdc_runtime_knl_SyncGeneric_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&xdc_runtime_knl_SyncGeneric_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr xdc_runtime_knl_SyncGeneric_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const xdc_runtime_knl_SyncGeneric___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - xdc_runtime_knl_SyncGeneric_Params __prms; - xdc_runtime_knl_SyncGeneric_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&xdc_runtime_knl_SyncGeneric_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(xdc_runtime_knl_SyncGeneric_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - xdc_runtime_knl_SyncGeneric_Instance_init__E(__newobj, &__prms); - return __newobj; -} - -/* create */ -xdc_runtime_knl_SyncGeneric_Handle xdc_runtime_knl_SyncGeneric_create( const xdc_runtime_knl_SyncGeneric_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - xdc_runtime_knl_SyncGeneric_Params __prms; - xdc_runtime_knl_SyncGeneric_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&xdc_runtime_knl_SyncGeneric_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(xdc_runtime_knl_SyncGeneric_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - xdc_runtime_knl_SyncGeneric_Instance_init__E(__newobj, &__prms); - return __newobj; -} - -/* construct */ -void xdc_runtime_knl_SyncGeneric_construct(xdc_runtime_knl_SyncGeneric_Struct *__obj, const xdc_runtime_knl_SyncGeneric_Params *__paramsPtr ) -{ - xdc_runtime_knl_SyncGeneric_Params __prms; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&xdc_runtime_knl_SyncGeneric_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(xdc_runtime_knl_SyncGeneric_Params), NULL); - /* module-specific initialization */ - xdc_runtime_knl_SyncGeneric_Instance_init__E((xdc_Ptr)__obj, &__prms); -} - -/* Object__destruct__S */ -xdc_Void xdc_runtime_knl_SyncGeneric_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&xdc_runtime_knl_SyncGeneric_Object__DESC__C, obj, NULL, -1, TRUE); -} - -/* destruct */ -void xdc_runtime_knl_SyncGeneric_destruct(xdc_runtime_knl_SyncGeneric_Struct *obj) -{ - xdc_runtime_knl_SyncGeneric_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void xdc_runtime_knl_SyncGeneric_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&xdc_runtime_knl_SyncGeneric_Object__DESC__C, *((xdc_runtime_knl_SyncGeneric_Object**)instp), NULL, -1, FALSE); - *((xdc_runtime_knl_SyncGeneric_Handle*)instp) = NULL; -} - -/* delete */ -void xdc_runtime_knl_SyncGeneric_delete(xdc_runtime_knl_SyncGeneric_Handle *instp) -{ - xdc_runtime_knl_SyncGeneric_Object__delete__S(instp); -} - - -/* - * ======== xdc.runtime.knl.SyncNull SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID xdc_runtime_knl_SyncNull_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL xdc_runtime_knl_SyncNull_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB xdc_runtime_knl_SyncNull_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK xdc_runtime_knl_SyncNull_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF xdc_runtime_knl_SyncNull_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ xdc_runtime_knl_SyncNull_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 xdc_runtime_knl_SyncNull_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 xdc_runtime_knl_SyncNull_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 xdc_runtime_knl_SyncNull_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 xdc_runtime_knl_SyncNull_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 xdc_runtime_knl_SyncNull_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ xdc_runtime_knl_SyncNull_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS xdc_runtime_knl_SyncNull_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create xdc_runtime_knl_SyncNull_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete xdc_runtime_knl_SyncNull_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter xdc_runtime_knl_SyncNull_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave xdc_runtime_knl_SyncNull_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query xdc_runtime_knl_SyncNull_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_knl_SyncNull_Module__startupDone__S( void ) -{ - return 1; -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *xdc_runtime_knl_SyncNull_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32821; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void xdc_runtime_knl_SyncNull_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &xdc_runtime_knl_SyncNull_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr xdc_runtime_knl_SyncNull_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((xdc_runtime_knl_SyncNull_Object__ *)oa) + i; - } - - if (xdc_runtime_knl_SyncNull_Object__count__C == 0) { - return NULL; - } - - return ((xdc_runtime_knl_SyncNull_Object__ *)xdc_runtime_knl_SyncNull_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr xdc_runtime_knl_SyncNull_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)xdc_runtime_knl_SyncNull_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&xdc_runtime_knl_SyncNull_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr xdc_runtime_knl_SyncNull_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&xdc_runtime_knl_SyncNull_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr xdc_runtime_knl_SyncNull_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const xdc_runtime_knl_SyncNull___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - xdc_runtime_knl_SyncNull_Params __prms; - xdc_runtime_knl_SyncNull_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&xdc_runtime_knl_SyncNull_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(xdc_runtime_knl_SyncNull_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - return __newobj; -} - -/* create */ -xdc_runtime_knl_SyncNull_Handle xdc_runtime_knl_SyncNull_create( const xdc_runtime_knl_SyncNull_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - xdc_runtime_knl_SyncNull_Params __prms; - xdc_runtime_knl_SyncNull_Object *__newobj; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&xdc_runtime_knl_SyncNull_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(xdc_runtime_knl_SyncNull_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - return __newobj; -} - -/* construct */ -void xdc_runtime_knl_SyncNull_construct(xdc_runtime_knl_SyncNull_Struct *__obj, const xdc_runtime_knl_SyncNull_Params *__paramsPtr ) -{ - xdc_runtime_knl_SyncNull_Params __prms; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&xdc_runtime_knl_SyncNull_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(xdc_runtime_knl_SyncNull_Params), NULL); -} - -/* Object__destruct__S */ -xdc_Void xdc_runtime_knl_SyncNull_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&xdc_runtime_knl_SyncNull_Object__DESC__C, obj, NULL, -1, TRUE); -} - -/* destruct */ -void xdc_runtime_knl_SyncNull_destruct(xdc_runtime_knl_SyncNull_Struct *obj) -{ - xdc_runtime_knl_SyncNull_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void xdc_runtime_knl_SyncNull_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&xdc_runtime_knl_SyncNull_Object__DESC__C, *((xdc_runtime_knl_SyncNull_Object**)instp), NULL, -1, FALSE); - *((xdc_runtime_knl_SyncNull_Handle*)instp) = NULL; -} - -/* delete */ -void xdc_runtime_knl_SyncNull_delete(xdc_runtime_knl_SyncNull_Handle *instp) -{ - xdc_runtime_knl_SyncNull_Object__delete__S(instp); -} - - -/* - * ======== xdc.runtime.knl.SyncSemThread SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID xdc_runtime_knl_SyncSemThread_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL xdc_runtime_knl_SyncSemThread_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB xdc_runtime_knl_SyncSemThread_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK xdc_runtime_knl_SyncSemThread_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF xdc_runtime_knl_SyncSemThread_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ xdc_runtime_knl_SyncSemThread_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 xdc_runtime_knl_SyncSemThread_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 xdc_runtime_knl_SyncSemThread_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 xdc_runtime_knl_SyncSemThread_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 xdc_runtime_knl_SyncSemThread_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 xdc_runtime_knl_SyncSemThread_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ xdc_runtime_knl_SyncSemThread_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS xdc_runtime_knl_SyncSemThread_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create xdc_runtime_knl_SyncSemThread_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete xdc_runtime_knl_SyncSemThread_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter xdc_runtime_knl_SyncSemThread_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave xdc_runtime_knl_SyncSemThread_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query xdc_runtime_knl_SyncSemThread_Module_GateProxy_query - -/* Module__startupDone__S */ -xdc_Bool xdc_runtime_knl_SyncSemThread_Module__startupDone__S( void ) -{ - return 1; -} - -/* Handle__label__S */ -xdc_runtime_Types_Label *xdc_runtime_knl_SyncSemThread_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) -{ - lab->handle = obj; - lab->modId = 32822; - xdc_runtime_Core_assignLabel(lab, 0, 0); - - return lab; -} - -/* Params__init__S */ -xdc_Void xdc_runtime_knl_SyncSemThread_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) -{ - xdc_runtime_Core_assignParams__I(prms, (xdc_Ptr)(src ? src : &xdc_runtime_knl_SyncSemThread_Object__PARAMS__C), psz, isz); -} - -/* Object__get__S */ -xdc_Ptr xdc_runtime_knl_SyncSemThread_Object__get__S(xdc_Ptr oa, xdc_Int i) -{ - if (oa) { - return ((xdc_runtime_knl_SyncSemThread_Object__ *)oa) + i; - } - - if (xdc_runtime_knl_SyncSemThread_Object__count__C == 0) { - return NULL; - } - - return ((xdc_runtime_knl_SyncSemThread_Object__ *)xdc_runtime_knl_SyncSemThread_Object__table__C) + i; -} - -/* Object__first__S */ -xdc_Ptr xdc_runtime_knl_SyncSemThread_Object__first__S( void ) -{ - xdc_runtime_Types_InstHdr *iHdr = (xdc_runtime_Types_InstHdr *)xdc_runtime_knl_SyncSemThread_Module__root__V.link.next; - - if (iHdr != (xdc_runtime_Types_InstHdr *)&xdc_runtime_knl_SyncSemThread_Module__root__V.link) { - return iHdr + 1; - } - else { - return NULL; - } -} - -/* Object__next__S */ -xdc_Ptr xdc_runtime_knl_SyncSemThread_Object__next__S( xdc_Ptr obj ) -{ - xdc_runtime_Types_InstHdr *iHdr = ((xdc_runtime_Types_InstHdr *)obj) - 1; - - if (iHdr->link.next != (xdc_runtime_Types_Link *)&xdc_runtime_knl_SyncSemThread_Module__root__V.link) { - return (xdc_runtime_Types_InstHdr *)(iHdr->link.next) + 1; - } - else { - return NULL; - } -} - -/* Object__create__S */ -xdc_Ptr xdc_runtime_knl_SyncSemThread_Object__create__S ( - xdc_Ptr __obj, - xdc_SizeT __osz, - const xdc_Ptr __aa, - const xdc_runtime_knl_SyncSemThread___ParamsPtr __paramsPtr, - xdc_SizeT __psz, - xdc_runtime_Error_Block *__eb) -{ - xdc_runtime_knl_SyncSemThread_Params __prms; - xdc_runtime_knl_SyncSemThread_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&xdc_runtime_knl_SyncSemThread_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(xdc_runtime_knl_SyncSemThread_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = xdc_runtime_knl_SyncSemThread_Instance_init__E(__newobj, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&xdc_runtime_knl_SyncSemThread_Object__DESC__C, __newobj, (xdc_Fxn)xdc_runtime_knl_SyncSemThread_Instance_finalize__E, iStat, (xdc_Bool)(__obj != NULL)); - return NULL; - } - - return __newobj; -} - -/* create */ -xdc_runtime_knl_SyncSemThread_Handle xdc_runtime_knl_SyncSemThread_create( const xdc_runtime_knl_SyncSemThread_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - xdc_runtime_knl_SyncSemThread_Params __prms; - xdc_runtime_knl_SyncSemThread_Object *__newobj; - int iStat; - - /* common instance initialization */ - __newobj = xdc_runtime_Core_createObject__I(&xdc_runtime_knl_SyncSemThread_Object__DESC__C, 0, &__prms, (xdc_Ptr)__paramsPtr, sizeof(xdc_runtime_knl_SyncSemThread_Params), __eb); - if (__newobj == NULL) { - return NULL; - } - - /* module-specific initialization */ - iStat = xdc_runtime_knl_SyncSemThread_Instance_init__E(__newobj, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&xdc_runtime_knl_SyncSemThread_Object__DESC__C, __newobj, (xdc_Fxn)xdc_runtime_knl_SyncSemThread_Instance_finalize__E, iStat, 0); - return NULL; - } - - return __newobj; -} - -/* construct */ -void xdc_runtime_knl_SyncSemThread_construct(xdc_runtime_knl_SyncSemThread_Struct *__obj, const xdc_runtime_knl_SyncSemThread_Params *__paramsPtr, xdc_runtime_Error_Block *__eb ) -{ - xdc_runtime_knl_SyncSemThread_Params __prms; - int iStat; - - /* common instance initialization */ - xdc_runtime_Core_constructObject__I(&xdc_runtime_knl_SyncSemThread_Object__DESC__C, __obj, &__prms, (xdc_Ptr)__paramsPtr, sizeof(xdc_runtime_knl_SyncSemThread_Params), __eb); - /* module-specific initialization */ - iStat = xdc_runtime_knl_SyncSemThread_Instance_init__E((xdc_Ptr)__obj, &__prms, __eb); - if (xdc_runtime_Error_check(__eb)) { - xdc_runtime_Core_deleteObject__I(&xdc_runtime_knl_SyncSemThread_Object__DESC__C, (xdc_Ptr)__obj, (xdc_Fxn)xdc_runtime_knl_SyncSemThread_Instance_finalize__E, iStat, 1); - } - -} - -/* Object__destruct__S */ -xdc_Void xdc_runtime_knl_SyncSemThread_Object__destruct__S( xdc_Ptr obj ) -{ - xdc_runtime_Core_deleteObject__I(&xdc_runtime_knl_SyncSemThread_Object__DESC__C, obj, (xdc_Fxn)xdc_runtime_knl_SyncSemThread_Instance_finalize__E, 0, TRUE); -} - -/* destruct */ -void xdc_runtime_knl_SyncSemThread_destruct(xdc_runtime_knl_SyncSemThread_Struct *obj) -{ - xdc_runtime_knl_SyncSemThread_Object__destruct__S(obj); -} - -/* Object__delete__S */ -xdc_Void xdc_runtime_knl_SyncSemThread_Object__delete__S( xdc_Ptr instp ) -{ - xdc_runtime_Core_deleteObject__I(&xdc_runtime_knl_SyncSemThread_Object__DESC__C, *((xdc_runtime_knl_SyncSemThread_Object**)instp), (xdc_Fxn)xdc_runtime_knl_SyncSemThread_Instance_finalize__E, 0, FALSE); - *((xdc_runtime_knl_SyncSemThread_Handle*)instp) = NULL; -} - -/* delete */ -void xdc_runtime_knl_SyncSemThread_delete(xdc_runtime_knl_SyncSemThread_Handle *instp) -{ - xdc_runtime_knl_SyncSemThread_Object__delete__S(instp); -} - - -/* - * ======== xdc.runtime.knl.Sync_Proxy SYSTEM FUNCTIONS ======== - */ - -/* per-module runtime symbols */ -#undef Module__MID -#define Module__MID xdc_runtime_knl_Sync_Proxy_Module__id__C -#undef Module__DGSINCL -#define Module__DGSINCL xdc_runtime_knl_Sync_Proxy_Module__diagsIncluded__C -#undef Module__DGSENAB -#define Module__DGSENAB xdc_runtime_knl_Sync_Proxy_Module__diagsEnabled__C -#undef Module__DGSMASK -#define Module__DGSMASK xdc_runtime_knl_Sync_Proxy_Module__diagsMask__C -#undef Module__LOGDEF -#define Module__LOGDEF xdc_runtime_knl_Sync_Proxy_Module__loggerDefined__C -#undef Module__LOGOBJ -#define Module__LOGOBJ xdc_runtime_knl_Sync_Proxy_Module__loggerObj__C -#undef Module__LOGFXN0 -#define Module__LOGFXN0 xdc_runtime_knl_Sync_Proxy_Module__loggerFxn0__C -#undef Module__LOGFXN1 -#define Module__LOGFXN1 xdc_runtime_knl_Sync_Proxy_Module__loggerFxn1__C -#undef Module__LOGFXN2 -#define Module__LOGFXN2 xdc_runtime_knl_Sync_Proxy_Module__loggerFxn2__C -#undef Module__LOGFXN4 -#define Module__LOGFXN4 xdc_runtime_knl_Sync_Proxy_Module__loggerFxn4__C -#undef Module__LOGFXN8 -#define Module__LOGFXN8 xdc_runtime_knl_Sync_Proxy_Module__loggerFxn8__C -#undef Module__G_OBJ -#define Module__G_OBJ xdc_runtime_knl_Sync_Proxy_Module__gateObj__C -#undef Module__G_PRMS -#define Module__G_PRMS xdc_runtime_knl_Sync_Proxy_Module__gatePrms__C -#undef Module__GP_create -#define Module__GP_create xdc_runtime_knl_Sync_Proxy_Module_GateProxy_create -#undef Module__GP_delete -#define Module__GP_delete xdc_runtime_knl_Sync_Proxy_Module_GateProxy_delete -#undef Module__GP_enter -#define Module__GP_enter xdc_runtime_knl_Sync_Proxy_Module_GateProxy_enter -#undef Module__GP_leave -#define Module__GP_leave xdc_runtime_knl_Sync_Proxy_Module_GateProxy_leave -#undef Module__GP_query -#define Module__GP_query xdc_runtime_knl_Sync_Proxy_Module_GateProxy_query - -xdc_Bool xdc_runtime_knl_Sync_Proxy_Proxy__abstract__S( void ) -{ - return 1; -} -xdc_Ptr xdc_runtime_knl_Sync_Proxy_Proxy__delegate__S( void ) -{ - return (xdc_Ptr)&xdc_runtime_knl_SyncNull_Module__FXNS__C; -} - - - -/* - * ======== INITIALIZATION ENTRY POINT ======== - */ - -extern int __xdc__init(void); -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -__FAR__ int (* volatile __xdc__init__addr)(void) = &__xdc__init; - - -/* - * ======== PROGRAM GLOBALS ======== - */ - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_family_arm_m3_Hwi_Handle adcHwi = (ti_sysbios_family_arm_m3_Hwi_Handle)((ti_sysbios_family_arm_m3_Hwi_Handle)&ti_sysbios_family_arm_m3_Hwi_Object__table__V[0]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_family_arm_m3_Hwi_Handle sysTick = (ti_sysbios_family_arm_m3_Hwi_Handle)((ti_sysbios_family_arm_m3_Hwi_Handle)&ti_sysbios_family_arm_m3_Hwi_Object__table__V[1]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_family_arm_m3_Hwi_Handle portpint = (ti_sysbios_family_arm_m3_Hwi_Handle)((ti_sysbios_family_arm_m3_Hwi_Handle)&ti_sysbios_family_arm_m3_Hwi_Object__table__V[2]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_family_arm_m3_Hwi_Handle timer0 = (ti_sysbios_family_arm_m3_Hwi_Handle)((ti_sysbios_family_arm_m3_Hwi_Handle)&ti_sysbios_family_arm_m3_Hwi_Object__table__V[3]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_family_arm_m3_Hwi_Handle watchdog = (ti_sysbios_family_arm_m3_Hwi_Handle)((ti_sysbios_family_arm_m3_Hwi_Handle)&ti_sysbios_family_arm_m3_Hwi_Object__table__V[4]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_family_arm_m3_Hwi_Handle timer2 = (ti_sysbios_family_arm_m3_Hwi_Handle)((ti_sysbios_family_arm_m3_Hwi_Handle)&ti_sysbios_family_arm_m3_Hwi_Object__table__V[5]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_family_arm_m3_Hwi_Handle timer1 = (ti_sysbios_family_arm_m3_Hwi_Handle)((ti_sysbios_family_arm_m3_Hwi_Handle)&ti_sysbios_family_arm_m3_Hwi_Object__table__V[6]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_family_arm_m3_Hwi_Handle timer3 = (ti_sysbios_family_arm_m3_Hwi_Handle)((ti_sysbios_family_arm_m3_Hwi_Handle)&ti_sysbios_family_arm_m3_Hwi_Object__table__V[7]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_knl_Semaphore_Handle initConnectionSem = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[0]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_knl_Semaphore_Handle adcResultSem = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[1]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_knl_Semaphore_Handle updateSem = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[2]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_knl_Semaphore_Handle ReconnectSem = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[3]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_knl_Task_Handle millisec = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[0]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_knl_Task_Handle control = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[1]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_knl_Task_Handle AlarmHandling = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[2]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_knl_Task_Handle communicationTx = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[3]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_knl_Task_Handle process = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[4]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_knl_Task_Handle HeatersControl = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[5]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_knl_Task_Handle communication = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[6]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_knl_Task_Handle millisecLow = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[7]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_knl_Task_Handle controlLow = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[8]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_knl_Task_Handle Diagnostics = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[9]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_knl_Task_Handle adcProcess = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[10]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_knl_Task_Handle report = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[11]); - -#ifdef __GNUC__ -#ifndef __TI_COMPILER_VERSION__ - __attribute__ ((externally_visible)) -#endif -#endif -const ti_sysbios_knl_Task_Handle update = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[12]); - diff --git a/Software/Embedded_SW/Embedded/debug_w_pmr/configPkg/package/cfg/Embedded_pem4f.cfg b/Software/Embedded_SW/Embedded/debug_w_pmr/configPkg/package/cfg/Embedded_pem4f.cfg deleted file mode 100644 index 30879d993..000000000 --- a/Software/Embedded_SW/Embedded/debug_w_pmr/configPkg/package/cfg/Embedded_pem4f.cfg +++ /dev/null @@ -1,268 +0,0 @@ -/* - * ======== package/cfg/Embedded_pem4f.cfg ======== - * This generated configuration script runs the user's configuration script - * the context of a specific target and platform in order to generate - * all the files necessary to create an executable; e.g., linker command - * files, static C/C++ data structures, etc. - */ - -/* - * ======== _applyChanges ======== - * Changes that bring the build target to the state at the end of the build - * model - */ -function _applyChanges(obj, chgObj) { - var wasSealed = false; - if (obj.$sealed) { - wasSealed = true; - obj.$unseal(); - } - for (var prop in chgObj) { - if (typeof obj[prop] == 'object' && obj[prop] != undefined) { - if ("$category" in obj[prop] && obj[prop].$category == "Vector") { - obj[prop].length = chgObj[prop].length; - for (var i = 0; i < chgObj[prop].length; i++) { - if (obj[prop].length < i + 1) { - obj[prop].length++; - } - obj[prop][i] = chgObj[prop][i]; - } - } - else { - _applyChanges(obj[prop], chgObj[prop]); - } - } - else { - obj[prop] = chgObj[prop]; - } - } - if (wasSealed) { - obj.$seal(); - } -} - -/* - * ======== _runescape ======== - * Recursive unescape to decode serialized strings - */ -function _runescape(obj) { - for (var i in obj) { - if (obj[i] != null) { - if (typeof obj[i] == 'string') { - obj[i] = unescape(obj[i]); - } - else if (typeof obj[i] == 'object') { - _runescape(obj[i]); - } - } - } -} - -/* - * ======== _getPlatCfg ======== - */ -function _getPlatCfg() { - var tmp = {}; - _runescape(tmp); - return (tmp); -} -/* - * ======== _cfginit ======== - */ -function _cfginit() { - xdc.loadPackage('xdc.services.intern.cmd'); - var prog = xdc.om['xdc.cfg.Program']; - - /* initialize prog attrs from build model */ - var build = { - profile: "release", - cfgScript: "C%3A/Tango/Software/Embedded_SW/Embedded/Embedded.cfg", - cfgHome: "configPkg", - cfgArgs: "null", - cfgArgsEncoded: true, - releases: { - 0: { - name: "configPkg", - attrs: { - prefix: "", - label: "default" - }, - otherFiles: {}, - excludeDirs: {} - } - }, - prelink: false - }; - _runescape(build); - build.cfgArgs = null; - build.target = xdc.module("ti.targets.arm.elf.M4F"); - var targChange = { - platforms: [ - "ti.platforms.tiva%3ATM4C1294NCPDT%3A1" - ], - version: "ti.targets.arm.elf.M4F%7B1%2C0%2C16.9%2C4", - extensions: { - ".sem4fe": { - suf: ".sem4fe", - typ: "asm" - }, - ".sem4f": { - suf: ".sem4f", - typ: "asm" - }, - ".sv7M4": { - suf: ".sv7M4", - typ: "asm" - }, - ".sv7M": { - suf: ".sv7M", - typ: "asm" - } - }, - rootDir: "C%3A/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS", - ccOpts: { - prefix: "-mv7M4%20--code_state%3D16%20--float_support%3DFPv4SPD16%20-me%20-qq%20-pdsw225" - }, - rawVersion: "16.9.4" - }; - _runescape(targChange); - _applyChanges(build.target, targChange); - - prog.build = build; - - prog.name = "Embedded.xem4f"; - prog.cfgBase = "package/cfg/Embedded_pem4f"; - - prog.endian = prog.build.target.model.endian; - prog.codeModel = prog.build.target.model.codeModel; - - /* use the platform package's Platform module */ - var Platform = xdc.useModule("ti.platforms.tiva.Platform"); - var platParams = _getPlatCfg(); - var invalidParams = []; - for (var prop in platParams) { - if (!(prop in Platform.PARAMS)) { - delete platParams[prop]; - invalidParams.push(prop); - } - } - prog.platformName = "ti.platforms.tiva:TM4C129XNCZAD"; - prog.platform = Platform.create("TM4C129XNCZAD", platParams); - for (var i = 0; i < invalidParams.length; i++) { - Platform.$logWarning("The parameter '" + invalidParams[i] + "' is " + - "passed to this platform instance through Build.platformTable, " + - "but the instance does not have a configuration parameter with " + - "that name.", prog.platform, "TM4C129XNCZAD"); - } - - /* record the executable's package name */ - prog.buildPackage = "configPkg"; - - /* record build-model information required during config generation */ - prog.$$bind("$$isasm", 0); - prog.$$bind("$$isrom", 0); - prog.$$bind("$$gentab", [ - ]); - - /* bind prog to an appropriate execution context */ - prog.cpu = prog.platform.getExeContext(prog); - - /* import the target's run-time support pkg */ - xdc.loadPackage("ti.targets.arm.rtsarm"); -} - -/* function to import the cfg script's package */ -function _userscript(script) { - var home; - var spath; - home = xdc.loadPackage("configPkg"); - - xdc.om.$$bind('$homepkg', home); - - var cfgScript = "C:/Tango/Software/Embedded_SW/Embedded/Embedded.cfg"; - if (!script) { - utils.loadCapsule(cfgScript, false, spath); - } - else { - /* set up the same environment that loadCapsule would */ - var $saveCsd = utils.csd; - var $cfgFile = utils.findFile(cfgScript, spath); - var cname = cfgScript; - if ($cfgFile) { - $cfgFile = java.io.File($cfgFile); - utils.csd = $cfgFile.getParentFile().getCanonicalPath(); - cname = "" + $cfgFile.getCanonicalPath(); - } - - /* create the capsule object */ - var cap = { - prototype: utils.global, - $path: cname, - $private: {path: cname}, - $capsule: undefined, /* set to cap below */ - }; - - /* 'this.$capsule' is always cap object */ - cap.$capsule = cap; - - /* save the capsule object */ - utils.$$capmap[cname] = cap; - - try { - var cx = - Packages.org.mozilla.javascript.Context.getCurrentContext(); - var rdr = new - java.io.BufferedReader(new java.io.StringReader(script)); - Packages.config.Shell.evaluateLoad(cx, cap, rdr, cname, 1); - } - finally { - rdr.close(); - utils.csd = $saveCsd; - } - } -} - -function _postinit() { - var cout = null; - - var Program = xdc.om['xdc.cfg.Program']; - /* get the exec command for this executable */ - if (Program.execCmd == null) { - Program.execCmd = Program.platform.getExecCmd(Program, - xdc.om["ti.platforms.tiva"].packageBase); - } - cout = "define EXEC." + Program.name + '\n\n'; - cout += Program.execCmd; - cout += "\nendef\n\n"; - - /* if SourceDir generates a makefile, we need to run it */ - _genSourceDirMak("package/cfg/Embedded_pem4f", "Embedded.pem4f"); - - utils.genDep("package/cfg/Embedded_pem4f", "configPkg", utils.loadedFiles, cout, null); -} - -function _genSourceDirMak(cfgBase, cfgName) -{ - var SourceDir = xdc.om['xdc.cfg.SourceDir']; - - if (SourceDir && SourceDir.$instances.length > 0) { - /* construct rule to run SourceDir generated makefile */ - var make = "\t$(MAKE) -f " - + SourceDir.outputDir + "/" + SourceDir.makefileName; - - /* this file is included by package.mak (if it exists) */ - var file = new java.io.File(cfgBase + ".cfg.mak"); - file["delete"](); - var out = new java.io.BufferedWriter(new java.io.FileWriter(file)); - - /* add rules to run SourceDir generated makefile */ - out.write("# invoke SourceDir generated makefile for " + cfgName - + "\n" + cfgName + ": .libraries," + cfgName - + "\n.libraries," + cfgName + ": " + cfgBase + ".xdl\n" - + make + "\n\n" - + "clean::\n" + make + " clean\n\n" - ); - out.close(); - out = null; - } -} diff --git a/Software/Embedded_SW/Embedded/debug_w_pmr/configPkg/package/cfg/Embedded_pem4f.h b/Software/Embedded_SW/Embedded/debug_w_pmr/configPkg/package/cfg/Embedded_pem4f.h deleted file mode 100644 index 0c9d47734..000000000 --- a/Software/Embedded_SW/Embedded/debug_w_pmr/configPkg/package/cfg/Embedded_pem4f.h +++ /dev/null @@ -1,88 +0,0 @@ -/* - * Do not modify this file; it is automatically - * generated and any modifications will be overwritten. - * - * @(#) xdc-B06 - */ - -#include <xdc/std.h> - -#include <ti/sysbios/family/arm/m3/Hwi.h> -extern const ti_sysbios_family_arm_m3_Hwi_Handle adcHwi; - -#include <ti/sysbios/family/arm/m3/Hwi.h> -extern const ti_sysbios_family_arm_m3_Hwi_Handle sysTick; - -#include <ti/sysbios/family/arm/m3/Hwi.h> -extern const ti_sysbios_family_arm_m3_Hwi_Handle portpint; - -#include <ti/sysbios/family/arm/m3/Hwi.h> -extern const ti_sysbios_family_arm_m3_Hwi_Handle timer0; - -#include <ti/sysbios/family/arm/m3/Hwi.h> -extern const ti_sysbios_family_arm_m3_Hwi_Handle watchdog; - -#include <ti/sysbios/family/arm/m3/Hwi.h> -extern const ti_sysbios_family_arm_m3_Hwi_Handle timer2; - -#include <ti/sysbios/family/arm/m3/Hwi.h> -extern const ti_sysbios_family_arm_m3_Hwi_Handle timer1; - -#include <ti/sysbios/family/arm/m3/Hwi.h> -extern const ti_sysbios_family_arm_m3_Hwi_Handle timer3; - -#include <ti/sysbios/knl/Semaphore.h> -extern const ti_sysbios_knl_Semaphore_Handle initConnectionSem; - -#include <ti/sysbios/knl/Semaphore.h> -extern const ti_sysbios_knl_Semaphore_Handle adcResultSem; - -#include <ti/sysbios/knl/Semaphore.h> -extern const ti_sysbios_knl_Semaphore_Handle updateSem; - -#include <ti/sysbios/knl/Semaphore.h> -extern const ti_sysbios_knl_Semaphore_Handle ReconnectSem; - -#include <ti/sysbios/knl/Task.h> -extern const ti_sysbios_knl_Task_Handle millisec; - -#include <ti/sysbios/knl/Task.h> -extern const ti_sysbios_knl_Task_Handle control; - -#include <ti/sysbios/knl/Task.h> -extern const ti_sysbios_knl_Task_Handle AlarmHandling; - -#include <ti/sysbios/knl/Task.h> -extern const ti_sysbios_knl_Task_Handle communicationTx; - -#include <ti/sysbios/knl/Task.h> -extern const ti_sysbios_knl_Task_Handle process; - -#include <ti/sysbios/knl/Task.h> -extern const ti_sysbios_knl_Task_Handle HeatersControl; - -#include <ti/sysbios/knl/Task.h> -extern const ti_sysbios_knl_Task_Handle communication; - -#include <ti/sysbios/knl/Task.h> -extern const ti_sysbios_knl_Task_Handle millisecLow; - -#include <ti/sysbios/knl/Task.h> -extern const ti_sysbios_knl_Task_Handle controlLow; - -#include <ti/sysbios/knl/Task.h> -extern const ti_sysbios_knl_Task_Handle Diagnostics; - -#include <ti/sysbios/knl/Task.h> -extern const ti_sysbios_knl_Task_Handle adcProcess; - -#include <ti/sysbios/knl/Task.h> -extern const ti_sysbios_knl_Task_Handle report; - -#include <ti/sysbios/knl/Task.h> -extern const ti_sysbios_knl_Task_Handle update; - -extern int xdc_runtime_Startup__EXECFXN__C; - -extern int xdc_runtime_Startup__RESETFXN__C; - diff --git a/Software/Embedded_SW/Embedded/debug_w_pmr/makefile b/Software/Embedded_SW/Embedded/debug_w_pmr/makefile index a20bf907b..ffcf18162 100644 --- a/Software/Embedded_SW/Embedded/debug_w_pmr/makefile +++ b/Software/Embedded_SW/Embedded/debug_w_pmr/makefile @@ -4,7 +4,7 @@ SHELL = cmd.exe -CG_TOOL_ROOT := C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" GEN_CMDS__FLAG := -l"configPkg/linker.cmd" @@ -41,7 +41,10 @@ ORDERED_OBJS += \ "./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ "./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ "./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ "./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ "./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ "./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ "./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ @@ -106,6 +109,8 @@ ORDERED_OBJS += \ "./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ "./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ "./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ "./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ "./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ "./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ @@ -293,7 +298,7 @@ ORDERED_OBJS += \ "./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ "./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ "./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ -"./Drivers/FPGA/Moters_Driver/L6470.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ "./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ "./Drivers/Flash_Memory/FATFS/cc932.obj" \ "./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ @@ -306,10 +311,13 @@ ORDERED_OBJS += \ "./Drivers/Heater/TemperatureSensor.obj" \ "./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ "./Drivers/I2C_Communication/DAC/Blower.obj" \ -"./Drivers/I2C_Communication/Dispensers_EEPROM_MUX/Disp_EEPROM_MUX.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ "./Drivers/I2C_Communication/I2C.obj" \ "./Drivers/I2C_Communication/I2C_Comm.obj" \ "./Drivers/I2C_Communication/RFID_NFC/NFC_I2C/NFC_I2C.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_I2C/Test_NFC.obj" \ "./Drivers/I2C_Communication/RFID_NFC/PN7150/PN7150.obj" \ "./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ "./Drivers/Motors/Motor.obj" \ @@ -333,6 +341,7 @@ ORDERED_OBJS += \ "./Modules/Diagnostics/DiagnosticsHoming.obj" \ "./Modules/Diagnostics/DiagnosticsJogging.obj" \ "./Modules/General/GeneralHardware.obj" \ +"./Modules/General/Safety.obj" \ "./Modules/General/buttons.obj" \ "./Modules/General/process.obj" \ "./Modules/Heaters/Heaters_bit.obj" \ @@ -340,6 +349,7 @@ ORDERED_OBJS += \ "./Modules/Heaters/Heaters_maint.obj" \ "./Modules/Heaters/Heaters_print.obj" \ "./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ "./Modules/IDS/IDS_dispenser.obj" \ "./Modules/IDS/IDS_init.obj" \ "./Modules/IDS/IDS_maint.obj" \ @@ -383,6 +393,8 @@ ORDERED_OBJS += \ "./Modules/Waste/Waste_maint.obj" \ "./Modules/Waste/Waste_print.obj" \ "./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ "./StateMachines/Printing/JobSTM.obj" \ "./StateMachines/Printing/PrintingSTM.obj" \ "../tm4c129xnczad.cmd" \ @@ -424,13 +436,15 @@ RMDIR := RMDIR /S/Q -include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk -include Drivers/FPGA/Full_Vme/subdir_vars.mk -include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk --include Drivers/FPGA/Moters_Driver/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk -include Drivers/Flash_Memory/FATFS/subdir_vars.mk -include Drivers/Flash_Memory/subdir_vars.mk -include Drivers/Heater/subdir_vars.mk -include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk -include Drivers/I2C_Communication/DAC/subdir_vars.mk --include Drivers/I2C_Communication/Dispensers_EEPROM_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk -include Drivers/I2C_Communication/subdir_vars.mk -include Drivers/I2C_Communication/RFID_NFC/NFC_I2C/subdir_vars.mk -include Drivers/I2C_Communication/RFID_NFC/PN7150/subdir_vars.mk @@ -481,13 +495,15 @@ RMDIR := RMDIR /S/Q -include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk -include Drivers/FPGA/Full_Vme/subdir_rules.mk -include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk --include Drivers/FPGA/Moters_Driver/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk -include Drivers/Flash_Memory/FATFS/subdir_rules.mk -include Drivers/Flash_Memory/subdir_rules.mk -include Drivers/Heater/subdir_rules.mk -include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk -include Drivers/I2C_Communication/DAC/subdir_rules.mk --include Drivers/I2C_Communication/Dispensers_EEPROM_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk -include Drivers/I2C_Communication/subdir_rules.mk -include Drivers/I2C_Communication/RFID_NFC/NFC_I2C/subdir_rules.mk -include Drivers/I2C_Communication/RFID_NFC/PN7150/subdir_rules.mk @@ -631,21 +647,20 @@ main-build: Embedded.out # Tool invocations Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) - @echo 'Building target: "$@"' + @echo 'Building target: $@' @echo 'Invoking: ARM Linker' - @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=DEBUG_TEST_FUNCTIONS --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --abi=eabi -z -m"Embedded.map" --heap_size=20480 --stack_size=4095 -i"C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS/lib" -i"C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS/include" --reread_libs --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' - $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=DEBUG_TEST_FUNCTIONS --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --abi=eabi -z -m"Embedded.map" --heap_size=20480 --stack_size=4095 -i"C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS/lib" -i"C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS/include" --reread_libs --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=DEBUG_TEST_FUNCTIONS --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --abi=eabi -z -m"Embedded.map" --heap_size=20480 --stack_size=4095 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --reread_libs --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=DEBUG_TEST_FUNCTIONS --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --abi=eabi -z -m"Embedded.map" --heap_size=20480 --stack_size=4095 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --reread_libs --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") $(shell type "ccsObjs.opt" >> "ccsLinker.opt") - "C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" - @echo 'Finished building target: "$@"' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' @echo ' ' @$(MAKE) --no-print-directory post-build Embedded.bin: $(EXE_OUTPUTS) - @echo 'Building files: $(strip $(EXE_OUTPUTS__QUOTED))' @echo 'Invoking: ARM Hex Utility' - "C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) - @echo 'Finished building: $(strip $(EXE_OUTPUTS__QUOTED))' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' @echo ' ' @$(MAKE) --no-print-directory post-build @@ -654,43 +669,44 @@ clean: -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" - -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" - -$(RM) "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" - -$(RM) "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" - -$(RM) "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" - -$(RM) "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" - -$(RM) "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" - -$(RM) "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" - -$(RM) "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" - -$(RM) "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Moters_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispensers_EEPROM_MUX\Disp_EEPROM_MUX.obj" - -$(RM) "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_I2C\NFC_I2C.obj" "Drivers\I2C_Communication\RFID_NFC\PN7150\PN7150.obj" "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" - -$(RM) "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" - -$(RM) "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" + -$(RM) "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" "Communication\PMR\Printing\JobSegment.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" + -$(RM) "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_I2C\NFC_I2C.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_I2C\Test_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\PN7150\PN7150.obj" "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" + -$(RM) "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" "Modules\Stubs_Handler\Stub_TempSensor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" "Communication\PMR\Connection\DisconnectResponse.pb-c.d" - -$(RM) "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" - -$(RM) "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" - -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" - -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" - -$(RM) "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" - -$(RM) "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" - -$(RM) "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" - -$(RM) "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" - -$(RM) "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" - -$(RM) "Drivers\FPGA\Moters_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispensers_EEPROM_MUX\Disp_EEPROM_MUX.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\RFID_NFC\NFC_I2C\NFC_I2C.d" "Drivers\I2C_Communication\RFID_NFC\PN7150\PN7150.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" - -$(RM) "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" - -$(RM) "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" - -$(RM) "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -$(RM) "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" + -$(RM) "Communication\PMR\Printing\AbortJobResponse.pb-c.d" "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" + -$(RM) "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" + -$(RM) "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\I2C.d" + -$(RM) "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\RFID_NFC\NFC_I2C\NFC_I2C.d" "Drivers\I2C_Communication\RFID_NFC\NFC_I2C\Test_NFC.d" "Drivers\I2C_Communication\RFID_NFC\PN7150\PN7150.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\Safety.d" + -$(RM) "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" -@echo 'Finished clean' -@echo ' ' @@ -699,7 +715,7 @@ pre-build: -@echo ' ' post-build: - -"C:/ti/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS/bin/armofd" "C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS/bin/armhex" "C:/ti/ccsv7/utils/tiobj2bin/mkhex4bin" + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" -@echo ' ' .PHONY: all clean dependents diff --git a/Software/Embedded_SW/Embedded/debug_w_pmr/sources.mk b/Software/Embedded_SW/Embedded/debug_w_pmr/sources.mk index 20fa167ed..0a0f2f4dc 100644 --- a/Software/Embedded_SW/Embedded/debug_w_pmr/sources.mk +++ b/Software/Embedded_SW/Embedded/debug_w_pmr/sources.mk @@ -148,13 +148,15 @@ Drivers/FPGA/FPGA_GPIO \ Drivers/FPGA/FPGA_INTERRUPTS \ Drivers/FPGA/Full_Vme \ Drivers/FPGA/Full_Vme/ispvme \ -Drivers/FPGA/Moters_Driver \ +Drivers/FPGA/Motors_Driver \ Drivers/Flash_Memory/FATFS \ Drivers/Flash_Memory \ Drivers/Heater \ Drivers/I2C_Communication/ADC_MUX \ Drivers/I2C_Communication/DAC \ -Drivers/I2C_Communication/Dispensers_EEPROM_MUX \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ Drivers/I2C_Communication \ Drivers/I2C_Communication/RFID_NFC/NFC_I2C \ Drivers/I2C_Communication/RFID_NFC/PN7150 \ diff --git a/Software/Embedded_SW/Embedded/debug_w_pmr/subdir_rules.mk b/Software/Embedded_SW/Embedded/debug_w_pmr/subdir_rules.mk index 31c7e347f..c9da089bb 100644 --- a/Software/Embedded_SW/Embedded/debug_w_pmr/subdir_rules.mk +++ b/Software/Embedded_SW/Embedded/debug_w_pmr/subdir_rules.mk @@ -6,13 +6,13 @@ SHELL = cmd.exe # Each subdirectory must supply rules for building sources it contributes build-306001487: - @$(MAKE) --no-print-directory -Onone -f subdir_rules.mk build-306001487-inproc + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc build-306001487-inproc: ../Embedded.cfg - @echo 'Building file: "$<"' + @echo 'Building file: $<' @echo 'Invoking: XDCtools' - "C:/ti/xdctools_3_32_02_25_core/xs" --xdcpath="C:/ti/TivaWare_C_Series-2.1.2.111;C:/ti/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS" --compileOptions "-mv7M4 --code_state=16 --float_support=FPv4SPD16 -me" "$<" - @echo 'Finished building: "$<"' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "-mv7M4 --code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' @echo ' ' configPkg/linker.cmd: build-306001487 ../Embedded.cfg @@ -20,17 +20,17 @@ configPkg/compiler.opt: build-306001487 configPkg/: build-306001487 Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: "$<"' + @echo 'Building file: $<' @echo 'Invoking: ARM Compiler' - "C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="/products/TivaWare_C_Series-2.1.1.71b" --include_path="/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="/products/tidrivers_tivac_2_16_00_08" --include_path="C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS/include" --define=ENABLE_LFN --define=DEBUG_TEST_FUNCTIONS --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: "$<"' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/EmbeddedParameters" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --define=ENABLE_LFN --define=DEBUG_TEST_FUNCTIONS --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' @echo ' ' delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: "$<"' + @echo 'Building file: $<' @echo 'Invoking: ARM Compiler' - "C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="/products/TivaWare_C_Series-2.1.1.71b" --include_path="/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="/products/tidrivers_tivac_2_16_00_08" --include_path="C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS/include" --define=ENABLE_LFN --define=DEBUG_TEST_FUNCTIONS --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: "$<"' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/EmbeddedParameters" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --define=ENABLE_LFN --define=DEBUG_TEST_FUNCTIONS --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' @echo ' ' diff --git a/Software/Embedded_SW/Embedded/src/sysbios/sysbios.aem4f b/Software/Embedded_SW/Embedded/src/sysbios/sysbios.aem4f Binary files differindex 6aabbbe3b..117dea776 100644 --- a/Software/Embedded_SW/Embedded/src/sysbios/sysbios.aem4f +++ b/Software/Embedded_SW/Embedded/src/sysbios/sysbios.aem4f |
