This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMS320F280049C: Interrupt_IllegalOperationHandler occurs when writing data to flash using TI FlashApi

Part Number: TMS320F280049C
Other Parts Discussed in Thread: C2000WARE

Interrupt_IllegalOperationHandler ITRAP occurs when trying to write data to the Flash. At least when calling the function Fapi_setActiveFlashBank.

With some debugging I came to the point that when I call the function with setting the

  • Compiler Opt Lvl = off

or

  • Stack usage from 0x300 to 0x200


the problem no longer occurs, which makes me suspect that the error occurs depending on where the code is placed in memory. Because I think the issues I pointed out above behave like I put more or less data in memory and I got an offset and every time I reach some sections in memory the error occurs.


To avoid a lot of debugging in the wrong direction, I would like to know from your experiences and if there are any phenomena that are known regarding the TI FlashAPI.

  • Kai,

    Are you executing the flash API from flash or RAM? As mentioned in the flash API guide, it should not be executed from the flash bank on which the flash erase/program operations are targeted. 

    Please check the flash API usage example in the C2000Ware (C2000Ware_3_04_00_00\driverlib\f28004x\examples\flash\flashapi_ex1_program_autoecc) - it will copy the flash API from flash to RAM before calling any flash API functions.  Check the linker cmd file used - you will notice that the flash API is mapped to flash for load and RAM for run.

    Flash API FAQ page: https://e2e.ti.com/support/microcontrollers/c2000-microcontrollers-group/c2000/f/c2000-microcontrollers-forum/951668/faq-faq-on-flash-api-usage-for-c2000-devices 

    Thanks and regards,

    Vamsi

  • The function that calls the FlashAPI functions is transferred to the Ram by means of

    #pragma CODE_SECTION(function_name, ".TI.ramfunc");

    For better understanding I have inserted the desired linker cmd file here

    MEMORY
    {
    PAGE 0 :
       BEGIN           	: origin = 0x083000, length = 0x000002
       APPHDR			: origin = 0x083002, length = 0x00000C
       SVNREV			: origin = 0x083010, length = 0x20
       RESET            : origin = 0x3FFFC0, length = 0x000002
       RAMLS4_7         : origin = 0x00A000, length = 0x002000
    
       /* Flash sectors */
       /* BANK 0 */
       /* sectors 0,1,2 are reserved for CAN bootloader code */
       FLASH_BANK0_SEC0_RSVD   : origin = 0x08000E, length = 0x000FF2	/* on-chip Flash */
       FLASH_BANK0_SEC1_RSVD   : origin = 0x081000, length = 0x001000	/* on-chip Flash */
       FLASH_BANK0_SEC2_RSVD   : origin = 0x082000, length = 0x001000	/* on-chip Flash */
       /* application code can start up from here */
       /* this is after the reserved space for the application header */
       FLASHB0_SA		: origin = 0x083030, length = 0x00CFD0		/* on-chip Flash */
       FLASHB1_SA		: origin = 0x092000, length = 0x008000		/* on-chip Flash */
       FLASH_INFO		: origin = 0x090000, length = 0x002000  	/* reserved for Nvm */
    
    
    PAGE 1 :
       BOOT_RSVD        : origin = 0x000002, length = 0x0000F3      /* Part of M0, BOOT rom will use this for stack */
       RAMM0           	: origin = 0x0000F5, length = 0x00040B
       RAMM1           	: origin = 0x000500, length = 0x0002FF
    
       RAMGS0_A         : origin = 0x00C000, length = 0x003000
    
       RAMLS0_TAGS      : origin = 0x008000, length = 0x000004
       RAMLS0_1         : origin = 0x008004, length = 0x000FFC		/* Can't be used, reserved for FAST object */
       RAMLS2_3         : origin = 0x009100, length = 0x000F00		/* */
    
       CLA1MSGRAMLOW    : origin = 0x001480, length = 0x000080
       CLA1MSGRAMHIGH   : origin = 0x001500, length = 0x000080
    
    }
    
    SECTIONS
    {
       .TI.ramfunc      : LOAD = FLASHB0_SA,
                          RUN = RAMLS4_7,
                          LOAD_START(_RamfuncsLoadStart),
                          LOAD_SIZE(_RamfuncsLoadSize),
                          LOAD_END(_RamfuncsLoadEnd),
                          RUN_START(_RamfuncsRunStart),
                          RUN_SIZE(_RamfuncsRunSize),
                          RUN_END(_RamfuncsRunEnd),
                          PAGE = 0, ALIGN(4)
    
    
       codestart        : > BEGIN,     		 PAGE = 0, ALIGN(4), { __APP_ENTRY = .;}
       appheader		: > APPHDR,	  		 PAGE = 0
       svnrev			: > SVNREV,			 PAGE = 0
       .text            : > FLASHB0_SA,      PAGE = 0, ALIGN(4)
       .cinit           : > FLASHB0_SA,      PAGE = 0, ALIGN(4)
       .pinit           : > FLASHB0_SA,      PAGE = 0, ALIGN(4)
       .switch          : > FLASHB0_SA,      PAGE = 0, ALIGN(4)
       .econst          : > FLASHB0_SA,      PAGE = 0, ALIGN(4)
    
       .reset           : > RESET,           PAGE = 0, TYPE = DSECT
       .cio             : > RAMLS4_7,        PAGE = 0
       .stack           : > RAMM0 | RAMM1,   PAGE = 1
       .ebss            : >> RAMGS0_A | RAMLS0_1 | RAMLS2_3,  PAGE = 1
       .esysmem         : > RAMGS0_A,        PAGE = 1
    
    /* Cla1RegsFile     : > CLA1,            PAGE = 1	*/ /* Defined in header .cmd file*/
    
       .bss_cla         : > RAMLS2_3,        PAGE = 1
    
       Cla1Prog         : > FLASHB0_SA,
                          RUN = RAMLS4_7,
                          LOAD_START(_Cla1ProgLoadStart),
                          RUN_START(_Cla1ProgRunStart),
                          LOAD_SIZE(_Cla1ProgLoadSize),
                          PAGE = 0, ALIGN(4)
    
       Cla1Prog2        : > FLASHB0_SA,
                          RUN = RAMLS4_7,
                          LOAD_START(_Cla1Prog2LoadStart),
                          RUN_START(_Cla1Prog2RunStart),
                          LOAD_SIZE(_Cla1Prog2LoadSize),
                          PAGE = 0, ALIGN(4)
    
       Cla1ToCpuMsgRAM  : > CLA1MSGRAMLOW,   PAGE = 1
       CpuToCla1MsgRAM  : > CLA1MSGRAMHIGH,  PAGE = 1
    
       .const_cla       : > FLASHB0_SA,
                          RUN = RAMLS4_7,
                          RUN_START(_Cla1ConstRunStart),
                          LOAD_START(_Cla1ConstLoadStart),
                          LOAD_SIZE(_Cla1ConstLoadSize),
                          PAGE = 0
    
       .scratchpad      : > RAMLS2_3,        PAGE = 1
    }
    
    SECTIONS
    {
    	sysctrl_data	: > RAMM1 | RAMLS2_3,   PAGE = 1
    	ctrl_data		: > RAMM1 | RAMLS2_3,   PAGE = 1
    	est_data		: > RAMGS0_A,           PAGE = 1
    
    }
    
    SECTIONS
    {
    	datalog_data	: > RAMGS0_A,           PAGE = 1
    	graph_data		: > RAMGS0_A,           PAGE = 1
    }

    Thanks for pointing out the FlashAPI post. I was already aware of this and also the documentation. As I said, the problem can be temporarily solved by changing the stack usage or something similar that affects the code placement in memory.

  • Kai,

    Are you using the ROM flash API?  

    If not, where is the flash API located - in flash or RAM?  I did not see flash API in your linker cmd file and hence asking.

    Thanks and regards,

    Vamsi

  • We currently using the FlashAPI from the ROM. So, i think that it is not necessary to put the memory for it in the linker cmd file, right?

    Regards
    Kai

  • Kai,

    Yes, no need to place the API in RAM then.

    Thanks and regards,

    Vamsi

  • Okay, then what is the cause of the error condition?

  • Kai,

    Can you share your map file?

    Executing Fapi_setActiveFlashBank() in ROM should not cause ITRAP.

    Thanks and regards,
    Vamsi

  • Yes, of course. I would like to show both map files. The OK.map will work as suspected. The NOK.map will not work. The only difference between the two builds was the stack usage setting. OK = 0x200 & NOK = 0x300.

    OK.map =

    ******************************************************************************
                 TMS320C2000 Linker PC v20.2.1                     
    ******************************************************************************
    >> Linked Thu Sep  2 10:10:41 2021
    
    OUTPUT FILE NAME:   <HVA.out>
    ENTRY POINT SYMBOL: "_c_int00"  address: 00088d60
    
    
    MEMORY CONFIGURATION
    
             name            origin    length      used     unused   attr    fill
    ----------------------  --------  ---------  --------  --------  ----  --------
    PAGE 0:
      patch_EST_Angle_run_p 00009000   0000000e  00000000  0000000e  RWIX
      patch_EST_Dir_run_pat 0000900e   0000000e  00000000  0000000e  RWIX
      patch_EST_Eab_run_pat 0000901c   0000000e  00000000  0000000e  RWIX
      patch_EST_Flux_ab_est 0000902a   0000000e  00000000  0000000e  RWIX
      patch_EST_Flux_dq_run 00009038   0000000e  00000000  0000000e  RWIX
      patch_EST_Flux_run_pa 00009046   0000000e  00000000  0000000e  RWIX
      patch_EST_Freq_run_pa 00009054   0000000e  00000000  0000000e  RWIX
      patch_EST_Iab_run_pat 00009062   0000000e  00000000  0000000e  RWIX
      patch_EST_Idq_run_pat 00009070   0000000e  00000000  0000000e  RWIX
      patch_EST_Ls_run_patc 0000907e   0000000e  00000000  0000000e  RWIX
      patch_EST_OneOverDcBu 0000908c   0000000e  00000000  0000000e  RWIX
      patch_EST_Rr_run_patc 0000909a   0000000e  00000000  0000000e  RWIX
      patch_EST_RsOnLine_ru 000090a8   0000000e  00000000  0000000e  RWIX
      patch_EST_Rs_run_patc 000090b6   0000000e  00000000  0000000e  RWIX
      patch_EST_Vab_run_pat 000090c4   0000000e  00000000  0000000e  RWIX
      patch_EST_Vdq_run_pat 000090d2   0000000e  00000000  0000000e  RWIX
      patch_EST_runEst_patc 000090e0   0000000e  00000000  0000000e  RWIX
      RAMLS4_7              0000a000   00002000  00001331  00000ccf  RWIX
      FLASH_BANK0_SEC0_RSVD 0008000e   00000ff2  00000000  00000ff2  RWIX
      FLASH_BANK0_SEC1_RSVD 00081000   00001000  00000000  00001000  RWIX
      FLASH_BANK0_SEC2_RSVD 00082000   00001000  00000000  00001000  RWIX
      BEGIN                 00083000   00000002  00000002  00000000  RWIX
      APPHDR                00083002   0000000c  0000000c  00000000  RWIX
      SVNREV                00083010   00000020  00000002  0000001e  RWIX
      FLASHB0_SA            00083030   0000cfd0  00008aee  000044e2  RWIX
      FLASH_INFO            00090000   00002000  00000000  00002000  RWIX
      FLASHB1_SA            00092000   00008000  00000000  00008000  RWIX
      RESET                 003fffc0   00000002  00000000  00000002  RWIX
    
    PAGE 1:
      BOOT_RSVD             00000002   000000f3  00000000  000000f3  RWIX
      RAMM0                 000000f5   0000040b  00000200  0000020b  RWIX
      RAMM1                 00000500   000002ff  0000026a  00000095  RWIX
      CLA1MSGRAMLOW         00001480   00000080  00000000  00000080  RWIX
      CLA1MSGRAMHIGH        00001500   00000080  00000000  00000080  RWIX
      RAMLS0_TAGS           00008000   00000004  00000000  00000004  RWIX
      RAMLS0_1              00008004   00000ffc  00000000  00000ffc  RWIX
      RAMLS2_3              00009100   00000f00  00000000  00000f00  RWIX
      RAMGS0_A              0000c000   00003000  00002612  000009ee  RWIX
    
    
    SECTION ALLOCATION MAP
    
     output                                  attributes/
    section   page    origin      length       input sections
    --------  ----  ----------  ----------   ----------------
    codestart 
    *          0    00083000    00000002     
                      00083000    00000002     f28004x_codestartbranch.obj (codestart)
    
    appheader 
    *          0    00083002    0000000c     
                      00083002    0000000c     main.obj (appheader:retain)
    
    svnrev     0    00083010    00000002     
                      00083010    00000002     main.obj (svnrev:retain)
    
    .TI.ramfunc 
    *          0    00083030    00001331     RUN ADDR = 0000a000
                      00083030    00000670     AppT1.obj (.TI.ramfunc:_AppT1)
                      000836a0    00000370     app.obj (.TI.ramfunc:_mainISR)
                      00083a10    000001bb     AppT1.obj (.TI.ramfunc:_FOC)
                      00083bcb    00000179     AppT1.obj (.TI.ramfunc:_CurrentControl)
                      00083d44    00000175     AppT1.obj (.TI.ramfunc:_SpeedControl)
                      00083eb9    0000011d     AppT1.obj (.TI.ramfunc:_Hfi)
                      00083fd6    000000df     AppT1.obj (.TI.ramfunc:_PostProcessing)
                      000840b5    00000086     app.obj (.TI.ramfunc:_MOTOR_rms_sampling)
                      0008413b    00000070     AppT1.obj (.TI.ramfunc:_GenerateHfCarrier)
                      000841ab    00000045     flash.obj (.TI.ramfunc:_Flash_initModule)
                      000841f0    00000041     AppT1.obj (.TI.ramfunc:_FilterAlphaCurrentDoubleCarrier)
                      00084231    00000041     AppT1.obj (.TI.ramfunc:_FilterAlphaCurrentSingleCarrier)
                      00084272    00000041     AppT1.obj (.TI.ramfunc:_FilterBetaCurrentDoubleCarrier)
                      000842b3    00000041     AppT1.obj (.TI.ramfunc:_FilterBetaCurrentSingleCarrier)
                      000842f4    0000003d     AppT1.obj (.TI.ramfunc:_AngleDelayCompensation)
                      00084331    0000002c     runEstimator.obj (.TI.ramfunc:_runEstimator)
                      0008435d    00000004     sysctl.obj (.TI.ramfunc)
    
    .text      0    00084364    000065f7     
                      00084364    00000a32     AppT3.obj (.text:_AppT3)
                      00084d96    0000053c     AppT2.obj (.text:_AppT2)
                      000852d2    0000046c     user.obj (.text:_USER_setParams)
                      0008573e    00000400     hal.obj (.text:_HAL_setupGpios)
                      00085b3e    000003dd     app.obj (.text:_proj_lab08_loop)
                      00085f1b    00000381     rts2800_fpu32.lib : e_powf.c.obj (.text)
                      0008629c    0000037d     app.obj (.text:_proj_lab08_init)
                      00086619    00000294     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:__Fapi_setupFlashStateMachine)
                      000868ad    00000284     XcpBasic.obj (.text:_XcpCommand)
                      00086b31    00000001     xcp_appl.obj (.text:_ApplXcpInterruptDisable)
                      00086b32    000001ef     c_UDSLight.obj (.text:_uds_serviceReadDataByIdentifier)
                      00086d21    000001e0     F021_API_F28004x_FPU32.lib : Program.obj (.text:_Fapi_issueProgrammingCommand)
                      00086f01    00000175     hal.obj (.text:_HAL_setupPwms)
                      00087076    00000160     app.obj (.text:_proj_lab08_instaSpin_ReInit)
                      000871d6    00000151     runEstimator.obj (.text:_runSelftest)
                      00087327    0000013b     app.obj (.text:_MOTOR_rms_calculation)
                      00087462    0000012b     rts2800_fpu32.lib : e_logf.c.obj (.text)
                      0008758d    00000001     xcp_appl.obj (.text:_ApplXcpInterruptEnable)
                      0008758e    00000106     runEstimator.obj (.text:_runOffsetsCalculation)
                      00087694    000000da     RsOffsetCalibration.obj (.text:_Calib)
                      0008776e    000000d8     hal.obj (.text:_HAL_setupAdcs)
                      00087846    000000d7     hal.obj (.text:_HAL_init)
                      0008791d    000000c9     CanNm_PB.obj (.text:_CanNmPB_SetPDU)
                      000879e6    000000bf     app.obj (.text:_MOTOR_variables_update)
                      00087aa5    000000ad     XcpBasic.obj (.text:_XcpEvent)
                      00087b52    000000aa     hal.obj (.text:_HAL_setupPwmDacs)
                      00087bfc    000000a9     CanNm_PB.obj (.text:_CanNmPB_GetPDU)
                      00087ca5    00000001     Crc.obj (.text:_Crc_Initialize)
                      00087ca6    000000a8     nvm.obj (.text:_InitNvM)
                      00087d4e    000000a7     F021_API_F28004x_FPU32.lib : Init.obj (.text:_Fapi_initializeAPI)
                      00087df5    0000009e     can.obj (.text:_CAN_setupMessageObject)
                      00087e93    0000009e     app.obj (.text:_MOTOR_variables_init)
                      00087f31    0000009d     dma.obj (.text:_DMA_configMode)
                      00087fce    0000009a     sysctl.obj (.text:_SysCtl_isPLLValid)
                      00088068    00000096     Histogram.obj (.text:_UpdateHistogramData2D)
                      000880fe    00000094     hal.obj (.text:_HAL_setupSciA)
                      00088192    0000008b     sysctl.obj (.text:_SysCtl_setClock)
                      0008821d    00000089     c_cansig.obj (.text:_c_sig_copyTxMessage)
                      000882a6    00000088     rts2800_fpu32.lib : fs_div28.asm.obj (.text)
                      0008832e    00000081     nvm.obj (.text:_NvMUpdate)
                      000883af    00000081     Histogram.obj (.text:_UpdateHistogramData1D)
                      00088430    00000080     F021_API_F28004x_FPU32.lib : Read.obj (.text:__Fapi_loopRegionForValue)
                      000884b0    0000007e     c_cansig.obj (.text:_c_sig_copySignalToBuffer)
                      0008852e    0000007b     cputimers.obj (.text:_Appl_cpuTimers_init)
                      000885a9    0000007b     hal.obj (.text:_HAL_setParams)
                      00088624    0000007a     interrupt.obj (.text:_Interrupt_clearIFR)
                      0008869e    00000075     c_UDSLight.obj (.text:_uds_serviceWriteDataByIdentifier)
                      00088713    00000073     eepManager.obj (.text:_Eep_WriteData16bit)
                      00088786    0000006f     eepManager.obj (.text:_Eep_ReadData16bit)
                      000887f5    00000001     c_cansig_cfg.obj (.text:_c_sig_MCU_RomCorrupted)
                      000887f6    0000006f     c_cansig.obj (.text:_c_sig_copyRxMessage)
                      00088865    0000006d     c_cansig.obj (.text:_c_sig_copySignalFromBuffer)
                      000888d2    0000006c     xcp_appl.obj (.text:_ApplXcpGetSeed)
                      0008893e    0000006b     Measure.obj (.text:_mea_init)
                      000889a9    00000067     eepManager.obj (.text:_eep_writeData)
                      00088a10    00000066     main.obj (.text:_InitCan)
                      00088a76    00000064     F021_API_F28004x_FPU32.lib : Async.obj (.text:_Fapi_issueAsyncCommandWithAddress)
                      00088ada    00000063     c_UDSLight.obj (.text:_uds_serviceRoutineControl)
                      00088b3d    00000060     eepManager.obj (.text:_eep_readData)
                      00088b9d    0000005f     XcpBasic.obj (.text:_XcpAllocMemory)
                      00088bfc    0000005c     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:_Fapi_setupEepromSectorEnable)
                      00088c58    0000005a     AppT1.obj (.text:_Tab1DS3I2T3126_e)
                      00088cb2    00000057     rts2800_fpu32.lib : s_floorf.c.obj (.text)
                      00088d09    00000057                       : s_scalbnf.c.obj (.text)
                      00088d60    00000056                       : boot28.asm.obj (.text)
                      00088db6    00000052     F021_API_F28004x_FPU32.lib : Read.obj (.text:__Fapi_checkRegionForValue)
                      00088e08    00000052     app.obj (.text:_overCurrPeakISR)
                      00088e5a    0000004d     c_candriver.obj (.text:_c_drv_configureMailboxes)
                      00088ea7    0000004d     Measure.obj (.text:_mea_calcSupplyCurrent)
                      00088ef4    0000004b     AppT3.obj (.text:_Tab1DS3I4T3126_c)
                      00088f3f    00000049     AppT4.obj (.text:_AppT4)
                      00088f88    00000048     AppT5.obj (.text:_AppT5)
                      00088fd0    00000048     interrupt.obj (.text:_Interrupt_disable)
                      00089018    00000047     c_cansig.obj (.text:_c_sig_init)
                      0008905f    00000046     can.obj (.text:_CAN_readMessage)
                      000890a5    00000046     CanNm_PB.obj (.text:_CanNmPB_Statemachine)
                      000890eb    00000045     adc.obj (.text:_ADC_setVREF)
                      00089130    00000045     Benchmark.obj (.text:_GetDelta)
                      00089175    00000045     hal.obj (.text:_HAL_setupTimers)
                      000891ba    00000044     hal.obj (.text:_HAL_setupSpiB)
                      000891fe    00000044     os.obj (.text:_os_executeTasks)
                      00089242    00000043     AppT1.obj (.text:_Tab1DS0I2T3126_e)
                      00089285    00000043     cputimers.obj (.text:_initCPUTimers)
                      000892c8    00000041     hal.obj (.text:_HAL_setupFaults)
                      00089309    00000041     interrupt.obj (.text:_Interrupt_initModule)
                      0008934a    00000041     nvm.obj (.text:_Set_Nvm_BootIds)
                      0008938b    0000003f     gpio.obj (.text:_GPIO_setPadConfig)
                      000893ca    0000003f     nvm.obj (.text:_NvMInitTable2D)
                      00089409    0000003e     c_UDSLight.obj (.text:_uds_evaluateRequest)
                      00089447    0000003c     hal.obj (.text:_HAL_setupDlogDMA)
                      00089483    0000003c     os.obj (.text:_os_event1000ms)
                      000894bf    0000003b     XcpBasic.obj (.text:_XcpReadMta)
                      000894fa    00000038     movingAvg.obj (.text:_mavg_addValue)
                      00089532    00000038     Measure.obj (.text:_mea_calcConsumedPower)
                      0008956a    00000035     cputimers.obj (.text:_configCPUTimer)
                      0008959f    00000034     can.obj (.text:_CAN_setBitTiming)
                      000895d3    00000034     interrupt.obj (.text:_Interrupt_enable)
                      00089607    00000034     Measure.obj (.text:_mea_filterScaleSpeed)
                      0008963b    00000033     can.obj (.text:_CAN_sendMessage)
                      0008966e    00000033     Benchmark.obj (.text:_GetMaxTaskLoad_InPercent)
                      000896a1    00000033     Benchmark.obj (.text:_GetMeanTaskLoad_InPercent)
                      000896d4    00000032     c_candriver.obj (.text:_c_drv_receiveFrame)
                      00089706    00000030     gpio.obj (.text:_GPIO_setPinConfig)
                      00089736    00000030     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:__Fapi_issueFsmCommand)
                      00089766    0000002f                                : FlashStateMachine.obj (.text:_Fapi_setActiveFlashBank)
                      00089795    0000002f     hal.obj (.text:_HAL_setupPeripheralClks)
                      000897c4    0000002d     Rte.obj (.text:_SwitchPowerstage)
                      000897f1    0000002d     interpolation.obj (.text:_ipl_interpolate)
                      0008981e    0000002d     os.obj (.text:_os_event1ms)
                      0008984b    0000002c     F021_API_F28004x_FPU32.lib : Utilities.obj (.text:_Fapi_calculateFletcherChecksum)
                      00089877    0000002c     sysctl.obj (.text:_SysCtl_selectXTAL)
                      000898a3    0000002b     xcp_appl.obj (.text:_ApplXcpUnlock)
                      000898ce    0000002b     XcpBasic.obj (.text:_XcpAllocOdtEntry)
                      000898f9    0000002b     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:__Fapi_setupSectorsForWrite)
                      00089924    0000002b     eepManager.obj (.text:_eep_initSPI)
                      0008994f    0000002b     os.obj (.text:_os_event100ms)
                      0008997a    0000002a     sysctl.obj (.text:_SysCtl_selectOscSource)
                      000899a4    0000002a     xcp_transport_layer.obj (.text:_XCP_TX)
                      000899ce    0000002a     F021_API_F28004x_FPU32.lib : Utilities.obj (.text:__Fapi_divideUnsignedLong)
                      000899f8    0000002a     rts2800_fpu32.lib : l_div28.asm.obj (.text)
                      00089a22    00000029     nvm.obj (.text:_NvMInitTable1D)
                      00089a4b    00000029     interpolation.obj (.text:_ipl_functionValue)
                      00089a74    00000029     rts2800_fpu32.lib : exit.c.obj (.text)
                      00089a9d    00000028     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:_Fapi_setupBankSectorEnable)
                      00089ac5    00000027     CanNm_PB.obj (.text:_CanNmPB_ExecTimer)
                      00089aec    00000026     Measure.obj (.text:_mea_convertPCBTempSignalToCelsius)
                      00089b12    00000026     rts2800_fpu32.lib : e_sqrtf.c.obj (.text)
                      00089b38    00000025     HwIoConnectorLv.obj (.text:_HwIoConnectorLv_InitAIOs)
                      00089b5d    00000024     main.obj (.text:_InitWatchdog)
                      00089b81    00000024     eepManager.obj (.text:_eep_readStatusRegister)
                      00089ba5    00000024     rts2800_fpu32.lib : cpy_tbl.c.obj (.text)
                      00089bc9    00000023     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:_Fapi_isAddressEcc)
                      00089bec    00000023     main.obj (.text:_InitOffsets)
                      00089c0f    00000023     RsOffsetCalibration.obj (.text:_ReloadOffsetValues)
                      00089c32    00000023     nvm.obj (.text:_WriteNvM)
                      00089c55    00000023     xcp_transport_layer.obj (.text:_XCPonCAN_RX)
                      00089c78    00000022     nvm.obj (.text:_Array2Struct)
                      00089c9a    00000022     gpio.obj (.text:_GPIO_setMasterCore)
                      00089cbc    00000022     gpio.obj (.text:_GPIO_setQualificationMode)
                      00089cde    00000022     nvm.obj (.text:_Struct2Array)
                      00089d00    00000022     sysctl.obj (.text:_SysCtl_pollX1Counter)
                      00089d22    00000022     XcpBasic.obj (.text:_XcpSendDtoFromQueue)
                      00089d44    00000021     CanNm_PB.obj (.text:_CanNmPB_PrepareBusSleepMode)
                      00089d65    00000021     AppT3.obj (.text:_Cc1_MoCoManager_node_fcn3)
                      00089d86    00000021     gpio.obj (.text:_GPIO_setAnalogMode)
                      00089da7    00000021     sci.obj (.text:_SCI_setConfig)
                      00089dc8    00000021     XcpBasic.obj (.text:_XcpSendCrm)
                      00089de9    00000021     XcpBasic.obj (.text:_XcpStopAllSelectedDaq)
                      00089e0a    00000021     XcpBasic.obj (.text:_XcpStopDaq)
                      00089e2b    00000021     pt1_float.obj (.text:_pt1_float_addValue)
                      00089e4c    00000020     gpio.obj (.text:_GPIO_setDirectionMode)
                      00089e6c    00000020     gpio.obj (.text:_GPIO_setInterruptPin)
                      00089e8c    00000020     c_cansig.obj (.text:_c_sig_setTxSignal)
                      00089eac    00000020     main.obj (.text:_main)
                      00089ecc    0000001f     spi.obj (.text:_SPI_setConfig)
                      00089eeb    0000001f     XcpBasic.obj (.text:_XcpAllocOdt)
                      00089f0a    0000001f     xcp_appl.obj (.text:_XcpMemCpy_If)
                      00089f29    0000001f     Measure.obj (.text:_mea_calcMechMotorPower)
                      00089f48    0000001f     rts2800_fpu32.lib : fd_tol28.asm.obj (.text)
                      00089f67    0000001e     Crc.obj (.text:_Crc_Calculate16)
                      00089f85    0000001e     hal.obj (.text:_HAL_setupSpiA)
                      00089fa3    0000001e     spi.obj (.text:_SPI_clearInterruptStatus)
                      00089fc1    0000001e     sysctl.obj (.text:_SysCtl_selectXTALSingleEnded)
                      00089fdf    0000001d     c_UDSLight.obj (.text:_GetByte)
                      00089ffc    0000001d     XcpBasic.obj (.text:_XcpStartAllSelectedDaq)
                      0008a019    0000001d     c_candriver.obj (.text:_c_drv_sendFrame)
                      0008a036    0000001d     Measure.obj (.text:_mea_sampleAndFilterTemperatureIGBT)
                      0008a053    0000001d     c_UDSLight.obj (.text:_uds_completePendingServices)
                      0008a070    0000001d     rts2800_fpu32.lib : memcpy.c.obj (.text)
                      0008a08d    0000001c     Histogram.obj (.text:_DeleteHistogramData)
                      0008a0a9    0000001c     countdown.obj (.text:_ctd_isElapsed)
                      0008a0c5    0000001c     pt1_float.obj (.text:_pt1_float_init)
                      0008a0e1    0000001b     gpio.obj (.text:_GPIO_setQualificationPeriod)
                      0008a0fc    0000001b     Measure.obj (.text:_mea_sendSignalsToCAN)
                      0008a117    0000001a     CanNm_PB.obj (.text:_CanNmPB_BusSleepMode)
                      0008a131    0000001a     CanNm_PB.obj (.text:_CanNmPB_Init)
                      0008a14b    0000001a     sci.obj (.text:_SCI_disableInterrupt)
                      0008a165    0000001a     sci.obj (.text:_SCI_enableInterrupt)
                      0008a17f    0000001a     c_cansig_cfg.obj (.text:_c_sig_setActualSpeed)
                      0008a199    00000019     xcp_appl.obj (.text:_ApplXcpSend)
                      0008a1b2    00000019     Measure.obj (.text:_mea_sampleAndFilterTemperaturePCB)
                      0008a1cb    00000019     os.obj (.text:_os_event50ms)
                      0008a1e4    00000019     rts2800_fpu32.lib : args_main.c.obj (.text)
                      0008a1fd    00000018     AppT3.obj (.text:_Cc3_NormalOperationMode_ex)
                      0008a215    00000018     Histogram.obj (.text:_InitHistograms)
                      0008a22d    00000018     XcpBasic.obj (.text:_XcpFreeDaq)
                      0008a245    00000018     os.obj (.text:_os_event10ms)
                      0008a25d    00000017     can.obj (.text:_CAN_initModule)
                      0008a274    00000017     eepManager.obj (.text:_DisableWriteOperations)
                      0008a28b    00000017     eepManager.obj (.text:_EnableWriteOperations)
                      0008a2a2    00000017     hal.obj (.text:_HAL_enableAdcInts)
                      0008a2b9    00000017     interrupt.obj (.text:_Interrupt_initVectorTable)
                      0008a2d0    00000017     XcpBasic.obj (.text:_XcpStopAllDaq)
                      0008a2e7    00000017     c_cantask.obj (.text:_c_tsk_receiveFrames)
                      0008a2fe    00000017     cputimers.obj (.text:_cpuTimer0ISR)
                      0008a315    00000016     XcpBasic.obj (.text:_XcpSendCallBack)
                      0008a32b    00000016     c_UDSLight.obj (.text:_uds_serviceDiagnosticSessionControl)
                      0008a341    00000015     can.obj (.text:_CAN_writeDataReg)
                      0008a356    00000015     c_cantask.obj (.text:_c_tsk_sendOnce)
                      0008a36b    00000014     XcpBasic.obj (.text:_XcpWriteMta)
                      0008a37f    00000014     c_cansig_cfg.obj (.text:_c_sig_setActualVoltage)
                      0008a393    00000013     CanNm_PB.obj (.text:_CanNmPB_ReadySleepState)
                      0008a3a6    00000013     F021_API_F28004x_FPU32.lib : Read.obj (.text:_Fapi_flushPipeline)
                      0008a3b9    00000013     c_cansig_cfg.obj (.text:_c_sig_setStatusDevice)
                      0008a3cc    00000013     c_UDSLight.obj (.text:_uds_flashPrelude)
                      0008a3df    00000012     CanNm_PB.obj (.text:_CanNmPB_GetNetworkStateFromApplication)
                      0008a3f1    00000012     c_UDSLight.obj (.text:_uds_serviceECUReset)
                      0008a403    00000012     c_UDSLight.obj (.text:_uds_task)
                      0008a415    00000011     nvm.obj (.text:_CalcContCrc)
                      0008a426    00000011     graph.obj (.text:_GRAPH_DataPointerInit)
                      0008a437    00000011     Histogram.obj (.text:_GetHistStartAdress1D)
                      0008a448    00000011     hal.obj (.text:_HAL_setupGate)
                      0008a459    00000011     Measure.obj (.text:_mea_sampleAndFilterSupplyVoltage)
                      0008a46a    00000011     rts2800_fpu32.lib : s_copysignf.c.obj (.text)
                      0008a47b    00000010     CanNm_PB.obj (.text:_CanNmPB_NormalOperationState)
                      0008a48b    00000010     c_cansig_cfg.obj (.text:_c_sig_getSetpointLimpMode_rpm)
                      0008a49b    00000010     c_cansig_cfg.obj (.text:_c_sig_getSpeedSetpoint_rpm)
                      0008a4ab    00000010     c_cansig_cfg.obj (.text:_c_sig_setActualCurrent_100mA)
                      0008a4bb    00000010     cputimers.obj (.text:_cpuTimer1ISR)
                      0008a4cb    00000010     cputimers.obj (.text:_cpuTimer2ISR)
                      0008a4db    00000010     countdown.obj (.text:_ctd_startCountdown)
                      0008a4eb    0000000f     F021_API_F28004x_FPU32.lib : Verify.obj (.text:_Fapi_doVerify)
                      0008a4fa    0000000f                                : Utilities.obj (.text:__Fapi_scaleCycleValues)
                      0008a509    0000000f     c_cansig.obj (.text:_c_sig_isRxSignalUpToDate)
                      0008a518    0000000f     motorManager.obj (.text:_mot_isMotorPowered)
                      0008a527    0000000f     c_UDSLight.obj (.text:_uds_preparePosResponseDSC)
                      0008a536    0000000e     CanNm_PB.obj (.text:_CanNmPB_CheckPDURxConfirmation)
                      0008a544    0000000e     datalog.obj (.text:_DATALOG_init)
                      0008a552    0000000e     dma.obj (.text:_DMA_configAddresses)
                      0008a560    0000000e     dma.obj (.text:_DMA_configTransfer)
                      0008a56e    0000000e     XcpBasic.obj (.text:_XcpInit)
                      0008a57c    0000000e     XcpBasic.obj (.text:_XcpStartDaq)
                      0008a58a    0000000e     c_cansig.obj (.text:_c_sig_saturateTxSignal)
                      0008a598    0000000d     can.obj (.text:_CAN_readDataReg)
                      0008a5a5    0000000d     CanNm_PB.obj (.text:_CanNmPB_main)
                      0008a5b2    0000000d     AppT3.obj (.text:_Cc5_WaitForSetpoint_en)
                      0008a5bf    0000000d     Rte.obj (.text:_ReportPowerConsumption)
                      0008a5cc    0000000d     xcp_transport_layer.obj (.text:_XCPonUART_RX)
                      0008a5d9    0000000d     c_candriver.obj (.text:_c_drv_getReceivedOnce)
                      0008a5e6    0000000d     c_candriver.obj (.text:_c_drv_getRxIndication)
                      0008a5f3    0000000c     CanNm_PB.obj (.text:_CanNmPB_StartTimer)
                      0008a5ff    0000000c     AppT1.obj (.text:_Se85_Fast_OutputData)
                      0008a60b    0000000c     Benchmark.obj (.text:_WriteActualTime)
                      0008a617    0000000c     pt1.obj (.text:_pt1_init)
                      0008a623    0000000c     app.obj (.text:_trigOverCurrReset)
                      0008a62f    0000000b     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:_Fapi_checkFsmForReady)
                      0008a63a    0000000b     nvm.obj (.text:_Set_Nvm_CurrentOffsetW)
                      0008a645    0000000b     nvm.obj (.text:_Set_Nvm_VoltageOffsetU)
                      0008a650    0000000b     nvm.obj (.text:_Set_Nvm_VoltageOffsetV)
                      0008a65b    0000000b     nvm.obj (.text:_Set_Nvm_VoltageOffsetW)
                      0008a666    0000000b     XcpBasic.obj (.text:_XcpDisconnect)
                      0008a671    0000000b     F021_API_F28004x_FPU32.lib : Utilities.obj (.text:__Fapi_calculateOtpChecksum)
                      0008a67c    0000000b     c_cantask.obj (.text:_c_tsk_sendFrames10ms)
                      0008a687    0000000b     c_UDSLight.obj (.text:_uds_preparePosResponse)
                      0008a692    0000000a     CanNm_PB.obj (.text:_CanNmPB_RepeatMessageState)
                      0008a69c    0000000a     dma.obj (.text:_DMA_configBurst)
                      0008a6a6    0000000a     hal.obj (.text:_HAL_clearTimerFlag)
                      0008a6b0    0000000a     hal.obj (.text:_HAL_getTimerStatus)
                      0008a6ba    0000000a     main.obj (.text:_ResetIntoBootloader)
                      0008a6c4    0000000a     nvm.obj (.text:_Set_Nvm_CAN_IdOffset)
                      0008a6ce    0000000a     nvm.obj (.text:_Set_Nvm_DeliveryDate)
                      0008a6d8    0000000a     nvm.obj (.text:_Set_Nvm_HardwareVersion)
                      0008a6e2    0000000a     nvm.obj (.text:_Set_Nvm_SerialNumber)
                      0008a6ec    0000000a     c_UDSLight.obj (.text:_uds_prepareNegResponse)
                      0008a6f6    00000009     CanNm_PB.obj (.text:_CanNmPB_PowerOff)
                      0008a6ff    00000009     CanNm_PB.obj (.text:_CanNmPB_TxConfirmation)
                      0008a708    00000009     epwm.obj (.text:_EPWM_setEmulationMode)
                      0008a711    00000009     nvm.obj (.text:_Nvm_ImmediatelyWriteRequest)
                      0008a71a    00000009     c_candriver.obj (.text:_c_drv_clearRxIndication)
                      0008a723    00000009     c_cansig_cfg.obj (.text:_c_sig_getHeaterEnableFlag)
                      0008a72c    00000009     c_cansig.obj (.text:_c_sig_getRxSignal)
                      0008a735    00000009     c_cansig.obj (.text:_c_sig_setTxSignalNA)
                      0008a73e    00000009     Measure.obj (.text:_mea_sampleSlowSignals)
                      0008a747    00000009     c_UDSLight.obj (.text:_uds_init)
                      0008a750    00000009     rts2800_fpu32.lib : _lock.c.obj (.text)
                      0008a759    00000008     CanNm_PB.obj (.text:_CanNmPB_AckEnableSendFrames)
                      0008a761    00000008     Crc.obj (.text:_Crc_CalculateCrc16)
                      0008a769    00000008     runEstimator.obj (.text:_EstStoreIdRef)
                      0008a771    00000008     nvm.obj (.text:_Set_Nvm_CurrentOffsetV)
                      0008a779    00000008     xcp_appl.obj (.text:_XcpSendDto_If)
                      0008a781    00000008     c_cansig.obj (.text:_bitrange)
                      0008a789    00000008     c_candriver.obj (.text:_c_drv_getBuffer)
                      0008a791    00000008     c_candriver.obj (.text:_c_drv_setReceivedOnce)
                      0008a799    00000008     c_candriver.obj (.text:_c_drv_setRxIndication)
                      0008a7a1    00000008     movingAvg.obj (.text:_mavg_create)
                      0008a7a9    00000008     Measure.obj (.text:_mea_convertSemiTopTempToCelsius)
                      0008a7b1    00000008     Measure.obj (.text:_mea_getTemperatureIGBT_C)
                      0008a7b9    00000008     Measure.obj (.text:_mea_getTemperaturePCB_C)
                      0008a7c1    00000007     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:_Fapi_getFsmStatus)
                      0008a7c8    00000007     Histogram.obj (.text:_GetHistStartAdress2D)
                      0008a7cf    00000007     nvm.obj (.text:_Set_Nvm_CurrentOffsetU)
                      0008a7d6    00000007     os.obj (.text:_os_event5ms)
                      0008a7dd    00000006     cputimer.obj (.text:_CPUTimer_setEmulationMode)
                      0008a7e3    00000006     filter_fo.obj (.text:_FILTER_FO_setInitialConditions)
                      0008a7e9    00000006     OperatingHoursCounter.obj (.text:_IncOHCounter)
                      0008a7ef    00000006     XcpBasic.obj (.text:_XcpAllocDaq)
                      0008a7f5    00000006     XcpBasic.obj (.text:_XcpMemSet)
                      0008a7fb    00000006     c_cansig_cfg.obj (.text:_c_sig_HV_OvercurrentCont)
                      0008a801    00000006     c_cansig_cfg.obj (.text:_c_sig_LV_Undervoltage)
                      0008a807    00000006     c_cansig_cfg.obj (.text:_c_sig_Mot_DryRunEmergency)
                      0008a80d    00000006     c_cansig_cfg.obj (.text:_c_sig_Mot_DryRunWarning)
                      0008a813    00000006     c_cansig_cfg.obj (.text:_c_sig_setD_Current_100mA)
                      0008a819    00000006     c_cansig_cfg.obj (.text:_c_sig_setExtOperated)
                      0008a81f    00000006     c_cansig_cfg.obj (.text:_c_sig_setQ_Current_100mA)
                      0008a825    00000006     c_cansig_cfg.obj (.text:_c_sig_setReserve_1)
                      0008a82b    00000006     countdown.obj (.text:_ctd_startCountdown_ms)
                      0008a831    00000006     motorManager.obj (.text:_mot_task)
                      0008a837    00000006     eepManager.obj (.text:_reInitSpi)
                      0008a83d    00000006     c_UDSLight.obj (.text:_uds_clearResponseBuffer)
                      0008a843    00000005     CanNm_PB.obj (.text:_CanNmPB_ResetTransitions)
                      0008a848    00000005     filter_fo.obj (.text:_FILTER_FO_setNumCoeffs)
                      0008a84d    00000005     nvm.obj (.text:_Get_Nvm_CurrentOffsetU)
                      0008a852    00000005     nvm.obj (.text:_Get_Nvm_CurrentOffsetV)
                      0008a857    00000005     nvm.obj (.text:_Get_Nvm_CurrentOffsetW)
                      0008a85c    00000005     nvm.obj (.text:_Get_Nvm_VoltageOffsetU)
                      0008a861    00000005     nvm.obj (.text:_Get_Nvm_VoltageOffsetV)
                      0008a866    00000005     nvm.obj (.text:_Get_Nvm_VoltageOffsetW)
                      0008a86b    00000005     nvm.obj (.text:_Nvm_ImmediatelyWriteSet)
                      0008a870    00000005     XcpBasic.obj (.text:_XcpQueueInit)
                      0008a875    00000005     c_cansig_cfg.obj (.text:_c_sig_HV_Overvoltage)
                      0008a87a    00000005     c_cansig_cfg.obj (.text:_c_sig_HV_Undervoltage)
                      0008a87f    00000005     c_cansig_cfg.obj (.text:_c_sig_IGBT_OvertempEmergency)
                      0008a884    00000005     c_cansig_cfg.obj (.text:_c_sig_IGBT_OvertempWarning)
                      0008a889    00000005     c_cansig_cfg.obj (.text:_c_sig_MCU_UnexpReset)
                      0008a88e    00000005     c_cansig_cfg.obj (.text:_c_sig_Mot_FanBlockedTemp)
                      0008a893    00000005     c_cansig_cfg.obj (.text:_c_sig_PCB_OvertempEmergency)
                      0008a898    00000005     c_cansig_cfg.obj (.text:_c_sig_PCB_OvertempWarning)
                      0008a89d    00000005     c_cansig_cfg.obj (.text:_c_sig_PostFailed)
                      0008a8a2    00000005     c_cansig_cfg.obj (.text:_c_sig_setIgbtTemperature)
                      0008a8a7    00000005     c_cansig_cfg.obj (.text:_c_sig_setPcbTemperature)
                      0008a8ac    00000005     c_cansig_cfg.obj (.text:_c_sig_setSN_Internal)
                      0008a8b1    00000005     c_cansig_cfg.obj (.text:_c_sig_setSN_Major)
                      0008a8b6    00000005     c_cansig_cfg.obj (.text:_c_sig_setSN_Minor)
                      0008a8bb    00000005     c_cansig_cfg.obj (.text:_c_sig_setSemiconductorSw)
                      0008a8c0    00000005     Measure.obj (.text:_mea_sampleFastSignals)
                      0008a8c5    00000004     clarke.obj (.text:_CLARKE_init)
                      0008a8c9    00000004     CanNm_PB.obj (.text:_CanNmPB_GetPDURxConfirmation)
                      0008a8cd    00000004     nvm.obj (.text:_ErrorNvm)
                      0008a8d1    00000004     filter_fo.obj (.text:_FILTER_FO_init)
                      0008a8d5    00000004     Rte.obj (.text:_GetRxIndication)
                      0008a8d9    00000004     RsOffsetCalibration.obj (.text:_GetStatusCalib)
                      0008a8dd    00000004     nvm.obj (.text:_Get_Nvm_BootIdOffset)
                      0008a8e1    00000004     nvm.obj (.text:_Get_Nvm_CAN_IdOffset)
                      0008a8e5    00000004     nvm.obj (.text:_Get_Nvm_DeliveryDate)
                      0008a8e9    00000004     nvm.obj (.text:_Get_Nvm_HardwareVersion)
                      0008a8ed    00000004     nvm.obj (.text:_Get_Nvm_SerialNumber)
                      0008a8f1    00000004     hal.obj (.text:_HAL_enableGlobalInts)
                      0008a8f5    00000004     ipark.obj (.text:_IPARK_init)
                      0008a8f9    00000004     interrupt.obj (.text:_Interrupt_defaultHandler)
                      0008a8fd    00000004     park.obj (.text:_PARK_init)
                      0008a901    00000004     pi.obj (.text:_PI_init)
                      0008a905    00000004     RsOffsetCalibration.obj (.text:_ResetStatus)
                      0008a909    00000004     svgen_current.obj (.text:_SVGENCURRENT_init)
                      0008a90d    00000004     svgen.obj (.text:_SVGEN_init)
                      0008a911    00000004     traj.obj (.text:_TRAJ_init)
                      0008a915    00000004     XcpBasic.obj (.text:_XcpMemClr)
                      0008a919    00000004     XcpBasic.obj (.text:_XcpSetActiveTl)
                      0008a91d    00000004     countdown.obj (.text:_ctd_isRunning)
                      0008a921    00000004     app.obj (.text:_isOverCurrentPeakEventTriggered)
                      0008a925    00000004     os.obj (.text:_main_setInhibitWdogRetrigger)
                      0008a929    00000004     Measure.obj (.text:_mea_getSupplyCurrent_100mA)
                      0008a92d    00000004     c_UDSLight.obj (.text:_uds_sendResponse)
                      0008a931    00000003     drv8305.obj (.text:_DRV8305_init)
                      0008a934    00000003     filter_fo.obj (.text:_FILTER_FO_setDenCoeffs)
                      0008a937    00000003     hal.obj (.text:_HAL_enableDebugInt)
                      0008a93a    00000003     c_cantask.obj (.text:_c_tsk_init)
                      0008a93d    00000003     motorManager.obj (.text:_mot_init)
                      0008a940    00000002     xcp_appl.obj (.text:_ApplXcpGetPointer)
                      0008a942    00000002     drv8305.obj (.text:_DRV8305_setGpioNumber)
                      0008a944    00000002     drv8305.obj (.text:_DRV8305_setSpiHandle)
                      0008a946    00000002     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:_Fapi_serviceWatchdogTimer)
                      0008a948    00000002     interrupt.obj (.text:_Interrupt_illegalOperationHandler)
                      0008a94a    00000002     interrupt.obj (.text:_Interrupt_nmiHandler)
                      0008a94c    00000002     XcpBasic.obj (.text:_XcpBackground)
                      0008a94e    00000002     c_SSI.obj (.text:_ssi_getPendingService)
                      0008a950    00000002     c_UDSLight.obj (.text:_uds_isFlashingAllowed)
                      0008a952    00000002     rts2800_fpu32.lib : pre_init.c.obj (.text)
                      0008a954    00000001     c_cansig_cfg.obj (.text:_c_sig_Mot_FanBlockedPerm)
                      0008a955    00000001     c_cansig_cfg.obj (.text:_c_sig_Mot_SpeedMeasUnpl)
                      0008a956    00000001     c_cansig_cfg.obj (.text:_c_sig_setDeviceEnabled)
                      0008a957    00000001     c_cantask.obj (.text:_c_tsk_sendFrames1ms)
                      0008a958    00000001     c_cantask.obj (.text:_c_tsk_sendFrames2s)
                      0008a959    00000001     c_SSI.obj (.text:_ssi_setPendingService)
                      0008a95a    00000001     rts2800_fpu32.lib : startup.c.obj (.text)
    
    .cinit     0    0008a95c    00000934     
                      0008a95c    000001fa     app.obj (.cinit)
                      0008ab56    000001f1     AppT1.obj (.cinit)
                      0008ad47    00000131     AppT3.obj (.cinit)
                      0008ae78    00000089     AppT2.obj (.cinit)
                      0008af01    00000075     Measure.obj (.cinit)
                      0008af76    0000003e     nvm.obj (.cinit:_NvM32bitContainer)
                      0008afb4    00000038     os.obj (.cinit)
                      0008afec    0000002e     AppT4.obj (.cinit)
                      0008b01a    00000022     graph.obj (.cinit)
                      0008b03c    0000001f     AppT2.obj (.cinit:_DIAG_EnableHealing_C)
                      0008b05b    0000001f     AppT2.obj (.cinit:_DIAG_MatureTime_C)
                      0008b07a    0000001f     AppT2.obj (.cinit:_X_Sb23_Unit_Delay2$1)
                      0008b099    0000001f     AppT2.obj (.cinit:_X_Sb36_Unit_Delay3$5)
                      0008b0b8    0000001c     CanNm_PB.obj (.cinit)
                      0008b0d4    00000014     runEstimator.obj (.cinit)
                      0008b0e8    00000011     AppT2.obj (.cinit:_X_Sb35_Unit_Delay$20)
                      0008b0f9    0000000e     c_candriver.obj (.cinit)
                      0008b107    0000000e     rts2800_fpu32.lib : exit.c.obj (.cinit)
                      0008b115    0000000c     Rte.obj (.cinit)
                      0008b121    0000000c     c_UDSLight.obj (.cinit)
                      0008b12d    0000000c     nvm.obj (.cinit)
                      0008b139    0000000b     AppT1.obj (.cinit:_AppT1_MaxPhaseCurrent_CUR_Table)
                      0008b144    0000000b     AppT1.obj (.cinit:_AppT1_MaxPhaseCurrent_CUR_xAxis)
                      0008b14f    0000000b     AppT1.obj (.cinit:_AppT1_facGainDcLink_CUR_Table)
                      0008b15a    0000000b     AppT1.obj (.cinit:_AppT1_facGainDcLink_CUR_xAxis)
                      0008b165    0000000b     AppT1.obj (.cinit:_X_Se88_Discrete_Filter2$10)
                      0008b170    0000000b     AppT1.obj (.cinit:_X_Se89_Discrete_Filter2$11)
                      0008b17b    0000000b     AppT1.obj (.cinit:_X_Se90_Discrete_Filter2$12)
                      0008b186    0000000b     AppT1.obj (.cinit:_X_Se91_Discrete_Filter2$13)
                      0008b191    00000009     Benchmark.obj (.cinit:_TimeOfTask)
                      0008b19a    00000008     c_cantask.obj (.cinit)
                      0008b1a2    00000007     AppT1.obj (.cinit:_AppT1_Precommutation_CUR_Table)
                      0008b1a9    00000007     AppT1.obj (.cinit:_AppT1_Precommutation_CUR_xAxis)
                      0008b1b0    00000007     AppT3.obj (.cinit:_AppT3_MechDampingCurve_CUR_Table)
                      0008b1b7    00000007     AppT3.obj (.cinit:_AppT3_MechDampingCurve_CUR_xAxis)
                      0008b1be    00000007     AppT1.obj (.cinit:_Se11_Switch)
                      0008b1c5    00000007     AppT1.obj (.cinit:_Se52_MinMax1)
                      0008b1cc    00000007     AppT2.obj (.cinit:_X_Sb52_Unit_Delay$15)
                      0008b1d3    00000007     AppT2.obj (.cinit:_X_Sb53_Unit_Delay$16)
                      0008b1da    00000007     AppT3.obj (.cinit:_X_Sc100_Discrete_Transfer_Fcn$3)
                      0008b1e1    00000007     AppT1.obj (.cinit:_X_Se21_AL$6)
                      0008b1e8    00000007     AppT1.obj (.cinit:_X_Se21_AL1$7)
                      0008b1ef    00000007     AppT1.obj (.cinit:_X_Se24_Unit_Delay$8)
                      0008b1f6    00000007     AppT1.obj (.cinit:_X_Se51_AL$2)
                      0008b1fd    00000007     AppT1.obj (.cinit:_X_Se51_AL1$3)
                      0008b204    00000007     AppT1.obj (.cinit:_X_Se54_Unit_Delay$4)
                      0008b20b    00000005     OperatingHoursCounter.obj (.cinit)
                      0008b210    00000005     Benchmark.obj (.cinit:_CpuCnt_)
                      0008b215    00000005     Benchmark.obj (.cinit:_Delta)
                      0008b21a    00000005     Benchmark.obj (.cinit:_Delta_Mean)
                      0008b21f    00000005     os.obj (.cinit:_Task_Load_percent_mean)
                      0008b224    00000005     AppT1.obj (.cinit:_X_Se19_Unit_Delay$9)
                      0008b229    00000005     AppT1.obj (.cinit:_X_Se50_Unit_Delay$5)
                      0008b22e    00000005     rts2800_fpu32.lib : _lock.c.obj (.cinit:__lock)
                      0008b233    00000005                       : _lock.c.obj (.cinit:__unlock)
                      0008b238    00000005     runEstimator.obj (.cinit:_errOffs)
                      0008b23d    00000005     Benchmark.obj (.cinit:_holdVal)
                      0008b242    00000004     HwIoConnectorLv.obj (.cinit)
                      0008b246    00000004     RsOffsetCalibration.obj (.cinit)
                      0008b24a    00000004     CanNm_PB.obj (.cinit:_ActualStateFeedback)
                      0008b24e    00000004     CanNm_PB.obj (.cinit:_ActualTimerValue)
                      0008b252    00000004     CanNm_PB.obj (.cinit:_ExpiryTime)
                      0008b256    00000004     CanNm_PB.obj (.cinit:_Flag_TimerExpired)
                      0008b25a    00000004     os.obj (.cinit:_Task_Load_percent)
                      0008b25e    00000004     CanNm_PB.obj (.cinit:_TimerEnabled)
                      0008b262    00000004     c_candriver.obj (.cinit:_canbuffer)
                      0008b266    00000004     nvm.obj (.cinit:_eepContainer)
                      0008b26a    00000004     c_cansig.obj (.cinit)
                      0008b26e    00000004     c_cansig_cfg.obj (.cinit)
                      0008b272    00000004     cputimers.obj (.cinit)
                      0008b276    00000004     drv8301.obj (.cinit)
                      0008b27a    00000004     drv8305.obj (.cinit)
                      0008b27e    00000004     drv8320.obj (.cinit)
                      0008b282    00000004     motorManager.obj (.cinit)
                      0008b286    00000004     rts2800_fpu32.lib : errno.c.obj (.cinit)
                      0008b28a    00000004     xcp_appl.obj (.cinit)
                      0008b28e    00000002     --HOLE-- [fill = 0]
    
    .pinit     0    00083030    00000000     UNINITIALIZED
    
    .econst    0    0008b290    0000083e     
                      0008b290    000003c0     c_cansig_cfg.obj (.econst:_TX_SIG_PAR)
                      0008b650    00000294     c_cansig_cfg.obj (.econst:_RX_SIG_PAR)
                      0008b8e4    000000c0     can_mailbox_cfg.obj (.econst:_C_DRV_MAILBOX_CFG)
                      0008b9a4    0000003c     nvm.obj (.econst:_$P$T1$2)
                      0008b9e0    00000032     rts2800_fpu32.lib : e_powf.c.obj (.econst)
                      0008ba12    00000019     c_cansig_cfg.obj (.econst:_TX_MSG)
                      0008ba2b    00000015     Measure.obj (.econst:_ADCVAL_X)
                      0008ba40    00000015     Measure.obj (.econst:_TEMP_INKLOFFSET50_Y)
                      0008ba55    00000014     c_cansig_cfg.obj (.econst:_RX_MSG)
                      0008ba69    00000001     countdown.obj (.econst)
                      0008ba6a    00000010     rts2800_fpu32.lib : e_logf.c.obj (.econst)
                      0008ba7a    0000000d     AppT2.obj (.econst:_IF_INDEX)
                      0008ba87    00000008     nvm.obj (.econst:_$P$T0$1)
                      0008ba8f    00000001     nvm.obj (.econst)
                      0008ba90    00000006     Benchmark.obj (.econst:_$P$T0$1)
                      0008ba96    00000006     Benchmark.obj (.econst:_$P$T1$2)
                      0008ba9c    00000006     AppT3.obj (.econst:_Sc48_AppT3_MechDampingCurve_CUR_map$49)
                      0008baa2    00000006     AppT1.obj (.econst:_Se29_AppT1_MaxPhaseCurrent_CUR_map$24)
                      0008baa8    00000006     AppT1.obj (.econst:_Se29_AppT1_facGainDcLink_CUR_map$25)
                      0008baae    00000006     AppT1.obj (.econst:_Se30_AppT1_Precommutation_CUR_map$34)
                      0008bab4    00000006     rts2800_fpu32.lib : s_scalbnf.c.obj (.econst)
                      0008baba    00000004                       : e_powf.c.obj (.econst:_bp)
                      0008babe    00000004                       : e_powf.c.obj (.econst:_dp_h)
                      0008bac2    00000004                       : e_powf.c.obj (.econst:_dp_l)
                      0008bac6    00000003     XcpBasic.obj (.econst)
                      0008bac9    00000001     --HOLE-- [fill = 0]
                      0008baca    00000002     can_mailbox_cfg.obj (.econst)
                      0008bacc    00000002     rts2800_fpu32.lib : s_floorf.c.obj (.econst)
    
    .switch    0    0008bad0    00000054     
                      0008bad0    00000020     XcpBasic.obj (.switch:_XcpCommand)
                      0008baf0    0000001c     nvm.obj (.switch:_NvMUpdate)
                      0008bb0c    00000018     AppT3.obj (.switch:_Cc3_NormalOperationMode_ex)
    
    .reset     0    003fffc0    00000002     DSECT
                      003fffc0    00000002     rts2800_fpu32.lib : boot28.asm.obj (.reset)
    
    .stack     1    000000f6    00000200     UNINITIALIZED
                      000000f6    00000200     --HOLE--
    
    Cla1Prog   0    0000a000    00000000     UNINITIALIZED
    
    Cla1Prog2 
    *          0    0000a000    00000000     UNINITIALIZED
    
    .const_cla 
    *          0    0000a000    00000000     UNINITIALIZED
    
    ctrl_data 
    *          1    00000500    0000026a     UNINITIALIZED
                      00000500    0000026a     app.obj (ctrl_data)
    
    .ebss      1    0000c000    00002612     UNINITIALIZED
                      0000c000    00000848     graph.obj (.ebss)
                      0000c848    00000020     Measure.obj (.ebss:_HVdisChargeVoltageFilterStorage)
                      0000c868    00000017     os.obj (.ebss)
                      0000c87f    00000001     HwIoConnectorLv.obj (.ebss)
                      0000c880    00000324     datalog.obj (.ebss:_datalogBuff1)
                      0000cba4    0000001c     AppT2.obj (.ebss:_DIAG_EnableHealing_C)
                      0000cbc0    00000324     datalog.obj (.ebss:_datalogBuff2)
                      0000cee4    0000001c     AppT2.obj (.ebss:_DIAG_MatureTime_C)
                      0000cf00    00000324     datalog.obj (.ebss:_datalogBuff3)
                      0000d224    0000001c     AppT2.obj (.ebss:_X_Sb23_Unit_Delay2$1)
                      0000d240    00000324     datalog.obj (.ebss:_datalogBuff4)
                      0000d564    0000001c     AppT2.obj (.ebss:_X_Sb36_Unit_Delay3$5)
                      0000d580    00000220     XcpBasic.obj (.ebss)
                      0000d7a0    00000020     Measure.obj (.ebss:_IGBT_TempRawFilterStorage)
                      0000d7c0    000001d6     app.obj (.ebss)
                      0000d996    00000020     Measure.obj (.ebss:_LVsupplyVoltageFilterStorage)
                      0000d9b6    0000000a     F021_API_F28004x_FPU32.lib : Init.obj (.ebss)
                      0000d9c0    000001ce     RteStructs.obj (.ebss)
                      0000db8e    00000020     Measure.obj (.ebss:_PCB_TempRawFilterStorage)
                      0000dbae    00000012     c_UDSLight.obj (.ebss)
                      0000dbc0    00000140     c_cansig.obj (.ebss:_txSignal)
                      0000dd00    00000140     runEstimator.obj (.ebss)
                      0000de40    00000128     AppT1.obj (.ebss)
                      0000df68    00000010     AppT4.obj (.ebss)
                      0000df78    00000008     AppT1.obj (.ebss:_AppT1_MaxPhaseCurrent_CUR_Table)
                      0000df80    000000dc     c_cansig.obj (.ebss:_rxSignal)
                      0000e05c    00000020     Measure.obj (.ebss:_meaRef3V3P5VoltageFilterStorage)
                      0000e07c    00000004     CanNm_PB.obj (.ebss:_ActualTimerValue)
                      0000e080    000000a6     AppT3.obj (.ebss)
                      0000e126    0000000f     CanNm_PB.obj (.ebss:_ActualStateFeedback)
                      0000e135    00000001     RsOffsetCalibration.obj (.ebss)
                      0000e136    0000000a     app.obj (.ebss:_EstIn)
                      0000e140    000000a0     Measure.obj (.ebss)
                      0000e1e0    00000020     Measure.obj (.ebss:_speedFilterStorage)
                      0000e200    00000080     Histogram.obj (.ebss:_HistogramFields2D)
                      0000e280    00000078     c_candriver.obj (.ebss:_canbuffer)
                      0000e2f8    00000008     AppT1.obj (.ebss:_AppT1_MaxPhaseCurrent_CUR_xAxis)
                      0000e300    00000056     AppT2.obj (.ebss)
                      0000e356    00000020     Measure.obj (.ebss:_supplyVoltageFilterStorage)
                      0000e376    00000009     xcp_appl.obj (.ebss:_message)
                      0000e37f    00000001     c_cansig.obj (.ebss)
                      0000e380    00000040     CanNm_PB.obj (.ebss)
                      0000e3c0    0000003c     Histogram.obj (.ebss:_HistogramFields1D)
                      0000e3fc    00000004     AppT1.obj (.ebss:_AppT1_Precommutation_CUR_Table)
                      0000e400    0000003c     nvm.obj (.ebss:_NvM32bitContainer)
                      0000e43c    00000004     AppT1.obj (.ebss:_AppT1_Precommutation_CUR_xAxis)
                      0000e440    0000003c     app.obj (.ebss:_filter)
                      0000e47c    00000004     AppT3.obj (.ebss:_AppT3_MechDampingCurve_CUR_Table)
                      0000e480    00000020     Measure.obj (.ebss:_supplyVoltageFilterStorage_100mV)
                      0000e4a0    00000020     Measure.obj (.ebss:_tempIGBTFilterStorage)
                      0000e4c0    00000020     Measure.obj (.ebss:_tempPCBFilterStorage)
                      0000e4e0    0000000e     AppT2.obj (.ebss:_X_Sb35_Unit_Delay$20)
                      0000e4ee    0000000e     datalog.obj (.ebss)
                      0000e4fc    00000004     AppT3.obj (.ebss:_AppT3_MechDampingCurve_CUR_xAxis)
                      0000e500    0000000c     Benchmark.obj (.ebss:_CpuCnt_)
                      0000e50c    0000000c     app.obj (.ebss:_filterHandle)
                      0000e518    00000008     AppT1.obj (.ebss:_AppT1_facGainDcLink_CUR_Table)
                      0000e520    00000008     AppT1.obj (.ebss:_AppT1_facGainDcLink_CUR_xAxis)
                      0000e528    00000008     AppT1.obj (.ebss:_X_Se88_Discrete_Filter2$10)
                      0000e530    00000008     AppT1.obj (.ebss:_X_Se89_Discrete_Filter2$11)
                      0000e538    00000008     AppT1.obj (.ebss:_X_Se90_Discrete_Filter2$12)
                      0000e540    00000008     AppT1.obj (.ebss:_X_Se91_Discrete_Filter2$13)
                      0000e548    00000008     nvm.obj (.ebss:_eepContainer)
                      0000e550    00000006     app.obj (.ebss:_CurrentsUVW)
                      0000e556    00000006     Benchmark.obj (.ebss:_Delta)
                      0000e55c    00000006     Benchmark.obj (.ebss:_Delta_Mean)
                      0000e562    00000006     AppT1.obj (.ebss:_Se4_Switch)
                      0000e568    00000006     os.obj (.ebss:_Task_Load_percent_mean)
                      0000e56e    00000006     Benchmark.obj (.ebss:_TimeOfTask)
                      0000e574    00000006     app.obj (.ebss:_VoltagesUVW)
                      0000e57a    00000006     runEstimator.obj (.ebss:_errOffs)
                      0000e580    00000006     xcp_appl.obj (.ebss:_globalSeed)
                      0000e586    00000006     Benchmark.obj (.ebss:_holdVal)
                      0000e58c    00000006     xcp_appl.obj (.ebss:_sSeed)
                      0000e592    00000006     c_candriver.obj (.ebss)
                      0000e598    00000006     countdown.obj (.ebss)
                      0000e59e    00000006     rts2800_fpu32.lib : exit.c.obj (.ebss)
                      0000e5a4    00000005     c_cansig_cfg.obj (.ebss:_MLTP_TX_MSG)
                      0000e5a9    00000004     CanNm_PB.obj (.ebss:_ExpiryTime)
                      0000e5ad    00000004     CanNm_PB.obj (.ebss:_Flag_TimerExpired)
                      0000e5b1    00000001     c_cansig_cfg.obj (.ebss)
                      0000e5b2    00000004     AppT1.obj (.ebss:_IF_Se55_uRotatingFrameDesired_)
                      0000e5b6    00000004     AppT1.obj (.ebss:_Se11_Switch)
                      0000e5ba    00000004     AppT1.obj (.ebss:_Se2_Switch1)
                      0000e5be    00000002     OperatingHoursCounter.obj (.ebss)
                      0000e5c0    00000004     AppT1.obj (.ebss:_Se52_MinMax1)
                      0000e5c4    00000004     CanNm_PB.obj (.ebss:_TimerEnabled)
                      0000e5c8    00000004     AppT2.obj (.ebss:_X_Sb52_Unit_Delay$15)
                      0000e5cc    00000004     AppT2.obj (.ebss:_X_Sb53_Unit_Delay$16)
                      0000e5d0    00000004     AppT3.obj (.ebss:_X_Sc100_Discrete_Transfer_Fcn$3)
                      0000e5d4    00000004     AppT1.obj (.ebss:_X_Se21_AL$6)
                      0000e5d8    00000004     AppT1.obj (.ebss:_X_Se21_AL1$7)
                      0000e5dc    00000004     AppT1.obj (.ebss:_X_Se24_Unit_Delay$8)
                      0000e5e0    00000004     AppT1.obj (.ebss:_X_Se51_AL$2)
                      0000e5e4    00000004     AppT1.obj (.ebss:_X_Se51_AL1$3)
                      0000e5e8    00000004     AppT1.obj (.ebss:_X_Se54_Unit_Delay$4)
                      0000e5ec    00000004     cputimers.obj (.ebss)
                      0000e5f0    00000004     drv8305.obj (.ebss)
                      0000e5f4    00000003     Rte.obj (.ebss)
                      0000e5f7    00000003     os.obj (.ebss:_Task_Load_percent)
                      0000e5fa    00000003     nvm.obj (.ebss)
                      0000e5fd    00000002     AppT1.obj (.ebss:_X_Se19_Unit_Delay$9)
                      0000e5ff    00000001     rts2800_fpu32.lib : errno.c.obj (.ebss)
                      0000e600    00000002     AppT1.obj (.ebss:_X_Se50_Unit_Delay$5)
                      0000e602    00000002     rts2800_fpu32.lib : _lock.c.obj (.ebss:__lock)
                      0000e604    00000002                       : _lock.c.obj (.ebss:__unlock)
                      0000e606    00000002     c_cantask.obj (.ebss)
                      0000e608    00000002     drv8301.obj (.ebss)
                      0000e60a    00000002     drv8320.obj (.ebss)
                      0000e60c    00000002     main.obj (.ebss)
                      0000e60e    00000002     motorManager.obj (.ebss)
                      0000e610    00000002     xcp_appl.obj (.ebss)
    
    MODULE SUMMARY
    
           Module                        code    initialized data   uninitialized data
           ------                        ----    ----------------   ------------------
        .\
           main.obj                      215     14                 2                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        215     14                 2                 
                                                                                      
        .\01_Application\Autocode\
           AppT1.obj                     7733    683                418               
           AppT3.obj                     2755    356                178               
           AppT2.obj                     1340    305                220               
           RteStructs.obj                0       0                  462               
           AppT4.obj                     73      46                 16                
           AppT5.obj                     72      0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        11973   1390               1294              
                                                                                      
        .\01_Application\Handcode\
           app.obj                       5024    506                1182              
           runEstimator.obj              695     25                 326               
           Histogram.obj                 355     0                  188               
           RsOffsetCalibration.obj       261     4                  1                 
           Benchmark.obj                 183     41                 36                
           interpolation.obj             86      0                  0                 
           motorManager.obj              24      4                  2                 
           OperatingHoursCounter.obj     6       5                  2                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        6634    585                1737              
                                                                                      
        .\02_Rte\
           Rte.obj                       62      12                 3                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        62      12                 3                 
                                                                                      
        .\03_Services\Can\
           c_cansig_cfg.obj              249     1669               6                 
           c_cansig.obj                  641     4                  541               
           c_candriver.obj               215     18                 126               
           c_cantask.obj                 60      8                  2                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        1165    1699               675               
                                                                                      
        .\03_Services\Countdown\
           countdown.obj                 54      1                  6                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        54      1                  6                 
                                                                                      
        .\03_Services\Crc\
           Crc.obj                       39      0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        39      0                  0                 
                                                                                      
        .\03_Services\Measurements\
           Measure.obj                   501     159                480               
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        501     159                480               
                                                                                      
        .\03_Services\NetworkManagement\
           CanNm_PB.obj                  701     48                 95                
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        701     48                 95                
                                                                                      
        .\03_Services\Nvm\
           nvm.obj                       753     175                71                
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        753     175                71                
                                                                                      
        .\03_Services\Scheduler\
           os.obj                        276     65                 32                
           cputimers.obj                 298     4                  4                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        574     69                 36                
                                                                                      
        .\03_Services\Uds\
           c_UDSLight.obj                965     12                 18                
           c_SSI.obj                     3       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        968     12                 18                
                                                                                      
        .\03_Services\Xcp\
           XcpBasic.obj                  1362    35                 544               
           xcp_appl.obj                  219     4                  23                
           xcp_transport_layer.obj       90      0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        1671    39                 567               
                                                                                      
        .\03_Services\eep\
           eepManager.obj                556     0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        556     0                  0                 
                                                                                      
        .\05_EcuAL\
           HwIoConnectorLv.obj           37      4                  1                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        37      4                  1                 
                                                                                      
        .\06_MCAL\
           hal.obj                       2675    0                  0                 
           sysctl.obj                    451     0                  0                 
           can.obj                       388     0                  0                 
           interrupt.obj                 342     0                  0                 
           gpio.obj                      303     0                  0                 
           dma.obj                       195     0                  0                 
           flash.obj                     138     0                  0                 
           sci.obj                       85      0                  0                 
           adc.obj                       69      0                  0                 
           spi.obj                       61      0                  0                 
           epwm.obj                      9       0                  0                 
           cputimer.obj                  6       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        4722    0                  0                 
                                                                                      
        .\10_Libraries\clarke\source\
           clarke.obj                    4       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        4       0                  0                 
                                                                                      
        .\10_Libraries\datalog\source\
           datalog.obj                   14      0                  3230              
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        14      0                  3230              
                                                                                      
        .\10_Libraries\diagnostic\source\
           graph.obj                     17      34                 2120              
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        17      34                 2120              
                                                                                      
        .\10_Libraries\drvic\drv8301\source\
           drv8301.obj                   0       4                  2                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        0       4                  2                 
                                                                                      
        .\10_Libraries\drvic\drv8305\source\
           drv8305.obj                   7       4                  4                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        7       4                  4                 
                                                                                      
        .\10_Libraries\drvic\drv8320\source\
           drv8320.obj                   0       4                  2                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        0       4                  2                 
                                                                                      
        .\10_Libraries\filter\source\
           filter_fo.obj                 18      0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        18      0                  0                 
                                                                                      
        .\10_Libraries\ipark\source\
           ipark.obj                     4       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        4       0                  0                 
                                                                                      
        .\10_Libraries\park\source\
           park.obj                      4       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        4       0                  0                 
                                                                                      
        .\10_Libraries\pi\source\
           pi.obj                        4       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        4       0                  0                 
                                                                                      
        .\10_Libraries\pierburg\
           movingAvg.obj                 64      0                  0                 
           pt1_float.obj                 61      0                  0                 
           pt1.obj                       12      0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        137     0                  0                 
                                                                                      
        .\10_Libraries\svgen\source\
           svgen.obj                     4       0                  0                 
           svgen_current.obj             4       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        8       0                  0                 
                                                                                      
        .\10_Libraries\traj\source\
           traj.obj                      4       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        4       0                  0                 
                                                                                      
        .\11_Configurations\
           user.obj                      1132    0                  0                 
           f28004x_codestartbranch.obj   2       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        1134    0                  0                 
                                                                                      
        .\11_Configurations\Can\
           can_mailbox_cfg.obj           0       194                0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        0       194                0                 
                                                                                      
        ../10_Libraries/flash_api/flash_api/F021_API_F28004x_FPU32.lib
           FlashStateMachine.obj         985     0                  0                 
           Program.obj                   480     0                  0                 
           Read.obj                      229     0                  0                 
           Init.obj                      167     0                  10                
           Utilities.obj                 112     0                  0                 
           Async.obj                     100     0                  0                 
           Verify.obj                    15      0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        2088    0                  10                
                                                                                      
        ../11_Configurations/rts2800_fpu32.lib
           e_powf.c.obj                  897     62                 0                 
           e_logf.c.obj                  299     16                 0                 
           fs_div28.asm.obj              136     0                  0                 
           s_scalbnf.c.obj               87      6                  0                 
           s_floorf.c.obj                87      2                  0                 
           boot28.asm.obj                86      0                  0                 
           exit.c.obj                    41      14                 6                 
           l_div28.asm.obj               42      0                  0                 
           e_sqrtf.c.obj                 38      0                  0                 
           cpy_tbl.c.obj                 36      0                  0                 
           fd_tol28.asm.obj              31      0                  0                 
           memcpy.c.obj                  29      0                  0                 
           args_main.c.obj               25      0                  0                 
           _lock.c.obj                   9       10                 4                 
           s_copysignf.c.obj             17      0                  0                 
           errno.c.obj                   0       4                  1                 
           pre_init.c.obj                2       0                  0                 
           startup.c.obj                 1       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        1863    114                11                
                                                                                      
           Stack:                        0       0                  512               
        +--+-----------------------------+-------+------------------+--------------------+
           Grand Total:                  35931   4561               10876             
    
    
    GLOBAL DATA SYMBOLS: SORTED BY DATA PAGE
    
    address     data page           name
    --------    ----------------    ----
    000000f6       3 (000000c0)     __stack
    
    00000500      14 (00000500)     _gPwmDacData
    
    00000540      15 (00000540)     _gMotorVars
    
    00000640      19 (00000640)     _gUserParams
    
    0000c000     300 (0000c000)     _gStepVars
    
    0000c040     301 (0000c040)     _gGraphVars
    
    0000c868     321 (0000c840)     _cnt_
    0000c869     321 (0000c840)     _cnt_2s
    0000c86a     321 (0000c840)     __1msCounter
    0000c86b     321 (0000c840)     _CanNmRxFlag
    
    0000c880     322 (0000c880)     _datalogBuff1
    
    0000cba4     32e (0000cb80)     _DIAG_EnableHealing_C
    
    0000cbc0     32f (0000cbc0)     _datalogBuff2
    
    0000cee4     33b (0000cec0)     _DIAG_MatureTime_C
    
    0000cf00     33c (0000cf00)     _datalogBuff3
    
    0000d240     349 (0000d240)     _datalogBuff4
    
    0000d580     356 (0000d580)     _xcp
    
    0000d7c0     35f (0000d7c0)     _SoftwareVariant
    0000d7c1     35f (0000d7c0)     _PwmInternalEnable
    0000d7c2     35f (0000d7c0)     _OffsetLearnRequested
    0000d7c3     35f (0000d7c0)     _SelftestRequested
    0000d7c4     35f (0000d7c0)     _gLEDcnt
    0000d7c5     35f (0000d7c0)     _gCounter_speed
    0000d7c6     35f (0000d7c0)     _gCounter_TrajSpd
    0000d7c7     35f (0000d7c0)     _gCounter_TrajId
    0000d7c8     35f (0000d7c0)     _Flag_enableOffsetcalibration
    0000d7c9     35f (0000d7c0)     _measurableShuntThisCycle
    0000d7ca     35f (0000d7c0)     _ignoreShuntNextCycle
    0000d7cb     35f (0000d7c0)     _midVolShunt
    0000d7cc     35f (0000d7c0)     _gCmpOffset
    0000d7cd     35f (0000d7c0)     _gOvercurrentEvent
    0000d7ce     35f (0000d7c0)     _gOvercurrentCounter
    0000d7cf     35f (0000d7c0)     _gOvercurrentPulseCounter
    0000d7d0     35f (0000d7c0)     _overCurrPeakISRcounter
    0000d7d1     35f (0000d7c0)     _proj_loop_state
    0000d7d2     35f (0000d7c0)     _VoltageDcBus
    0000d7d4     35f (0000d7c0)     _angle_rad
    0000d7d6     35f (0000d7c0)     _fe_rps
    0000d7d8     35f (0000d7c0)     _fm_rps
    0000d7da     35f (0000d7c0)     _fm_lp_rps
    0000d7dc     35f (0000d7c0)     _fmDat
    0000d7de     35f (0000d7c0)     _dummy
    0000d7e0     35f (0000d7c0)     _IdRated_A
    0000d7e2     35f (0000d7c0)     _MotorVariant
    0000d7e4     35f (0000d7c0)     _gOffsetCalcCount
    0000d7e6     35f (0000d7c0)     _gOffsetCalcWaitTime
    0000d7e8     35f (0000d7c0)     _angleDelta_rad
    0000d7ea     35f (0000d7c0)     _angleEst_rad
    0000d7ec     35f (0000d7c0)     _angleSmo_rad
    0000d7ee     35f (0000d7c0)     _angleGen_rad
    0000d7f0     35f (0000d7c0)     _angleFoc_rad
    0000d7f2     35f (0000d7c0)     _clarkeHandle_I
    0000d7f4     35f (0000d7c0)     _clarkeHandle_V
    0000d7f6     35f (0000d7c0)     _estHandle
    0000d7f8     35f (0000d7c0)     _halHandle
    0000d7fa     35f (0000d7c0)     _iparkHandle
    0000d7fc     35f (0000d7c0)     _parkHandle
    0000d7fe     35f (0000d7c0)     _piHandle_Id
    
    0000d800     360 (0000d800)     _piHandle_Iq
    0000d802     360 (0000d800)     _piHandle_fwc
    0000d804     360 (0000d800)     _piHandle_spd
    0000d806     360 (0000d800)     _svgenHandle
    0000d808     360 (0000d800)     _svgen
    0000d80a     360 (0000d800)     _svgencurrentHandle
    0000d80c     360 (0000d800)     _trajHandle_spd
    0000d80e     360 (0000d800)     _trajHandle_Id
    0000d810     360 (0000d800)     _trajHandle_fwc
    0000d812     360 (0000d800)     _RampUpAcc_krpmps
    0000d814     360 (0000d800)     _RampDownAcc_krpmps
    0000d816     360 (0000d800)     _ReducedStartAcc_krpmps
    0000d818     360 (0000d800)     _KPspeedLowered
    0000d81a     360 (0000d800)     _KIspeedLowered
    0000d81c     360 (0000d800)     _KPspeedOperate
    0000d81e     360 (0000d800)     _KIspeedOperate
    0000d820     360 (0000d800)     _AccSwitchSpeedLowKrpm
    0000d822     360 (0000d800)     _AccSwitchSpeedHighKrpm
    0000d824     360 (0000d800)     _KPspeed
    0000d826     360 (0000d800)     _KIspeed
    0000d828     360 (0000d800)     _KPspeedDelta
    0000d82a     360 (0000d800)     _KIspeedDelta
    0000d82c     360 (0000d800)     _AccSwitchSpeedKrpm
    0000d82e     360 (0000d800)     _MaxAcc_krpmps
    0000d830     360 (0000d800)     _MaxAccDelta_krpmps
    0000d832     360 (0000d800)     _Idq_ref_A
    0000d836     360 (0000d800)     _Idq_offset_A
    0000d83a     360 (0000d800)     _Iab_in_A
    
    0000d840     361 (0000d840)     _Idq_in_A
    0000d844     361 (0000d840)     _Vab_out_V
    0000d848     361 (0000d840)     _Vdq_out_V
    0000d84c     361 (0000d840)     _Vdq_offset_V
    0000d850     361 (0000d840)     _ipark
    0000d854     361 (0000d840)     _park
    0000d858     361 (0000d840)     _IdqSet_A
    0000d85c     361 (0000d840)     _clarke_I
    0000d862     361 (0000d840)     _clarke_V
    0000d868     361 (0000d840)     _svgencurrent
    0000d86e     361 (0000d840)     _gAdcDataPrev_A
    0000d874     361 (0000d840)     _gPwmDataPrev
    
    0000d880     362 (0000d880)     _traj_spd
    0000d88a     362 (0000d880)     _traj_Id
    0000d894     362 (0000d880)     _traj_fwc
    0000d89e     362 (0000d880)     _gAdcData
    0000d8ae     362 (0000d880)     _gPwmData
    
    0000d8c0     363 (0000d8c0)     _gEstInputData
    0000d8d0     363 (0000d8c0)     _pi_Id
    0000d8e0     363 (0000d8c0)     _pi_Iq
    0000d8f0     363 (0000d8c0)     _pi_fwc
    
    0000d900     364 (0000d900)     _pi_spd
    0000d910     364 (0000d900)     _gEstOutputData
    
    0000d940     365 (0000d940)     _hal
    
    0000d9b6     366 (0000d980)     _Fapi_GlobalInit
    
    0000d9c0     367 (0000d9c0)     _OutAppT5
    0000d9c4     367 (0000d9c0)     _Fast_OutputData
    0000d9ca     367 (0000d9c0)     _InRte
    0000d9d0     367 (0000d9c0)     _Fast_InputDataBus
    0000d9da     367 (0000d9c0)     _OutAppT2
    
    0000da00     368 (0000da00)     _OutAppT4
    0000da18     368 (0000da00)     _OutAppT1
    
    0000da40     369 (0000da40)     _OutAppT3
    
    0000da80     36a (0000da80)     _OutRte
    
    0000dbae     36e (0000db80)     _MultipleCanFrames
    0000dbaf     36e (0000db80)     _CanTimeoutFlag
    0000dbb0     36e (0000db80)     _isTesterPresent
    0000dbb4     36e (0000db80)     _SvnRev
    0000dbb6     36e (0000db80)     _OffsetValue
    0000dbba     36e (0000db80)     _testerPresentCountdown
    
    0000dd00     374 (0000dd00)     _FinishedOffsetLearning
    0000dd01     374 (0000dd00)     _cnt
    0000dd02     374 (0000dd00)     _waitTime
    0000dd03     374 (0000dd00)     _ErrFlagPhaseProof
    0000dd04     374 (0000dd00)     _FinishedSelftest
    
    0000dd40     375 (0000dd40)     _Selftest
    
    0000de4a     379 (0000de40)     _AppT1_AngleDegOffset_C
    0000de4c     379 (0000de40)     _AppT1_CoilHeatingCurrent_C
    0000de4e     379 (0000de40)     _AppT1_DecLimit_C
    0000de50     379 (0000de40)     _AppT1_FirstAlignPos_C
    0000de52     379 (0000de40)     _AppT1_IqRefMan_C
    0000de54     379 (0000de40)     _AppT1_ManVd_C
    0000de56     379 (0000de40)     _AppT1_ManVq_C
    0000de58     379 (0000de40)     _AppT1_MaxRatioPreCom_C
    0000de5a     379 (0000de40)     _AppT1_MeasureRsCurrent_C
    0000de5c     379 (0000de40)     _AppT1_MeasureRsKi_C
    0000de5e     379 (0000de40)     _AppT1_MeasureRsKp_C
    0000de60     379 (0000de40)     _AppT1_MinRatioPreCom_C
    0000de62     379 (0000de40)     _AppT1_OlGain_C
    0000de64     379 (0000de40)     _AppT1_PrecommByCharline_C
    0000de66     379 (0000de40)     _AppT1_PulseTime_C
    0000de68     379 (0000de40)     _AppT1_RiseRateLower_C
    0000de6a     379 (0000de40)     _AppT1_RiseRateUpper_C
    0000de6c     379 (0000de40)     _AppT1_RpmDes_C
    0000de6e     379 (0000de40)     _AppT1_RpmThreshold_C
    0000de70     379 (0000de40)     _AppT1_SecondAlignPos_C
    0000de72     379 (0000de40)     _AppT1_SpeedKi_C
    0000de74     379 (0000de40)     _AppT1_SpeedKp_C
    0000de76     379 (0000de40)     _AppT1_SpeedRefMan_C
    0000de78     379 (0000de40)     _AppT1_SwAngleShift_C
    0000de7a     379 (0000de40)     _AppT1_SwEnableStartup_C
    0000de7c     379 (0000de40)     _AppT1_SwIqRefMan_C
    0000de7e     379 (0000de40)     _AppT1_SwManVdq_C
    
    0000de80     37a (0000de80)     _AppT1_SwSpeedRefMan_C
    0000de82     37a (0000de80)     _AppT1_TimeThreshold_C
    0000de84     37a (0000de80)     _AppT1_TrajLimit_C
    0000de86     37a (0000de80)     _AppT1_TrajReset_C
    0000de88     37a (0000de80)     _AppT1_TrajSlopeDecelLower_C
    0000de8a     37a (0000de80)     _AppT1_TrajSlopeUpper_C
    0000de8c     37a (0000de80)     _AppT1_dCurrentKi_C
    0000de8e     37a (0000de80)     _AppT1_dCurrentKp_C
    0000de90     37a (0000de80)     _AppT1_iDDesMan_C
    0000de92     37a (0000de80)     _AppT1_maxVsMaxPu_C
    0000de94     37a (0000de80)     _AppT1_qCurrentKi_C
    0000de96     37a (0000de80)     _AppT1_qCurrentKp_C
    0000de98     37a (0000de80)     _Hfi_HarmonicCorrectionGain_C
    0000de9a     37a (0000de80)     _Hfi_PllKi_C
    0000de9c     37a (0000de80)     _Hfi_PllKp_C
    0000de9e     37a (0000de80)     _Hfi_uCarrierGain_C
    0000dea0     37a (0000de80)     _AppT1_AccT_MP
    0000dea2     37a (0000de80)     _AppT1_AngleRadComputed_MP
    0000dea4     37a (0000de80)     _AppT1_AngleRadEstimator_MP
    0000dea6     37a (0000de80)     _AppT1_MaxPhaseCurrent_CUR
    0000dea8     37a (0000de80)     _AppT1_OlEnabled_MP
    0000deaa     37a (0000de80)     _AppT1_Precommutation_CUR
    0000deac     37a (0000de80)     _AppT1_arcEstimatedAngleEl_MP
    0000deae     37a (0000de80)     _AppT1_bBlockageReleased_MP
    0000deb0     37a (0000de80)     _AppT1_bResetControl_MP
    0000deb2     37a (0000de80)     _AppT1_facGainDcLink_CUR
    0000deb4     37a (0000de80)     _AppT1_iDirectAxis_MP
    0000deb6     37a (0000de80)     _AppT1_iDirectError_MP
    0000deb8     37a (0000de80)     _AppT1_iPhaseU_MP
    0000deba     37a (0000de80)     _AppT1_iPhaseV_MP
    0000debc     37a (0000de80)     _AppT1_iPhaseW_MP
    0000debe     37a (0000de80)     _AppT1_iQuadratureAxis_MP
    
    0000dec0     37b (0000dec0)     _AppT1_iQuadratureError_MP
    0000dec2     37b (0000dec0)     _AppT1_nEstimatedSpeedMe_MP
    0000dec4     37b (0000dec0)     _AppT1_nSpeedDesiredRamped_MP
    0000dec6     37b (0000dec0)     _AppT1_nSpeedDesired_MP
    0000dec8     37b (0000dec0)     _AppT1_nSpeedError_MP
    0000deca     37b (0000dec0)     _AppT1_trqEstimatedTorque_MP
    0000decc     37b (0000dec0)     _AppT1_uDDesired_MP
    0000dece     37b (0000dec0)     _AppT1_uDirectAxis_MP
    0000ded0     37b (0000dec0)     _AppT1_uPhaseU_MP
    0000ded2     37b (0000dec0)     _AppT1_uPhaseV_MP
    0000ded4     37b (0000dec0)     _AppT1_uPhaseW_MP
    0000ded6     37b (0000dec0)     _AppT1_uQDesired_MP
    0000ded8     37b (0000dec0)     _AppT1_uQuadratureAxis_MP
    0000deda     37b (0000dec0)     _Hfi_arcEstimatedPositionEl_MP
    0000dedc     37b (0000dec0)     _Post_uDDesired_MP
    0000dede     37b (0000dec0)     _Post_uQDesired_MP
    
    0000df68     37d (0000df40)     _SysPa_SpeedMinTarget_C
    0000df69     37d (0000df40)     _SysPa_EnableFlystart_C
    0000df6a     37d (0000df40)     _SysPa_EnableLimpMode_C
    0000df6b     37d (0000df40)     _SysPa_InvertRotDir_C
    0000df6c     37d (0000df40)     _SysPa_EnableHeaterFeature_C
    0000df6e     37d (0000df40)     _SysPa_Zp_C
    0000df70     37d (0000df40)     _SysPa_nMax_C
    0000df72     37d (0000df40)     _SysPa_nNearZeroSpeed_C
    0000df74     37d (0000df40)     _SysPa_tMaxMotorCoil_C
    0000df76     37d (0000df40)     _SysPa_trqMax_C
    0000df78     37d (0000df40)     _AppT1_MaxPhaseCurrent_CUR_Table
    
    0000e07c     381 (0000e040)     _ActualTimerValue
    
    0000e080     382 (0000e080)     _AppT3_tIgbtFiltred_MP
    0000e081     382 (0000e080)     _AppT3_tMotorCoil_MP
    0000e082     382 (0000e080)     _AppT3_tPcbFiltred_MP
    0000e090     382 (0000e080)     _AppT3_Eta_C
    0000e092     382 (0000e080)     _AppT3_MechTimeConstant_C
    0000e094     382 (0000e080)     _AppT3_R20_C
    0000e096     382 (0000e080)     _AppT3_ResetCanTimeout_C
    0000e098     382 (0000e080)     _AppT3_RsFilterTime_C
    0000e09a     382 (0000e080)     _AppT3_TempCoefficientAlpha_C
    0000e09c     382 (0000e080)     _AppT3_TemperatureFilterTime_C
    0000e09e     382 (0000e080)     _AppT3_swtOffsetHrbCwa_C
    0000e0a0     382 (0000e080)     _AppT3_uDcFilterTime_C
    0000e0a2     382 (0000e080)     _AppT3_CanTimeoutPerm_MP
    0000e0a4     382 (0000e080)     _AppT3_CoastOutTime_MP
    0000e0a6     382 (0000e080)     _AppT3_ExtOpCounter_MP
    0000e0a8     382 (0000e080)     _AppT3_MechDampingCurve_CUR
    0000e0aa     382 (0000e080)     _AppT3_OffsetsIu_MP
    0000e0ac     382 (0000e080)     _AppT3_OffsetsIv_MP
    0000e0ae     382 (0000e080)     _AppT3_OffsetsIw_MP
    0000e0b0     382 (0000e080)     _AppT3_OffsetsVu_MP
    0000e0b2     382 (0000e080)     _AppT3_OffsetsVv_MP
    0000e0b4     382 (0000e080)     _AppT3_OffsetsVw_MP
    0000e0b6     382 (0000e080)     _AppT3_RpmMechFreezed_MP
    0000e0b8     382 (0000e080)     _AppT3_RsFiltredContinuous_MP
    0000e0ba     382 (0000e080)     _AppT3_Rs_MP
    0000e0bc     382 (0000e080)     _AppT3_Task10ms_MP
    0000e0be     382 (0000e080)     _AppT3_Task1ms_MP
    
    0000e0c0     383 (0000e0c0)     _AppT3_Task50us_MP
    0000e0c2     383 (0000e0c0)     _AppT3_TorqueFreezed_MP
    0000e0c4     383 (0000e0c0)     _AppT3_bEnablePwmInternal_MP
    0000e0c6     383 (0000e0c0)     _AppT3_iDcLink_MP
    0000e0c8     383 (0000e0c0)     _AppT3_iDcRaw_MP
    0000e0ca     383 (0000e0c0)     _AppT3_iOffset_MP
    0000e0cc     383 (0000e0c0)     _AppT3_nEstSpeedAbsMe_MP
    0000e0ce     383 (0000e0c0)     _AppT3_pwrEffective_MP
    0000e0d0     383 (0000e0c0)     _AppT3_stMotor_MP
    0000e0d2     383 (0000e0c0)     _AppT3_stNetwork_MP
    0000e0d4     383 (0000e0c0)     _AppT3_uDcLinkFiltred_MP
    0000e0d6     383 (0000e0c0)     _AppT3_uDcLink_MP
    
    0000e126     384 (0000e100)     _ActualStateFeedback
    0000e135     384 (0000e100)     _statusRsCalib
    0000e136     384 (0000e100)     _EstIn
    
    0000e140     385 (0000e140)     _XCP_test_01
    0000e141     385 (0000e140)     _XCP_test_02
    0000e142     385 (0000e140)     _XCP_test_03
    0000e143     385 (0000e140)     _XCP_test_04
    0000e144     385 (0000e140)     _XCP_test_05
    0000e145     385 (0000e140)     _XCP_test_06
    0000e146     385 (0000e140)     _XCP_test_07
    0000e147     385 (0000e140)     _XCP_test_08
    0000e148     385 (0000e140)     _temperatureIGBT_C
    0000e149     385 (0000e140)     _temperatureIGBT_0p1C
    0000e14a     385 (0000e140)     _stimTempIGBT
    0000e14b     385 (0000e140)     _stimTempPCB
    0000e14c     385 (0000e140)     _temperatureTest_C
    0000e14d     385 (0000e140)     _IGBT_TempRawSignal
    0000e14e     385 (0000e140)     _IGBT_TempRawSignalShifted
    0000e14f     385 (0000e140)     _temperaturePCB_C
    0000e150     385 (0000e140)     _gDC_Current_100mA
    0000e151     385 (0000e140)     _meaSupplyCurrent_100mA
    0000e152     385 (0000e140)     _HVdisChargeRawSignal
    0000e153     385 (0000e140)     _LVsupplyRawSignal
    0000e154     385 (0000e140)     _meaHVdisChargeVoltage_V
    0000e155     385 (0000e140)     _meaLVSupplyVoltage_mV
    0000e156     385 (0000e140)     _Ref3V3P5RawSignal
    0000e157     385 (0000e140)     _meaRef3V3P5Voltage_mV
    0000e158     385 (0000e140)     _current_Test
    0000e15b     385 (0000e140)     _meaIqActualValue_10mA
    0000e15c     385 (0000e140)     _meaIqMeanValue_10mA
    0000e15d     385 (0000e140)     _meaSpeedActValue_rpm
    0000e15e     385 (0000e140)     _meaSpeedMeanValue_rpm
    0000e160     385 (0000e140)     _iDC
    0000e162     385 (0000e140)     _etaElectricalFactor
    0000e164     385 (0000e140)     _test1_float
    0000e166     385 (0000e140)     _voltageCorrRawSignal
    0000e168     385 (0000e140)     _gConsumedPower_W
    0000e16a     385 (0000e140)     _gDC_Current_A
    0000e16c     385 (0000e140)     _gMotorMechPower_W
    0000e16e     385 (0000e140)     _gMotorMechPower_W_Filtered
    0000e170     385 (0000e140)     _gConsumedPower_W_Filtered
    0000e172     385 (0000e140)     _gDC_Current_A_Filtered
    0000e174     385 (0000e140)     _meaActSpeedKrpmFiltrd
    0000e176     385 (0000e140)     _tempIGBTpt1Filter
    0000e178     385 (0000e140)     _tempPCBpt1Filter
    0000e17a     385 (0000e140)     _qCurrpt1Filter
    0000e17c     385 (0000e140)     _MotorMechPowerpt1Filter
    
    0000e180     386 (0000e180)     _ConsumedPowerpt1Filter
    0000e184     386 (0000e180)     _DC_Currentpt1Filter
    0000e188     386 (0000e180)     _actSpeedKrpmpt1Filter
    
    0000e200     388 (0000e200)     _HistogramFields2D
    
    0000e2f8     38b (0000e2c0)     _AppT1_MaxPhaseCurrent_CUR_xAxis
    
    0000e300     38c (0000e300)     _DIAG_HysteresisTemperature_C
    0000e301     38c (0000e300)     _DIAG_IgbtOvertempEmergValue_C
    0000e302     38c (0000e300)     _DIAG_IgbtOvertempWarnValue_C
    0000e303     38c (0000e300)     _DIAG_PcbOvertempEmergValue_C
    0000e304     38c (0000e300)     _DIAG_PcbOvertempWarnValue_C
    0000e308     38c (0000e300)     _DIAG_BlockedWaitTime_C
    0000e30a     38c (0000e300)     _DIAG_OvervoltEmergValue_C
    0000e30c     38c (0000e300)     _DIAG_OvervoltResetValue_C
    0000e30e     38c (0000e300)     _DIAG_SwBlockDetection_C
    0000e310     38c (0000e300)     _DIAG_UndervoltEmergValue_C
    0000e312     38c (0000e300)     _DIAG_UndervoltResetValue_C
    0000e314     38c (0000e300)     _DIAG_CanTimeout_MP
    0000e316     38c (0000e300)     _DIAG_Drv8305Misc_MP
    0000e318     38c (0000e300)     _DIAG_Drv8305Overtemperature_MP
    0000e31a     38c (0000e300)     _DIAG_Drv8305Undervoltage_MP
    0000e31c     38c (0000e300)     _DIAG_EepromWarning_MP
    0000e31e     38c (0000e300)     _DIAG_HvOvervoltage_MP
    0000e320     38c (0000e300)     _DIAG_HvUndervoltage_MP
    0000e322     38c (0000e300)     _DIAG_IgbtEmergency_MP
    0000e324     38c (0000e300)     _DIAG_IgbtWarning_MP
    0000e326     38c (0000e300)     _DIAG_MotBlocked_MP
    0000e328     38c (0000e300)     _DIAG_OvercurrentPeak_MP
    0000e32a     38c (0000e300)     _DIAG_PcbEmergency_MP
    0000e32c     38c (0000e300)     _DIAG_PcbWarning_MP
    0000e32e     38c (0000e300)     _DIAG_PhaseLost_MP
    0000e330     38c (0000e300)     _DIAG_UnexpectedReset_MP
    0000e332     38c (0000e300)     _DIAG_iRmsU_MP
    0000e334     38c (0000e300)     _DIAG_iRmsV_MP
    0000e336     38c (0000e300)     _DIAG_iRmsW_MP
    
    0000e376     38d (0000e340)     _message
    
    0000e380     38e (0000e380)     _StateNm
    0000e381     38e (0000e380)     _NetworkState
    0000e382     38e (0000e380)     _Flag_EnableCanSendFrames
    0000e383     38e (0000e380)     _Flag_EnablePduTransmit
    0000e384     38e (0000e380)     _ActualNetworkState
    0000e385     38e (0000e380)     _CanNmPB_TxConfirmed
    0000e386     38e (0000e380)     _CanNmPB_RxIndicated
    0000e387     38e (0000e380)     _CanNmPB_RxPduIndRem
    0000e388     38e (0000e380)     _TxPDU
    0000e3a4     38e (0000e380)     _RxPDU
    
    0000e3c0     38f (0000e3c0)     _HistogramFields1D
    0000e3fc     38f (0000e3c0)     _AppT1_Precommutation_CUR_Table
    
    0000e43c     390 (0000e400)     _AppT1_Precommutation_CUR_xAxis
    
    0000e440     391 (0000e440)     _filter
    0000e47c     391 (0000e440)     _AppT3_MechDampingCurve_CUR_Table
    
    0000e4ee     393 (0000e4c0)     _datalogHandle
    0000e4f0     393 (0000e4c0)     _datalog
    0000e4fc     393 (0000e4c0)     _AppT3_MechDampingCurve_CUR_xAxis
    
    0000e500     394 (0000e500)     _CpuCnt_
    0000e50c     394 (0000e500)     _filterHandle
    0000e518     394 (0000e500)     _AppT1_facGainDcLink_CUR_Table
    0000e520     394 (0000e500)     _AppT1_facGainDcLink_CUR_xAxis
    
    0000e550     395 (0000e540)     _CurrentsUVW
    0000e556     395 (0000e540)     _Delta
    0000e55c     395 (0000e540)     _Delta_Mean
    0000e568     395 (0000e540)     _Task_Load_percent_mean
    0000e56e     395 (0000e540)     _TimeOfTask
    0000e574     395 (0000e540)     _VoltagesUVW
    0000e57a     395 (0000e540)     _errOffs
    
    0000e580     396 (0000e580)     _globalSeed
    0000e586     396 (0000e580)     _holdVal
    0000e58c     396 (0000e580)     _sSeed
    0000e592     396 (0000e580)     _testlength
    0000e593     396 (0000e580)     _canEcuNumber
    0000e594     396 (0000e580)     _ui32V_rxIndication
    0000e596     396 (0000e580)     _ui32V_receivedOnce
    0000e59e     396 (0000e580)     ___TI_enable_exit_profile_output
    0000e5a0     396 (0000e580)     ___TI_cleanup_ptr
    0000e5a2     396 (0000e580)     ___TI_dtors_ptr
    0000e5a4     396 (0000e580)     _MLTP_TX_MSG
    0000e5a9     396 (0000e580)     _ExpiryTime
    0000e5ad     396 (0000e580)     _Flag_TimerExpired
    0000e5b1     396 (0000e580)     _HRBState
    
    0000e5c4     397 (0000e5c0)     _TimerEnabled
    0000e5ec     397 (0000e5c0)     _cpuTimer0IntCount
    0000e5ed     397 (0000e5c0)     _cpuTimer1IntCount
    0000e5ee     397 (0000e5c0)     _cpuTimer2IntCount
    0000e5ef     397 (0000e5c0)     _timebaseCounter
    0000e5f0     397 (0000e5c0)     _testSPIread1
    0000e5f1     397 (0000e5c0)     _testSPIread2
    0000e5f4     397 (0000e5c0)     _EnablePwm
    0000e5f5     397 (0000e5c0)     _RxIndicated
    0000e5f6     397 (0000e5c0)     _DiscardCounter
    0000e5f7     397 (0000e5c0)     _Task_Load_percent
    0000e5fb     397 (0000e5c0)     _PageCounter
    0000e5ff     397 (0000e5c0)     _errno
    
    0000e602     398 (0000e600)     __lock
    0000e604     398 (0000e600)     __unlock
    0000e606     398 (0000e600)     _isTxPathLocked
    0000e607     398 (0000e600)     _ReceivedNmFrame
    0000e60c     398 (0000e600)     _psavalue
    0000e60e     398 (0000e600)     _Reset_Trap_Condition
    0000e60f     398 (0000e600)     _ratioCmp1Period
    0000e610     398 (0000e600)     _xcpResource
    0000e611     398 (0000e600)     _length
    
    00083002    20c0 (00083000)     _AppHeader
    00083010    20c0 (00083000)     _Svnrev
    
    0008b290    22ca (0008b280)     _TX_SIG_PAR
    
    0008b650    22d9 (0008b640)     _RX_SIG_PAR
    
    0008b8e4    22e3 (0008b8c0)     _C_DRV_MAILBOX_CFG
    
    0008ba12    22e8 (0008ba00)     _TX_MSG
    
    0008ba55    22e9 (0008ba40)     _RX_MSG
    0008ba69    22e9 (0008ba40)     _FREE_RUNNING_TIMER_1US
    
    0008bac6    22eb (0008bac0)     _kXcpMainVersion
    0008bac7    22eb (0008bac0)     _kXcpSubVersion
    0008bac8    22eb (0008bac0)     _kXcpReleaseVersion
    0008baca    22eb (0008bac0)     _OVERRUN_CALMDOWN_US
    
    
    GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name 
    
    page  address   name                                   
    ----  -------   ----                                   
    0     00084364  .text                                  
    0     00089a74  C$$EXIT                                
    0     00089f48  FD$$TOL                                
    0     000882a6  FS$$DIV                                
    abs   003ee438  FS$$TOFD                               
    0     000899f8  L$$DIV                                 
    0     00089a07  L$$MOD                                 
    0     00089a15  UL$$DIV                                
    0     00089a1c  UL$$MOD                                
    0     000890eb  _ADC_setVREF                           
    1     0000d822  _AccSwitchSpeedHighKrpm                
    1     0000d82c  _AccSwitchSpeedKrpm                    
    1     0000d820  _AccSwitchSpeedLowKrpm                 
    1     0000e384  _ActualNetworkState                    
    1     0000e126  _ActualStateFeedback                   
    1     0000e07c  _ActualTimerValue                      
    0     0000b2c4  _AngleDelayCompensation                
    0     00083002  _AppHeader                             
    0     0000a000  _AppT1                                 
    1     0000dea0  _AppT1_AccT_MP                         
    1     0000de4a  _AppT1_AngleDegOffset_C                
    1     0000dea2  _AppT1_AngleRadComputed_MP             
    1     0000dea4  _AppT1_AngleRadEstimator_MP            
    1     0000de4c  _AppT1_CoilHeatingCurrent_C            
    1     0000de4e  _AppT1_DecLimit_C                      
    1     0000de50  _AppT1_FirstAlignPos_C                 
    1     0000de52  _AppT1_IqRefMan_C                      
    1     0000de54  _AppT1_ManVd_C                         
    1     0000de56  _AppT1_ManVq_C                         
    1     0000dea6  _AppT1_MaxPhaseCurrent_CUR             
    1     0000df78  _AppT1_MaxPhaseCurrent_CUR_Table       
    1     0000e2f8  _AppT1_MaxPhaseCurrent_CUR_xAxis       
    1     0000de58  _AppT1_MaxRatioPreCom_C                
    1     0000de5a  _AppT1_MeasureRsCurrent_C              
    1     0000de5c  _AppT1_MeasureRsKi_C                   
    1     0000de5e  _AppT1_MeasureRsKp_C                   
    1     0000de60  _AppT1_MinRatioPreCom_C                
    1     0000dea8  _AppT1_OlEnabled_MP                    
    1     0000de62  _AppT1_OlGain_C                        
    1     0000de64  _AppT1_PrecommByCharline_C             
    1     0000deaa  _AppT1_Precommutation_CUR              
    1     0000e3fc  _AppT1_Precommutation_CUR_Table        
    1     0000e43c  _AppT1_Precommutation_CUR_xAxis        
    1     0000de66  _AppT1_PulseTime_C                     
    1     0000de68  _AppT1_RiseRateLower_C                 
    1     0000de6a  _AppT1_RiseRateUpper_C                 
    1     0000de6c  _AppT1_RpmDes_C                        
    1     0000de6e  _AppT1_RpmThreshold_C                  
    1     0000de70  _AppT1_SecondAlignPos_C                
    1     0000de72  _AppT1_SpeedKi_C                       
    1     0000de74  _AppT1_SpeedKp_C                       
    1     0000de76  _AppT1_SpeedRefMan_C                   
    1     0000de78  _AppT1_SwAngleShift_C                  
    1     0000de7a  _AppT1_SwEnableStartup_C               
    1     0000de7c  _AppT1_SwIqRefMan_C                    
    1     0000de7e  _AppT1_SwManVdq_C                      
    1     0000de80  _AppT1_SwSpeedRefMan_C                 
    1     0000de82  _AppT1_TimeThreshold_C                 
    1     0000de84  _AppT1_TrajLimit_C                     
    1     0000de86  _AppT1_TrajReset_C                     
    1     0000de88  _AppT1_TrajSlopeDecelLower_C           
    1     0000de8a  _AppT1_TrajSlopeUpper_C                
    1     0000deac  _AppT1_arcEstimatedAngleEl_MP          
    1     0000deae  _AppT1_bBlockageReleased_MP            
    1     0000deb0  _AppT1_bResetControl_MP                
    1     0000de8c  _AppT1_dCurrentKi_C                    
    1     0000de8e  _AppT1_dCurrentKp_C                    
    1     0000deb2  _AppT1_facGainDcLink_CUR               
    1     0000e518  _AppT1_facGainDcLink_CUR_Table         
    1     0000e520  _AppT1_facGainDcLink_CUR_xAxis         
    1     0000de90  _AppT1_iDDesMan_C                      
    1     0000deb4  _AppT1_iDirectAxis_MP                  
    1     0000deb6  _AppT1_iDirectError_MP                 
    1     0000deb8  _AppT1_iPhaseU_MP                      
    1     0000deba  _AppT1_iPhaseV_MP                      
    1     0000debc  _AppT1_iPhaseW_MP                      
    1     0000debe  _AppT1_iQuadratureAxis_MP              
    1     0000dec0  _AppT1_iQuadratureError_MP             
    1     0000de92  _AppT1_maxVsMaxPu_C                    
    1     0000dec2  _AppT1_nEstimatedSpeedMe_MP            
    1     0000dec4  _AppT1_nSpeedDesiredRamped_MP          
    1     0000dec6  _AppT1_nSpeedDesired_MP                
    1     0000dec8  _AppT1_nSpeedError_MP                  
    1     0000de94  _AppT1_qCurrentKi_C                    
    1     0000de96  _AppT1_qCurrentKp_C                    
    1     0000deca  _AppT1_trqEstimatedTorque_MP           
    1     0000decc  _AppT1_uDDesired_MP                    
    1     0000dece  _AppT1_uDirectAxis_MP                  
    1     0000ded0  _AppT1_uPhaseU_MP                      
    1     0000ded2  _AppT1_uPhaseV_MP                      
    1     0000ded4  _AppT1_uPhaseW_MP                      
    1     0000ded6  _AppT1_uQDesired_MP                    
    1     0000ded8  _AppT1_uQuadratureAxis_MP              
    0     00084d96  _AppT2                                 
    0     00084364  _AppT3                                 
    1     0000e0a2  _AppT3_CanTimeoutPerm_MP               
    1     0000e0a4  _AppT3_CoastOutTime_MP                 
    1     0000e090  _AppT3_Eta_C                           
    1     0000e0a6  _AppT3_ExtOpCounter_MP                 
    1     0000e0a8  _AppT3_MechDampingCurve_CUR            
    1     0000e47c  _AppT3_MechDampingCurve_CUR_Table      
    1     0000e4fc  _AppT3_MechDampingCurve_CUR_xAxis      
    1     0000e092  _AppT3_MechTimeConstant_C              
    1     0000e0aa  _AppT3_OffsetsIu_MP                    
    1     0000e0ac  _AppT3_OffsetsIv_MP                    
    1     0000e0ae  _AppT3_OffsetsIw_MP                    
    1     0000e0b0  _AppT3_OffsetsVu_MP                    
    1     0000e0b2  _AppT3_OffsetsVv_MP                    
    1     0000e0b4  _AppT3_OffsetsVw_MP                    
    1     0000e094  _AppT3_R20_C                           
    1     0000e096  _AppT3_ResetCanTimeout_C               
    1     0000e0b6  _AppT3_RpmMechFreezed_MP               
    1     0000e098  _AppT3_RsFilterTime_C                  
    1     0000e0b8  _AppT3_RsFiltredContinuous_MP          
    1     0000e0ba  _AppT3_Rs_MP                           
    1     0000e0bc  _AppT3_Task10ms_MP                     
    1     0000e0be  _AppT3_Task1ms_MP                      
    1     0000e0c0  _AppT3_Task50us_MP                     
    1     0000e09a  _AppT3_TempCoefficientAlpha_C          
    1     0000e09c  _AppT3_TemperatureFilterTime_C         
    1     0000e0c2  _AppT3_TorqueFreezed_MP                
    1     0000e0c4  _AppT3_bEnablePwmInternal_MP           
    1     0000e0c6  _AppT3_iDcLink_MP                      
    1     0000e0c8  _AppT3_iDcRaw_MP                       
    1     0000e0ca  _AppT3_iOffset_MP                      
    1     0000e0cc  _AppT3_nEstSpeedAbsMe_MP               
    1     0000e0ce  _AppT3_pwrEffective_MP                 
    1     0000e0d0  _AppT3_stMotor_MP                      
    1     0000e0d2  _AppT3_stNetwork_MP                    
    1     0000e09e  _AppT3_swtOffsetHrbCwa_C               
    1     0000e080  _AppT3_tIgbtFiltred_MP                 
    1     0000e081  _AppT3_tMotorCoil_MP                   
    1     0000e082  _AppT3_tPcbFiltred_MP                  
    1     0000e0a0  _AppT3_uDcFilterTime_C                 
    1     0000e0d4  _AppT3_uDcLinkFiltred_MP               
    1     0000e0d6  _AppT3_uDcLink_MP                      
    0     00088f3f  _AppT4                                 
    0     00088f88  _AppT5                                 
    0     0008a940  _ApplXcpGetPointer                     
    0     000888d2  _ApplXcpGetSeed                        
    0     00086b31  _ApplXcpInterruptDisable               
    0     0008758d  _ApplXcpInterruptEnable                
    0     0008a199  _ApplXcpSend                           
    0     000898a3  _ApplXcpUnlock                         
    0     0008852e  _Appl_cpuTimers_init                   
    0     0008a25d  _CAN_initModule                        
    0     0008905f  _CAN_readMessage                       
    0     0008963b  _CAN_sendMessage                       
    0     0008959f  _CAN_setBitTiming                      
    0     00087df5  _CAN_setupMessageObject                
    0     0008a8c5  _CLARKE_init                           
    0     0008a7dd  _CPUTimer_setEmulationMode             
    0     0008b8e4  _C_DRV_MAILBOX_CFG                     
    0     00087694  _Calib                                 
    0     0008a759  _CanNmPB_AckEnableSendFrames           
    0     0008a117  _CanNmPB_BusSleepMode                  
    0     0008a536  _CanNmPB_CheckPDURxConfirmation        
    0     00089ac5  _CanNmPB_ExecTimer                     
    0     0008a3df  _CanNmPB_GetNetworkStateFromApplication
    0     00087bfc  _CanNmPB_GetPDU                        
    0     0008a8c9  _CanNmPB_GetPDURxConfirmation          
    0     0008a131  _CanNmPB_Init                          
    0     0008a47b  _CanNmPB_NormalOperationState          
    0     0008a6f6  _CanNmPB_PowerOff                      
    0     00089d44  _CanNmPB_PrepareBusSleepMode           
    0     0008a393  _CanNmPB_ReadySleepState               
    0     0008a692  _CanNmPB_RepeatMessageState            
    0     0008a843  _CanNmPB_ResetTransitions              
    1     0000e386  _CanNmPB_RxIndicated                   
    0     0008a8c9  _CanNmPB_RxIndication                  
    1     0000e387  _CanNmPB_RxPduIndRem                   
    0     0008791d  _CanNmPB_SetPDU                        
    0     0008a5f3  _CanNmPB_StartTimer                    
    0     000890a5  _CanNmPB_Statemachine                  
    0     0008a6ff  _CanNmPB_TxConfirmation                
    1     0000e385  _CanNmPB_TxConfirmed                   
    0     0008a5a5  _CanNmPB_main                          
    1     0000c86b  _CanNmRxFlag                           
    1     0000dbaf  _CanTimeoutFlag                        
    abs   00000000  _Cla1ConstLoadSize                     
    0     0000a000  _Cla1ConstLoadStart                    
    0     0000a000  _Cla1ConstRunStart                     
    abs   00000000  _Cla1Prog2LoadSize                     
    0     0000a000  _Cla1Prog2LoadStart                    
    0     0000a000  _Cla1Prog2RunStart                     
    abs   00000000  _Cla1ProgLoadSize                      
    0     0000a000  _Cla1ProgLoadStart                     
    0     0000a000  _Cla1ProgRunStart                      
    1     0000e180  _ConsumedPowerpt1Filter                
    1     0000e500  _CpuCnt_                               
    0     0008a761  _Crc_CalculateCrc16                    
    0     00087ca5  _Crc_Initialize                        
    0     0000ab9b  _CurrentControl                        
    1     0000e550  _CurrentsUVW                           
    0     0008a544  _DATALOG_init                          
    1     0000e184  _DC_Currentpt1Filter                   
    1     0000e308  _DIAG_BlockedWaitTime_C                
    1     0000e314  _DIAG_CanTimeout_MP                    
    1     0000e316  _DIAG_Drv8305Misc_MP                   
    1     0000e318  _DIAG_Drv8305Overtemperature_MP        
    1     0000e31a  _DIAG_Drv8305Undervoltage_MP           
    1     0000e31c  _DIAG_EepromWarning_MP                 
    1     0000cba4  _DIAG_EnableHealing_C                  
    1     0000e31e  _DIAG_HvOvervoltage_MP                 
    1     0000e320  _DIAG_HvUndervoltage_MP                
    1     0000e300  _DIAG_HysteresisTemperature_C          
    1     0000e322  _DIAG_IgbtEmergency_MP                 
    1     0000e301  _DIAG_IgbtOvertempEmergValue_C         
    1     0000e302  _DIAG_IgbtOvertempWarnValue_C          
    1     0000e324  _DIAG_IgbtWarning_MP                   
    1     0000cee4  _DIAG_MatureTime_C                     
    1     0000e326  _DIAG_MotBlocked_MP                    
    1     0000e328  _DIAG_OvercurrentPeak_MP               
    1     0000e30a  _DIAG_OvervoltEmergValue_C             
    1     0000e30c  _DIAG_OvervoltResetValue_C             
    1     0000e32a  _DIAG_PcbEmergency_MP                  
    1     0000e303  _DIAG_PcbOvertempEmergValue_C          
    1     0000e304  _DIAG_PcbOvertempWarnValue_C           
    1     0000e32c  _DIAG_PcbWarning_MP                    
    1     0000e32e  _DIAG_PhaseLost_MP                     
    1     0000e30e  _DIAG_SwBlockDetection_C               
    1     0000e310  _DIAG_UndervoltEmergValue_C            
    1     0000e312  _DIAG_UndervoltResetValue_C            
    1     0000e330  _DIAG_UnexpectedReset_MP               
    1     0000e332  _DIAG_iRmsU_MP                         
    1     0000e334  _DIAG_iRmsV_MP                         
    1     0000e336  _DIAG_iRmsW_MP                         
    0     0008a552  _DMA_configAddresses                   
    0     0008a69c  _DMA_configBurst                       
    0     00087f31  _DMA_configMode                        
    0     0008a560  _DMA_configTransfer                    
    0     0008a931  _DRV8305_init                          
    0     0008a942  _DRV8305_setGpioNumber                 
    0     0008a944  _DRV8305_setSpiHandle                  
    0     0008a08d  _DeleteHistogramData                   
    1     0000e556  _Delta                                 
    1     0000e55c  _Delta_Mean                            
    1     0000e5f6  _DiscardCounter                        
    0     0008a708  _EPWM_setEmulationMode                 
    abs   003ed3e8  _EST_computeTorque_Nm                  
    abs   003ed1c4  _EST_configureTraj                     
    abs   003ed1be  _EST_disable                           
    abs   003ed1b5  _EST_disableTraj                       
    abs   003ed18c  _EST_enable                            
    abs   003ed127  _EST_getFe_Hz                          
    abs   003ed0ad  _EST_getFlux_Wb                        
    abs   003ed059  _EST_getFm_lp_Hz                       
    abs   003ecfae  _EST_getIdRated_A                      
    abs   003ecf6b  _EST_getIntValue_Id_A                  
    abs   003ecf12  _EST_getLs_d_H                         
    abs   003ecede  _EST_getLs_q_H                         
    abs   003ed44c  _EST_getRoverL_rps                     
    abs   003ecdf6  _EST_getRr_Ohm                         
    abs   003ecd4e  _EST_getRsOnLine_Ohm                   
    abs   003ecd1c  _EST_getRs_Ohm                         
    abs   003eb000  _EST_getState                          
    abs   003ecc59  _EST_getTrajState                      
    abs   003ecbde  _EST_initEst                           
    abs   003ecaed  _EST_isError                           
    abs   003ecad7  _EST_isMotorIdentified                 
    abs   003ecab6  _EST_isTrajError                       
    abs   003ec9ee  _EST_run                               
    abs   003eb8e1  _EST_setFlag_bypassLockRotor           
    abs   003eb8f6  _EST_setFlag_enableForceAngle          
    abs   003ebfc8  _EST_setFlag_enablePowerWarp           
    abs   003eb8fd  _EST_setFlag_enableRsRecalc            
    abs   003ebf39  _EST_setIdq_ref_A                      
    abs   003eb915  _EST_setParams                         
    abs   003eb581  _EST_updateId_ref_A                    
    abs   003eb2b3  _EST_updateState                       
    abs   003eb00a  _EST_updateTrajState                   
    0     00088786  _Eep_ReadData16bit                     
    0     00088713  _Eep_WriteData16bit                    
    1     0000e5f4  _EnablePwm                             
    1     0000dd03  _ErrFlagPhaseProof                     
    0     0008a8cd  _ErrorNvm                              
    1     0000e136  _EstIn                                 
    0     0008a769  _EstStoreIdRef                         
    1     0000e5a9  _ExpiryTime                            
    0     0008a8d1  _FILTER_FO_init                        
    0     0008a934  _FILTER_FO_setDenCoeffs                
    0     0008a7e3  _FILTER_FO_setInitialConditions        
    0     0008a848  _FILTER_FO_setNumCoeffs                
    0     0000a9e0  _FOC                                   
    0     0008ba69  _FREE_RUNNING_TIMER_1US                
    1     0000d9b6  _Fapi_GlobalInit                       
    0     0008984b  _Fapi_calculateFletcherChecksum        
    0     0008a62f  _Fapi_checkFsmForReady                 
    0     0008a4eb  _Fapi_doVerify                         
    0     0008a3a6  _Fapi_flushPipeline                    
    0     0008a7c1  _Fapi_getFsmStatus                     
    0     00087d4e  _Fapi_initializeAPI                    
    0     00089bc9  _Fapi_isAddressEcc                     
    0     00088a76  _Fapi_issueAsyncCommandWithAddress     
    0     00086d21  _Fapi_issueProgrammingCommand          
    0     0008a946  _Fapi_serviceWatchdogTimer             
    0     00089766  _Fapi_setActiveFlashBank               
    0     00089a9d  _Fapi_setupBankSectorEnable            
    0     00088bfc  _Fapi_setupEepromSectorEnable          
    1     0000d9d0  _Fast_InputDataBus                     
    1     0000d9c4  _Fast_OutputData                       
    0     0000b1c0  _FilterAlphaCurrentDoubleCarrier       
    0     0000b201  _FilterAlphaCurrentSingleCarrier       
    0     0000b242  _FilterBetaCurrentDoubleCarrier        
    0     0000b283  _FilterBetaCurrentSingleCarrier        
    1     0000dd00  _FinishedOffsetLearning                
    1     0000dd04  _FinishedSelftest                      
    1     0000e382  _Flag_EnableCanSendFrames              
    1     0000e383  _Flag_EnablePduTransmit                
    1     0000e5ad  _Flag_TimerExpired                     
    1     0000d7c8  _Flag_enableOffsetcalibration          
    0     0000b17b  _Flash_initModule                      
    0     00089d86  _GPIO_setAnalogMode                    
    0     00089e4c  _GPIO_setDirectionMode                 
    0     00089e6c  _GPIO_setInterruptPin                  
    0     00089c9a  _GPIO_setMasterCore                    
    0     0008938b  _GPIO_setPadConfig                     
    0     00089706  _GPIO_setPinConfig                     
    0     00089cbc  _GPIO_setQualificationMode             
    0     0008a0e1  _GPIO_setQualificationPeriod           
    0     0008a426  _GRAPH_DataPointerInit                 
    0     0000b10b  _GenerateHfCarrier                     
    0     00089fdf  _GetByte                               
    0     00089130  _GetDelta                              
    0     0008a437  _GetHistStartAdress1D                  
    0     0008a7c8  _GetHistStartAdress2D                  
    0     0008966e  _GetMaxTaskLoad_InPercent              
    0     000896a1  _GetMeanTaskLoad_InPercent             
    0     0008a8d5  _GetRxIndication                       
    0     0008a8d9  _GetStatusCalib                        
    0     0008a8dd  _Get_Nvm_BootIdOffset                  
    0     0008a8e1  _Get_Nvm_CAN_IdOffset                  
    0     0008a84d  _Get_Nvm_CurrentOffsetU                
    0     0008a852  _Get_Nvm_CurrentOffsetV                
    0     0008a857  _Get_Nvm_CurrentOffsetW                
    0     0008a8e5  _Get_Nvm_DeliveryDate                  
    0     0008a8e9  _Get_Nvm_HardwareVersion               
    0     0008a8ed  _Get_Nvm_SerialNumber                  
    0     0008a85c  _Get_Nvm_VoltageOffsetU                
    0     0008a861  _Get_Nvm_VoltageOffsetV                
    0     0008a866  _Get_Nvm_VoltageOffsetW                
    0     0008a6a6  _HAL_clearTimerFlag                    
    0     0008a2a2  _HAL_enableAdcInts                     
    0     0008a937  _HAL_enableDebugInt                    
    0     0008a8f1  _HAL_enableGlobalInts                  
    0     0008a6b0  _HAL_getTimerStatus                    
    0     00087846  _HAL_init                              
    0     000885a9  _HAL_setParams                         
    0     0008776e  _HAL_setupAdcs                         
    0     00089447  _HAL_setupDlogDMA                      
    0     000892c8  _HAL_setupFaults                       
    0     0008a448  _HAL_setupGate                         
    0     0008573e  _HAL_setupGpios                        
    0     00089795  _HAL_setupPeripheralClks               
    0     00087b52  _HAL_setupPwmDacs                      
    0     00086f01  _HAL_setupPwms                         
    0     000880fe  _HAL_setupSciA                         
    0     00089f85  _HAL_setupSpiA                         
    0     000891ba  _HAL_setupSpiB                         
    0     00089175  _HAL_setupTimers                       
    1     0000e5b1  _HRBState                              
    1     0000e152  _HVdisChargeRawSignal                  
    0     0000ae89  _Hfi                                   
    1     0000de98  _Hfi_HarmonicCorrectionGain_C          
    1     0000de9a  _Hfi_PllKi_C                           
    1     0000de9c  _Hfi_PllKp_C                           
    1     0000deda  _Hfi_arcEstimatedPositionEl_MP         
    1     0000de9e  _Hfi_uCarrierGain_C                    
    1     0000e3c0  _HistogramFields1D                     
    1     0000e200  _HistogramFields2D                     
    0     00089b38  _HwIoConnectorLv_InitAIOs              
    1     0000e14d  _IGBT_TempRawSignal                    
    1     0000e14e  _IGBT_TempRawSignalShifted             
    0     0008a8f5  _IPARK_init                            
    1     0000d83a  _Iab_in_A                              
    1     0000d7e0  _IdRated_A                             
    1     0000d858  _IdqSet_A                              
    1     0000d840  _Idq_in_A                              
    1     0000d836  _Idq_offset_A                          
    1     0000d832  _Idq_ref_A                             
    1     0000d9ca  _InRte                                 
    0     0008a7e9  _IncOHCounter                          
    0     00088a10  _InitCan                               
    0     0008a215  _InitHistograms                        
    0     00087ca6  _InitNvM                               
    0     00089bec  _InitOffsets                           
    0     00089b5d  _InitWatchdog                          
    0     00088fd0  _Interrupt_disable                     
    0     000895d3  _Interrupt_enable                      
    0     00089309  _Interrupt_initModule                  
    0     0008a2b9  _Interrupt_initVectorTable             
    1     0000d826  _KIspeed                               
    1     0000d82a  _KIspeedDelta                          
    1     0000d81a  _KIspeedLowered                        
    1     0000d81e  _KIspeedOperate                        
    1     0000d824  _KPspeed                               
    1     0000d828  _KPspeedDelta                          
    1     0000d818  _KPspeedLowered                        
    1     0000d81c  _KPspeedOperate                        
    1     0000e153  _LVsupplyRawSignal                     
    1     0000e5a4  _MLTP_TX_MSG                           
    0     00087327  _MOTOR_rms_calculation                 
    0     0000b085  _MOTOR_rms_sampling                    
    0     00087e93  _MOTOR_variables_init                  
    0     000879e6  _MOTOR_variables_update                
    1     0000d830  _MaxAccDelta_krpmps                    
    1     0000d82e  _MaxAcc_krpmps                         
    1     0000e17c  _MotorMechPowerpt1Filter               
    1     0000d7e2  _MotorVariant                          
    1     0000dbae  _MultipleCanFrames                     
    1     0000e381  _NetworkState                          
    0     00089a22  _NvMInitTable1D                        
    0     000893ca  _NvMInitTable2D                        
    0     0008832e  _NvMUpdate                             
    0     0008a711  _Nvm_ImmediatelyWriteRequest           
    0     0008a86b  _Nvm_ImmediatelyWriteSet               
    0     0008baca  _OVERRUN_CALMDOWN_US                   
    1     0000d7c2  _OffsetLearnRequested                  
    1     0000dbb6  _OffsetValue                           
    1     0000da18  _OutAppT1                              
    1     0000d9da  _OutAppT2                              
    1     0000da40  _OutAppT3                              
    1     0000da00  _OutAppT4                              
    1     0000d9c0  _OutAppT5                              
    1     0000da80  _OutRte                                
    0     0008a8fd  _PARK_init                             
    0     0008a901  _PI_init                               
    1     0000e5fb  _PageCounter                           
    0     0000afa6  _PostProcessing                        
    1     0000dedc  _Post_uDDesired_MP                     
    1     0000dede  _Post_uQDesired_MP                     
    1     0000d7c1  _PwmInternalEnable                     
    0     0008ba55  _RX_MSG                                
    0     0008b650  _RX_SIG_PAR                            
    0     00084361  _RamfuncsLoadEnd                       
    abs   00001331  _RamfuncsLoadSize                      
    0     00083030  _RamfuncsLoadStart                     
    0     0000b331  _RamfuncsRunEnd                        
    abs   00001331  _RamfuncsRunSize                       
    0     0000a000  _RamfuncsRunStart                      
    1     0000d814  _RampDownAcc_krpmps                    
    1     0000d812  _RampUpAcc_krpmps                      
    1     0000e607  _ReceivedNmFrame                       
    1     0000d816  _ReducedStartAcc_krpmps                
    1     0000e156  _Ref3V3P5RawSignal                     
    0     00089c0f  _ReloadOffsetValues                    
    0     0008a5bf  _ReportPowerConsumption                
    0     0008a6ba  _ResetIntoBootloader                   
    0     0008a905  _ResetStatus                           
    1     0000e60e  _Reset_Trap_Condition                  
    1     0000e5f5  _RxIndicated                           
    1     0000e3a4  _RxPDU                                 
    0     0008a14b  _SCI_disableInterrupt                  
    0     0008a165  _SCI_enableInterrupt                   
    0     00089da7  _SCI_setConfig                         
    0     00089fa3  _SPI_clearInterruptStatus              
    0     00089ecc  _SPI_setConfig                         
    0     0008a909  _SVGENCURRENT_init                     
    0     0008a90d  _SVGEN_init                            
    1     0000dd40  _Selftest                              
    1     0000d7c3  _SelftestRequested                     
    0     0008934a  _Set_Nvm_BootIds                       
    0     0008a6c4  _Set_Nvm_CAN_IdOffset                  
    0     0008a7cf  _Set_Nvm_CurrentOffsetU                
    0     0008a771  _Set_Nvm_CurrentOffsetV                
    0     0008a63a  _Set_Nvm_CurrentOffsetW                
    0     0008a6ce  _Set_Nvm_DeliveryDate                  
    0     0008a6d8  _Set_Nvm_HardwareVersion               
    0     0008a6e2  _Set_Nvm_SerialNumber                  
    0     0008a645  _Set_Nvm_VoltageOffsetU                
    0     0008a650  _Set_Nvm_VoltageOffsetV                
    0     0008a65b  _Set_Nvm_VoltageOffsetW                
    1     0000d7c0  _SoftwareVariant                       
    0     0000ad14  _SpeedControl                          
    1     0000e380  _StateNm                               
    1     0000dbb4  _SvnRev                                
    0     00083010  _Svnrev                                
    0     000897c4  _SwitchPowerstage                      
    0     0000b32d  _SysCtl_delay                          
    0     00087fce  _SysCtl_isPLLValid                     
    0     0008997a  _SysCtl_selectOscSource                
    0     00089877  _SysCtl_selectXTAL                     
    0     00089fc1  _SysCtl_selectXTALSingleEnded          
    0     00088192  _SysCtl_setClock                       
    1     0000df69  _SysPa_EnableFlystart_C                
    1     0000df6c  _SysPa_EnableHeaterFeature_C           
    1     0000df6a  _SysPa_EnableLimpMode_C                
    1     0000df6b  _SysPa_InvertRotDir_C                  
    1     0000df68  _SysPa_SpeedMinTarget_C                
    1     0000df6e  _SysPa_Zp_C                            
    1     0000df70  _SysPa_nMax_C                          
    1     0000df72  _SysPa_nNearZeroSpeed_C                
    1     0000df74  _SysPa_tMaxMotorCoil_C                 
    1     0000df76  _SysPa_trqMax_C                        
    0     0008a911  _TRAJ_init                             
    0     0008ba12  _TX_MSG                                
    0     0008b290  _TX_SIG_PAR                            
    0     00089242  _Tab1DS0I2T3126_e                      
    0     00088c58  _Tab1DS3I2T3126_e                      
    0     00088ef4  _Tab1DS3I4T3126_c                      
    1     0000e5f7  _Task_Load_percent                     
    1     0000e568  _Task_Load_percent_mean                
    1     0000e56e  _TimeOfTask                            
    1     0000e5c4  _TimerEnabled                          
    1     0000e388  _TxPDU                                 
    0     000852d2  _USER_setParams                        
    abs   003ee13c  _USER_setParams_priv                   
    0     000883af  _UpdateHistogramData1D                 
    0     00088068  _UpdateHistogramData2D                 
    1     0000d844  _Vab_out_V                             
    1     0000d84c  _Vdq_offset_V                          
    1     0000d848  _Vdq_out_V                             
    1     0000d7d2  _VoltageDcBus                          
    1     0000e574  _VoltagesUVW                           
    0     0008a60b  _WriteActualTime                       
    0     00089c32  _WriteNvM                              
    0     000899a4  _XCP_TX                                
    1     0000e140  _XCP_test_01                           
    1     0000e141  _XCP_test_02                           
    1     0000e142  _XCP_test_03                           
    1     0000e143  _XCP_test_04                           
    1     0000e144  _XCP_test_05                           
    1     0000e145  _XCP_test_06                           
    1     0000e146  _XCP_test_07                           
    1     0000e147  _XCP_test_08                           
    0     00089c55  _XCPonCAN_RX                           
    0     0008a5cc  _XCPonUART_RX                          
    0     0008a94c  _XcpBackground                         
    0     000868ad  _XcpCommand                            
    0     0008a666  _XcpDisconnect                         
    0     00087aa5  _XcpEvent                              
    0     0008a56e  _XcpInit                               
    0     00089f0a  _XcpMemCpy_If                          
    0     0008a7f5  _XcpMemSet                             
    0     0008a315  _XcpSendCallBack                       
    0     00089dc8  _XcpSendCrm                            
    0     0008a779  _XcpSendDto_If                         
    0     0008a919  _XcpSetActiveTl                        
    1     0000c86a  __1msCounter                           
    0     00083000  __APP_ENTRY                            
    0     0008a671  __Fapi_calculateOtpChecksum            
    0     00088db6  __Fapi_checkRegionForValue             
    0     000899ce  __Fapi_divideUnsignedLong              
    0     00089736  __Fapi_issueFsmCommand                 
    0     00088430  __Fapi_loopRegionForValue              
    0     0008a4fa  __Fapi_scaleCycleValues                
    0     000898f9  __Fapi_setupSectorsForWrite            
    1     000002f6  __STACK_END                            
    abs   00000200  __STACK_SIZE                           
    1     0000e5a0  ___TI_cleanup_ptr                      
    1     0000e5a2  ___TI_dtors_ptr                        
    1     0000e59e  ___TI_enable_exit_profile_output       
    abs   ffffffff  ___TI_pprof_out_hndl                   
    abs   ffffffff  ___TI_prof_data_size                   
    abs   ffffffff  ___TI_prof_data_start                  
    abs   ffffffff  ___binit__                             
    abs   ffffffff  ___c_args__                            
    0     0008a95c  ___cinit__                             
    0     0008a95b  ___etext__                             
    abs   ffffffff  ___pinit__                             
    0     00084364  ___text__                              
    0     0008a1e4  __args_main                            
    1     0000e602  __lock                                 
    0     0008a758  __nop                                  
    0     0008a754  __register_lock                        
    0     0008a750  __register_unlock                      
    1     000000f6  __stack                                
    0     0008a95a  __system_post_cinit                    
    0     0008a952  __system_pre_init                      
    1     0000e604  __unlock                               
    0     00089a74  _abort                                 
    1     0000e188  _actSpeedKrpmpt1Filter                 
    1     0000d7e8  _angleDelta_rad                        
    1     0000d7ea  _angleEst_rad                          
    1     0000d7f0  _angleFoc_rad                          
    1     0000d7ee  _angleGen_rad                          
    1     0000d7ec  _angleSmo_rad                          
    1     0000d7d4  _angle_rad                             
    0     0008a71a  _c_drv_clearRxIndication               
    0     00088e5a  _c_drv_configureMailboxes              
    0     0008a789  _c_drv_getBuffer                       
    0     0008a5d9  _c_drv_getReceivedOnce                 
    0     0008a5e6  _c_drv_getRxIndication                 
    0     000896d4  _c_drv_receiveFrame                    
    0     0008a019  _c_drv_sendFrame                       
    0     00088d60  _c_int00                               
    0     0008a7fb  _c_sig_HV_OvercurrentCont              
    0     0008a875  _c_sig_HV_Overvoltage                  
    0     0008a87a  _c_sig_HV_Undervoltage                 
    0     0008a87f  _c_sig_IGBT_OvertempEmergency          
    0     0008a884  _c_sig_IGBT_OvertempWarning            
    0     0008a801  _c_sig_LV_Undervoltage                 
    0     000887f5  _c_sig_MCU_RomCorrupted                
    0     0008a889  _c_sig_MCU_UnexpReset                  
    0     0008a807  _c_sig_Mot_DryRunEmergency             
    0     0008a80d  _c_sig_Mot_DryRunWarning               
    0     0008a954  _c_sig_Mot_FanBlockedPerm              
    0     0008a88e  _c_sig_Mot_FanBlockedTemp              
    0     0008a955  _c_sig_Mot_SpeedMeasUnpl               
    0     0008a893  _c_sig_PCB_OvertempEmergency           
    0     0008a898  _c_sig_PCB_OvertempWarning             
    0     0008a89d  _c_sig_PostFailed                      
    0     000887f6  _c_sig_copyRxMessage                   
    0     0008821d  _c_sig_copyTxMessage                   
    0     0008a723  _c_sig_getHeaterEnableFlag             
    0     0008a72c  _c_sig_getRxSignal                     
    0     0008a48b  _c_sig_getSetpointLimpMode_rpm         
    0     0008a49b  _c_sig_getSpeedSetpoint_rpm            
    0     00089018  _c_sig_init                            
    0     0008a509  _c_sig_isRxSignalUpToDate              
    0     0008a58a  _c_sig_saturateTxSignal                
    0     0008a4ab  _c_sig_setActualCurrent_100mA          
    0     0008a17f  _c_sig_setActualSpeed                  
    0     0008a37f  _c_sig_setActualVoltage                
    0     0008a813  _c_sig_setD_Current_100mA              
    0     0008a956  _c_sig_setDeviceEnabled                
    0     0008a819  _c_sig_setExtOperated                  
    0     0008a8a2  _c_sig_setIgbtTemperature              
    0     0008a8a7  _c_sig_setPcbTemperature               
    0     0008a81f  _c_sig_setQ_Current_100mA              
    0     0008a825  _c_sig_setReserve_1                    
    0     0008a8ac  _c_sig_setSN_Internal                  
    0     0008a8b1  _c_sig_setSN_Major                     
    0     0008a8b6  _c_sig_setSN_Minor                     
    0     0008a8bb  _c_sig_setSemiconductorSw              
    0     0008a3b9  _c_sig_setStatusDevice                 
    0     00089e8c  _c_sig_setTxSignal                     
    0     0008a735  _c_sig_setTxSignalNA                   
    0     0008a93a  _c_tsk_init                            
    0     0008a2e7  _c_tsk_receiveFrames                   
    0     0008a67c  _c_tsk_sendFrames10ms                  
    0     0008a957  _c_tsk_sendFrames1ms                   
    0     0008a958  _c_tsk_sendFrames2s                    
    0     0008a356  _c_tsk_sendOnce                        
    1     0000e593  _canEcuNumber                          
    1     0000d7f2  _clarkeHandle_I                        
    1     0000d7f4  _clarkeHandle_V                        
    1     0000d85c  _clarke_I                              
    1     0000d862  _clarke_V                              
    1     0000dd01  _cnt                                   
    1     0000c868  _cnt_                                  
    1     0000c869  _cnt_2s                                
    0     0008956a  _configCPUTimer                        
    0     00089ba5  _copy_in                               
    0     0008a46a  _copysign                              
    0     0008a46a  _copysignf                             
    0     0008a2fe  _cpuTimer0ISR                          
    1     0000e5ec  _cpuTimer0IntCount                     
    0     0008a4bb  _cpuTimer1ISR                          
    1     0000e5ed  _cpuTimer1IntCount                     
    0     0008a4cb  _cpuTimer2ISR                          
    1     0000e5ee  _cpuTimer2IntCount                     
    0     0008a0a9  _ctd_isElapsed                         
    0     0008a91d  _ctd_isRunning                         
    0     0008a4db  _ctd_startCountdown                    
    0     0008a82b  _ctd_startCountdown_ms                 
    1     0000e158  _current_Test                          
    1     0000e4f0  _datalog                               
    1     0000c880  _datalogBuff1                          
    1     0000cbc0  _datalogBuff2                          
    1     0000cf00  _datalogBuff3                          
    1     0000d240  _datalogBuff4                          
    1     0000e4ee  _datalogHandle                         
    1     0000d7de  _dummy                                 
    0     00088b3d  _eep_readData                          
    0     000889a9  _eep_writeData                         
    1     0000e57a  _errOffs                               
    1     0000e5ff  _errno                                 
    1     0000d7f6  _estHandle                             
    1     0000e162  _etaElectricalFactor                   
    0     00089a76  _exit                                  
    1     0000d7d6  _fe_rps                                
    1     0000e440  _filter                                
    1     0000e50c  _filterHandle                          
    0     00088cb2  _floor                                 
    0     00088cb2  _floorf                                
    1     0000d7dc  _fmDat                                 
    1     0000d7da  _fm_lp_rps                             
    1     0000d7d8  _fm_rps                                
    1     0000d89e  _gAdcData                              
    1     0000d86e  _gAdcDataPrev_A                        
    1     0000d7cc  _gCmpOffset                            
    1     0000e168  _gConsumedPower_W                      
    1     0000e170  _gConsumedPower_W_Filtered             
    1     0000d7c7  _gCounter_TrajId                       
    1     0000d7c6  _gCounter_TrajSpd                      
    1     0000d7c5  _gCounter_speed                        
    1     0000e150  _gDC_Current_100mA                     
    1     0000e16a  _gDC_Current_A                         
    1     0000e172  _gDC_Current_A_Filtered                
    1     0000d8c0  _gEstInputData                         
    1     0000d910  _gEstOutputData                        
    1     0000c040  _gGraphVars                            
    1     0000d7c4  _gLEDcnt                               
    1     0000e16c  _gMotorMechPower_W                     
    1     0000e16e  _gMotorMechPower_W_Filtered            
    1     00000540  _gMotorVars                            
    1     0000d7e4  _gOffsetCalcCount                      
    1     0000d7e6  _gOffsetCalcWaitTime                   
    1     0000d7ce  _gOvercurrentCounter                   
    1     0000d7cd  _gOvercurrentEvent                     
    1     0000d7cf  _gOvercurrentPulseCounter              
    1     00000500  _gPwmDacData                           
    1     0000d8ae  _gPwmData                              
    1     0000d874  _gPwmDataPrev                          
    1     0000c000  _gStepVars                             
    1     00000640  _gUserParams                           
    1     0000e580  _globalSeed                            
    1     0000d940  _hal                                   
    1     0000d7f8  _halHandle                             
    1     0000e586  _holdVal                               
    1     0000e160  _iDC                                   
    1     0000d7ca  _ignoreShuntNextCycle                  
    0     00089285  _initCPUTimers                         
    1     0000d850  _ipark                                 
    1     0000d7fa  _iparkHandle                           
    0     00089a4b  _ipl_functionValue                     
    0     000897f1  _ipl_interpolate                       
    0     0008a921  _isOverCurrentPeakEventTriggered       
    1     0000dbb0  _isTesterPresent                       
    1     0000e606  _isTxPathLocked                        
    0     0008bac6  _kXcpMainVersion                       
    0     0008bac8  _kXcpReleaseVersion                    
    0     0008bac7  _kXcpSubVersion                        
    0     00088d09  _ldexp                                 
    0     00088d09  _ldexpf                                
    1     0000e611  _length                                
    0     00087462  _log                                   
    0     00087462  _logf                                  
    0     00089eac  _main                                  
    0     0000a670  _mainISR                               
    0     0008a925  _main_setInhibitWdogRetrigger          
    0     000894fa  _mavg_addValue                         
    0     0008a7a1  _mavg_create                           
    1     0000e174  _meaActSpeedKrpmFiltrd                 
    1     0000e154  _meaHVdisChargeVoltage_V               
    1     0000e15b  _meaIqActualValue_10mA                 
    1     0000e15c  _meaIqMeanValue_10mA                   
    1     0000e155  _meaLVSupplyVoltage_mV                 
    1     0000e157  _meaRef3V3P5Voltage_mV                 
    1     0000e15d  _meaSpeedActValue_rpm                  
    1     0000e15e  _meaSpeedMeanValue_rpm                 
    1     0000e151  _meaSupplyCurrent_100mA                
    0     0008a929  _mea_getSupplyCurrent_100mA            
    0     0008a7b1  _mea_getTemperatureIGBT_C              
    0     0008a7b9  _mea_getTemperaturePCB_C               
    0     0008893e  _mea_init                              
    0     0008a459  _mea_sampleAndFilterSupplyVoltage      
    0     0008a8c0  _mea_sampleFastSignals                 
    0     0008a73e  _mea_sampleSlowSignals                 
    0     0008a0fc  _mea_sendSignalsToCAN                  
    1     0000d7c9  _measurableShuntThisCycle              
    0     0008a070  _memcpy                                
    1     0000e376  _message                               
    1     0000d7cb  _midVolShunt                           
    0     0008a93d  _mot_init                              
    0     0008a518  _mot_isMotorPowered                    
    0     0008a831  _mot_task                              
    0     000891fe  _os_executeTasks                       
    0     00088e08  _overCurrPeakISR                       
    1     0000d7d0  _overCurrPeakISRcounter                
    1     0000d854  _park                                  
    1     0000d7fc  _parkHandle                            
    1     0000d7fe  _piHandle_Id                           
    1     0000d800  _piHandle_Iq                           
    1     0000d802  _piHandle_fwc                          
    1     0000d804  _piHandle_spd                          
    1     0000d8d0  _pi_Id                                 
    1     0000d8e0  _pi_Iq                                 
    1     0000d8f0  _pi_fwc                                
    1     0000d900  _pi_spd                                
    0     00085f1b  _pow                                   
    0     00085f1b  _powf                                  
    0     0008629c  _proj_lab08_init                       
    0     00087076  _proj_lab08_instaSpin_ReInit           
    0     00085b3e  _proj_lab08_loop                       
    1     0000d7d1  _proj_loop_state                       
    1     0000e60c  _psavalue                              
    0     00089e2b  _pt1_float_addValue                    
    0     0008a0c5  _pt1_float_init                        
    0     0008a617  _pt1_init                              
    1     0000e17a  _qCurrpt1Filter                        
    1     0000e60f  _ratioCmp1Period                       
    0     0008a837  _reInitSpi                             
    0     0000b301  _runEstimator                          
    0     0008758e  _runOffsetsCalculation                 
    0     000871d6  _runSelftest                           
    1     0000e58c  _sSeed                                 
    0     00088d09  _scalbn                                
    0     00088d09  _scalbnf                               
    0     00089b12  _sqrt                                  
    0     00089b12  _sqrtf                                 
    0     0008a94e  _ssi_getPendingService                 
    0     0008a959  _ssi_setPendingService                 
    1     0000e135  _statusRsCalib                         
    1     0000e14a  _stimTempIGBT                          
    1     0000e14b  _stimTempPCB                           
    1     0000d808  _svgen                                 
    1     0000d806  _svgenHandle                           
    1     0000d868  _svgencurrent                          
    1     0000d80a  _svgencurrentHandle                    
    1     0000e176  _tempIGBTpt1Filter                     
    1     0000e178  _tempPCBpt1Filter                      
    1     0000e149  _temperatureIGBT_0p1C                  
    1     0000e148  _temperatureIGBT_C                     
    1     0000e14f  _temperaturePCB_C                      
    1     0000e14c  _temperatureTest_C                     
    1     0000e164  _test1_float                           
    1     0000e5f0  _testSPIread1                          
    1     0000e5f1  _testSPIread2                          
    1     0000dbba  _testerPresentCountdown                
    1     0000e592  _testlength                            
    1     0000e5ef  _timebaseCounter                       
    1     0000d80e  _trajHandle_Id                         
    1     0000d810  _trajHandle_fwc                        
    1     0000d80c  _trajHandle_spd                        
    1     0000d88a  _traj_Id                               
    1     0000d894  _traj_fwc                              
    1     0000d880  _traj_spd                              
    0     0008a623  _trigOverCurrReset                     
    0     0008a747  _uds_init                              
    0     0008a403  _uds_task                              
    1     0000e596  _ui32V_receivedOnce                    
    1     0000e594  _ui32V_rxIndication                    
    1     0000e166  _voltageCorrRawSignal                  
    1     0000dd02  _waitTime                              
    1     0000d580  _xcp                                   
    1     0000e610  _xcpResource                           
    abs   ffffffff  binit                                  
    0     0008a95c  cinit                                  
    0     00083000  code_start                             
    0     0008a95b  etext                                  
    abs   ffffffff  pinit                                  
    
    
    GLOBAL SYMBOLS: SORTED BY Symbol Address 
    
    page  address   name                                   
    ----  -------   ----                                   
    0     0000a000  _AppT1                                 
    0     0000a000  _Cla1ConstLoadStart                    
    0     0000a000  _Cla1ConstRunStart                     
    0     0000a000  _Cla1Prog2LoadStart                    
    0     0000a000  _Cla1Prog2RunStart                     
    0     0000a000  _Cla1ProgLoadStart                     
    0     0000a000  _Cla1ProgRunStart                      
    0     0000a000  _RamfuncsRunStart                      
    0     0000a670  _mainISR                               
    0     0000a9e0  _FOC                                   
    0     0000ab9b  _CurrentControl                        
    0     0000ad14  _SpeedControl                          
    0     0000ae89  _Hfi                                   
    0     0000afa6  _PostProcessing                        
    0     0000b085  _MOTOR_rms_sampling                    
    0     0000b10b  _GenerateHfCarrier                     
    0     0000b17b  _Flash_initModule                      
    0     0000b1c0  _FilterAlphaCurrentDoubleCarrier       
    0     0000b201  _FilterAlphaCurrentSingleCarrier       
    0     0000b242  _FilterBetaCurrentDoubleCarrier        
    0     0000b283  _FilterBetaCurrentSingleCarrier        
    0     0000b2c4  _AngleDelayCompensation                
    0     0000b301  _runEstimator                          
    0     0000b32d  _SysCtl_delay                          
    0     0000b331  _RamfuncsRunEnd                        
    0     00083000  __APP_ENTRY                            
    0     00083000  code_start                             
    0     00083002  _AppHeader                             
    0     00083010  _Svnrev                                
    0     00083030  _RamfuncsLoadStart                     
    0     00084361  _RamfuncsLoadEnd                       
    0     00084364  .text                                  
    0     00084364  _AppT3                                 
    0     00084364  ___text__                              
    0     00084d96  _AppT2                                 
    0     000852d2  _USER_setParams                        
    0     0008573e  _HAL_setupGpios                        
    0     00085b3e  _proj_lab08_loop                       
    0     00085f1b  _pow                                   
    0     00085f1b  _powf                                  
    0     0008629c  _proj_lab08_init                       
    0     000868ad  _XcpCommand                            
    0     00086b31  _ApplXcpInterruptDisable               
    0     00086d21  _Fapi_issueProgrammingCommand          
    0     00086f01  _HAL_setupPwms                         
    0     00087076  _proj_lab08_instaSpin_ReInit           
    0     000871d6  _runSelftest                           
    0     00087327  _MOTOR_rms_calculation                 
    0     00087462  _log                                   
    0     00087462  _logf                                  
    0     0008758d  _ApplXcpInterruptEnable                
    0     0008758e  _runOffsetsCalculation                 
    0     00087694  _Calib                                 
    0     0008776e  _HAL_setupAdcs                         
    0     00087846  _HAL_init                              
    0     0008791d  _CanNmPB_SetPDU                        
    0     000879e6  _MOTOR_variables_update                
    0     00087aa5  _XcpEvent                              
    0     00087b52  _HAL_setupPwmDacs                      
    0     00087bfc  _CanNmPB_GetPDU                        
    0     00087ca5  _Crc_Initialize                        
    0     00087ca6  _InitNvM                               
    0     00087d4e  _Fapi_initializeAPI                    
    0     00087df5  _CAN_setupMessageObject                
    0     00087e93  _MOTOR_variables_init                  
    0     00087f31  _DMA_configMode                        
    0     00087fce  _SysCtl_isPLLValid                     
    0     00088068  _UpdateHistogramData2D                 
    0     000880fe  _HAL_setupSciA                         
    0     00088192  _SysCtl_setClock                       
    0     0008821d  _c_sig_copyTxMessage                   
    0     000882a6  FS$$DIV                                
    0     0008832e  _NvMUpdate                             
    0     000883af  _UpdateHistogramData1D                 
    0     00088430  __Fapi_loopRegionForValue              
    0     0008852e  _Appl_cpuTimers_init                   
    0     000885a9  _HAL_setParams                         
    0     00088713  _Eep_WriteData16bit                    
    0     00088786  _Eep_ReadData16bit                     
    0     000887f5  _c_sig_MCU_RomCorrupted                
    0     000887f6  _c_sig_copyRxMessage                   
    0     000888d2  _ApplXcpGetSeed                        
    0     0008893e  _mea_init                              
    0     000889a9  _eep_writeData                         
    0     00088a10  _InitCan                               
    0     00088a76  _Fapi_issueAsyncCommandWithAddress     
    0     00088b3d  _eep_readData                          
    0     00088bfc  _Fapi_setupEepromSectorEnable          
    0     00088c58  _Tab1DS3I2T3126_e                      
    0     00088cb2  _floor                                 
    0     00088cb2  _floorf                                
    0     00088d09  _ldexp                                 
    0     00088d09  _ldexpf                                
    0     00088d09  _scalbn                                
    0     00088d09  _scalbnf                               
    0     00088d60  _c_int00                               
    0     00088db6  __Fapi_checkRegionForValue             
    0     00088e08  _overCurrPeakISR                       
    0     00088e5a  _c_drv_configureMailboxes              
    0     00088ef4  _Tab1DS3I4T3126_c                      
    0     00088f3f  _AppT4                                 
    0     00088f88  _AppT5                                 
    0     00088fd0  _Interrupt_disable                     
    0     00089018  _c_sig_init                            
    0     0008905f  _CAN_readMessage                       
    0     000890a5  _CanNmPB_Statemachine                  
    0     000890eb  _ADC_setVREF                           
    0     00089130  _GetDelta                              
    0     00089175  _HAL_setupTimers                       
    0     000891ba  _HAL_setupSpiB                         
    0     000891fe  _os_executeTasks                       
    0     00089242  _Tab1DS0I2T3126_e                      
    0     00089285  _initCPUTimers                         
    0     000892c8  _HAL_setupFaults                       
    0     00089309  _Interrupt_initModule                  
    0     0008934a  _Set_Nvm_BootIds                       
    0     0008938b  _GPIO_setPadConfig                     
    0     000893ca  _NvMInitTable2D                        
    0     00089447  _HAL_setupDlogDMA                      
    0     000894fa  _mavg_addValue                         
    0     0008956a  _configCPUTimer                        
    0     0008959f  _CAN_setBitTiming                      
    0     000895d3  _Interrupt_enable                      
    0     0008963b  _CAN_sendMessage                       
    0     0008966e  _GetMaxTaskLoad_InPercent              
    0     000896a1  _GetMeanTaskLoad_InPercent             
    0     000896d4  _c_drv_receiveFrame                    
    0     00089706  _GPIO_setPinConfig                     
    0     00089736  __Fapi_issueFsmCommand                 
    0     00089766  _Fapi_setActiveFlashBank               
    0     00089795  _HAL_setupPeripheralClks               
    0     000897c4  _SwitchPowerstage                      
    0     000897f1  _ipl_interpolate                       
    0     0008984b  _Fapi_calculateFletcherChecksum        
    0     00089877  _SysCtl_selectXTAL                     
    0     000898a3  _ApplXcpUnlock                         
    0     000898f9  __Fapi_setupSectorsForWrite            
    0     0008997a  _SysCtl_selectOscSource                
    0     000899a4  _XCP_TX                                
    0     000899ce  __Fapi_divideUnsignedLong              
    0     000899f8  L$$DIV                                 
    0     00089a07  L$$MOD                                 
    0     00089a15  UL$$DIV                                
    0     00089a1c  UL$$MOD                                
    0     00089a22  _NvMInitTable1D                        
    0     00089a4b  _ipl_functionValue                     
    0     00089a74  C$$EXIT                                
    0     00089a74  _abort                                 
    0     00089a76  _exit                                  
    0     00089a9d  _Fapi_setupBankSectorEnable            
    0     00089ac5  _CanNmPB_ExecTimer                     
    0     00089b12  _sqrt                                  
    0     00089b12  _sqrtf                                 
    0     00089b38  _HwIoConnectorLv_InitAIOs              
    0     00089b5d  _InitWatchdog                          
    0     00089ba5  _copy_in                               
    0     00089bc9  _Fapi_isAddressEcc                     
    0     00089bec  _InitOffsets                           
    0     00089c0f  _ReloadOffsetValues                    
    0     00089c32  _WriteNvM                              
    0     00089c55  _XCPonCAN_RX                           
    0     00089c9a  _GPIO_setMasterCore                    
    0     00089cbc  _GPIO_setQualificationMode             
    0     00089d44  _CanNmPB_PrepareBusSleepMode           
    0     00089d86  _GPIO_setAnalogMode                    
    0     00089da7  _SCI_setConfig                         
    0     00089dc8  _XcpSendCrm                            
    0     00089e2b  _pt1_float_addValue                    
    0     00089e4c  _GPIO_setDirectionMode                 
    0     00089e6c  _GPIO_setInterruptPin                  
    0     00089e8c  _c_sig_setTxSignal                     
    0     00089eac  _main                                  
    0     00089ecc  _SPI_setConfig                         
    0     00089f0a  _XcpMemCpy_If                          
    0     00089f48  FD$$TOL                                
    0     00089f85  _HAL_setupSpiA                         
    0     00089fa3  _SPI_clearInterruptStatus              
    0     00089fc1  _SysCtl_selectXTALSingleEnded          
    0     00089fdf  _GetByte                               
    0     0008a019  _c_drv_sendFrame                       
    0     0008a070  _memcpy                                
    0     0008a08d  _DeleteHistogramData                   
    0     0008a0a9  _ctd_isElapsed                         
    0     0008a0c5  _pt1_float_init                        
    0     0008a0e1  _GPIO_setQualificationPeriod           
    0     0008a0fc  _mea_sendSignalsToCAN                  
    0     0008a117  _CanNmPB_BusSleepMode                  
    0     0008a131  _CanNmPB_Init                          
    0     0008a14b  _SCI_disableInterrupt                  
    0     0008a165  _SCI_enableInterrupt                   
    0     0008a17f  _c_sig_setActualSpeed                  
    0     0008a199  _ApplXcpSend                           
    0     0008a1e4  __args_main                            
    0     0008a215  _InitHistograms                        
    0     0008a25d  _CAN_initModule                        
    0     0008a2a2  _HAL_enableAdcInts                     
    0     0008a2b9  _Interrupt_initVectorTable             
    0     0008a2e7  _c_tsk_receiveFrames                   
    0     0008a2fe  _cpuTimer0ISR                          
    0     0008a315  _XcpSendCallBack                       
    0     0008a356  _c_tsk_sendOnce                        
    0     0008a37f  _c_sig_setActualVoltage                
    0     0008a393  _CanNmPB_ReadySleepState               
    0     0008a3a6  _Fapi_flushPipeline                    
    0     0008a3b9  _c_sig_setStatusDevice                 
    0     0008a3df  _CanNmPB_GetNetworkStateFromApplication
    0     0008a403  _uds_task                              
    0     0008a426  _GRAPH_DataPointerInit                 
    0     0008a437  _GetHistStartAdress1D                  
    0     0008a448  _HAL_setupGate                         
    0     0008a459  _mea_sampleAndFilterSupplyVoltage      
    0     0008a46a  _copysign                              
    0     0008a46a  _copysignf                             
    0     0008a47b  _CanNmPB_NormalOperationState          
    0     0008a48b  _c_sig_getSetpointLimpMode_rpm         
    0     0008a49b  _c_sig_getSpeedSetpoint_rpm            
    0     0008a4ab  _c_sig_setActualCurrent_100mA          
    0     0008a4bb  _cpuTimer1ISR                          
    0     0008a4cb  _cpuTimer2ISR                          
    0     0008a4db  _ctd_startCountdown                    
    0     0008a4eb  _Fapi_doVerify                         
    0     0008a4fa  __Fapi_scaleCycleValues                
    0     0008a509  _c_sig_isRxSignalUpToDate              
    0     0008a518  _mot_isMotorPowered                    
    0     0008a536  _CanNmPB_CheckPDURxConfirmation        
    0     0008a544  _DATALOG_init                          
    0     0008a552  _DMA_configAddresses                   
    0     0008a560  _DMA_configTransfer                    
    0     0008a56e  _XcpInit                               
    0     0008a58a  _c_sig_saturateTxSignal                
    0     0008a5a5  _CanNmPB_main                          
    0     0008a5bf  _ReportPowerConsumption                
    0     0008a5cc  _XCPonUART_RX                          
    0     0008a5d9  _c_drv_getReceivedOnce                 
    0     0008a5e6  _c_drv_getRxIndication                 
    0     0008a5f3  _CanNmPB_StartTimer                    
    0     0008a60b  _WriteActualTime                       
    0     0008a617  _pt1_init                              
    0     0008a623  _trigOverCurrReset                     
    0     0008a62f  _Fapi_checkFsmForReady                 
    0     0008a63a  _Set_Nvm_CurrentOffsetW                
    0     0008a645  _Set_Nvm_VoltageOffsetU                
    0     0008a650  _Set_Nvm_VoltageOffsetV                
    0     0008a65b  _Set_Nvm_VoltageOffsetW                
    0     0008a666  _XcpDisconnect                         
    0     0008a671  __Fapi_calculateOtpChecksum            
    0     0008a67c  _c_tsk_sendFrames10ms                  
    0     0008a692  _CanNmPB_RepeatMessageState            
    0     0008a69c  _DMA_configBurst                       
    0     0008a6a6  _HAL_clearTimerFlag                    
    0     0008a6b0  _HAL_getTimerStatus                    
    0     0008a6ba  _ResetIntoBootloader                   
    0     0008a6c4  _Set_Nvm_CAN_IdOffset                  
    0     0008a6ce  _Set_Nvm_DeliveryDate                  
    0     0008a6d8  _Set_Nvm_HardwareVersion               
    0     0008a6e2  _Set_Nvm_SerialNumber                  
    0     0008a6f6  _CanNmPB_PowerOff                      
    0     0008a6ff  _CanNmPB_TxConfirmation                
    0     0008a708  _EPWM_setEmulationMode                 
    0     0008a711  _Nvm_ImmediatelyWriteRequest           
    0     0008a71a  _c_drv_clearRxIndication               
    0     0008a723  _c_sig_getHeaterEnableFlag             
    0     0008a72c  _c_sig_getRxSignal                     
    0     0008a735  _c_sig_setTxSignalNA                   
    0     0008a73e  _mea_sampleSlowSignals                 
    0     0008a747  _uds_init                              
    0     0008a750  __register_unlock                      
    0     0008a754  __register_lock                        
    0     0008a758  __nop                                  
    0     0008a759  _CanNmPB_AckEnableSendFrames           
    0     0008a761  _Crc_CalculateCrc16                    
    0     0008a769  _EstStoreIdRef                         
    0     0008a771  _Set_Nvm_CurrentOffsetV                
    0     0008a779  _XcpSendDto_If                         
    0     0008a789  _c_drv_getBuffer                       
    0     0008a7a1  _mavg_create                           
    0     0008a7b1  _mea_getTemperatureIGBT_C              
    0     0008a7b9  _mea_getTemperaturePCB_C               
    0     0008a7c1  _Fapi_getFsmStatus                     
    0     0008a7c8  _GetHistStartAdress2D                  
    0     0008a7cf  _Set_Nvm_CurrentOffsetU                
    0     0008a7dd  _CPUTimer_setEmulationMode             
    0     0008a7e3  _FILTER_FO_setInitialConditions        
    0     0008a7e9  _IncOHCounter                          
    0     0008a7f5  _XcpMemSet                             
    0     0008a7fb  _c_sig_HV_OvercurrentCont              
    0     0008a801  _c_sig_LV_Undervoltage                 
    0     0008a807  _c_sig_Mot_DryRunEmergency             
    0     0008a80d  _c_sig_Mot_DryRunWarning               
    0     0008a813  _c_sig_setD_Current_100mA              
    0     0008a819  _c_sig_setExtOperated                  
    0     0008a81f  _c_sig_setQ_Current_100mA              
    0     0008a825  _c_sig_setReserve_1                    
    0     0008a82b  _ctd_startCountdown_ms                 
    0     0008a831  _mot_task                              
    0     0008a837  _reInitSpi                             
    0     0008a843  _CanNmPB_ResetTransitions              
    0     0008a848  _FILTER_FO_setNumCoeffs                
    0     0008a84d  _Get_Nvm_CurrentOffsetU                
    0     0008a852  _Get_Nvm_CurrentOffsetV                
    0     0008a857  _Get_Nvm_CurrentOffsetW                
    0     0008a85c  _Get_Nvm_VoltageOffsetU                
    0     0008a861  _Get_Nvm_VoltageOffsetV                
    0     0008a866  _Get_Nvm_VoltageOffsetW                
    0     0008a86b  _Nvm_ImmediatelyWriteSet               
    0     0008a875  _c_sig_HV_Overvoltage                  
    0     0008a87a  _c_sig_HV_Undervoltage                 
    0     0008a87f  _c_sig_IGBT_OvertempEmergency          
    0     0008a884  _c_sig_IGBT_OvertempWarning            
    0     0008a889  _c_sig_MCU_UnexpReset                  
    0     0008a88e  _c_sig_Mot_FanBlockedTemp              
    0     0008a893  _c_sig_PCB_OvertempEmergency           
    0     0008a898  _c_sig_PCB_OvertempWarning             
    0     0008a89d  _c_sig_PostFailed                      
    0     0008a8a2  _c_sig_setIgbtTemperature              
    0     0008a8a7  _c_sig_setPcbTemperature               
    0     0008a8ac  _c_sig_setSN_Internal                  
    0     0008a8b1  _c_sig_setSN_Major                     
    0     0008a8b6  _c_sig_setSN_Minor                     
    0     0008a8bb  _c_sig_setSemiconductorSw              
    0     0008a8c0  _mea_sampleFastSignals                 
    0     0008a8c5  _CLARKE_init                           
    0     0008a8c9  _CanNmPB_GetPDURxConfirmation          
    0     0008a8c9  _CanNmPB_RxIndication                  
    0     0008a8cd  _ErrorNvm                              
    0     0008a8d1  _FILTER_FO_init                        
    0     0008a8d5  _GetRxIndication                       
    0     0008a8d9  _GetStatusCalib                        
    0     0008a8dd  _Get_Nvm_BootIdOffset                  
    0     0008a8e1  _Get_Nvm_CAN_IdOffset                  
    0     0008a8e5  _Get_Nvm_DeliveryDate                  
    0     0008a8e9  _Get_Nvm_HardwareVersion               
    0     0008a8ed  _Get_Nvm_SerialNumber                  
    0     0008a8f1  _HAL_enableGlobalInts                  
    0     0008a8f5  _IPARK_init                            
    0     0008a8fd  _PARK_init                             
    0     0008a901  _PI_init                               
    0     0008a905  _ResetStatus                           
    0     0008a909  _SVGENCURRENT_init                     
    0     0008a90d  _SVGEN_init                            
    0     0008a911  _TRAJ_init                             
    0     0008a919  _XcpSetActiveTl                        
    0     0008a91d  _ctd_isRunning                         
    0     0008a921  _isOverCurrentPeakEventTriggered       
    0     0008a925  _main_setInhibitWdogRetrigger          
    0     0008a929  _mea_getSupplyCurrent_100mA            
    0     0008a931  _DRV8305_init                          
    0     0008a934  _FILTER_FO_setDenCoeffs                
    0     0008a937  _HAL_enableDebugInt                    
    0     0008a93a  _c_tsk_init                            
    0     0008a93d  _mot_init                              
    0     0008a940  _ApplXcpGetPointer                     
    0     0008a942  _DRV8305_setGpioNumber                 
    0     0008a944  _DRV8305_setSpiHandle                  
    0     0008a946  _Fapi_serviceWatchdogTimer             
    0     0008a94c  _XcpBackground                         
    0     0008a94e  _ssi_getPendingService                 
    0     0008a952  __system_pre_init                      
    0     0008a954  _c_sig_Mot_FanBlockedPerm              
    0     0008a955  _c_sig_Mot_SpeedMeasUnpl               
    0     0008a956  _c_sig_setDeviceEnabled                
    0     0008a957  _c_tsk_sendFrames1ms                   
    0     0008a958  _c_tsk_sendFrames2s                    
    0     0008a959  _ssi_setPendingService                 
    0     0008a95a  __system_post_cinit                    
    0     0008a95b  ___etext__                             
    0     0008a95b  etext                                  
    0     0008a95c  ___cinit__                             
    0     0008a95c  cinit                                  
    0     0008b290  _TX_SIG_PAR                            
    0     0008b650  _RX_SIG_PAR                            
    0     0008b8e4  _C_DRV_MAILBOX_CFG                     
    0     0008ba12  _TX_MSG                                
    0     0008ba55  _RX_MSG                                
    0     0008ba69  _FREE_RUNNING_TIMER_1US                
    0     0008bac6  _kXcpMainVersion                       
    0     0008bac7  _kXcpSubVersion                        
    0     0008bac8  _kXcpReleaseVersion                    
    0     0008baca  _OVERRUN_CALMDOWN_US                   
    1     000000f6  __stack                                
    1     000002f6  __STACK_END                            
    1     00000500  _gPwmDacData                           
    1     00000540  _gMotorVars                            
    1     00000640  _gUserParams                           
    1     0000c000  _gStepVars                             
    1     0000c040  _gGraphVars                            
    1     0000c868  _cnt_                                  
    1     0000c869  _cnt_2s                                
    1     0000c86a  __1msCounter                           
    1     0000c86b  _CanNmRxFlag                           
    1     0000c880  _datalogBuff1                          
    1     0000cba4  _DIAG_EnableHealing_C                  
    1     0000cbc0  _datalogBuff2                          
    1     0000cee4  _DIAG_MatureTime_C                     
    1     0000cf00  _datalogBuff3                          
    1     0000d240  _datalogBuff4                          
    1     0000d580  _xcp                                   
    1     0000d7c0  _SoftwareVariant                       
    1     0000d7c1  _PwmInternalEnable                     
    1     0000d7c2  _OffsetLearnRequested                  
    1     0000d7c3  _SelftestRequested                     
    1     0000d7c4  _gLEDcnt                               
    1     0000d7c5  _gCounter_speed                        
    1     0000d7c6  _gCounter_TrajSpd                      
    1     0000d7c7  _gCounter_TrajId                       
    1     0000d7c8  _Flag_enableOffsetcalibration          
    1     0000d7c9  _measurableShuntThisCycle              
    1     0000d7ca  _ignoreShuntNextCycle                  
    1     0000d7cb  _midVolShunt                           
    1     0000d7cc  _gCmpOffset                            
    1     0000d7cd  _gOvercurrentEvent                     
    1     0000d7ce  _gOvercurrentCounter                   
    1     0000d7cf  _gOvercurrentPulseCounter              
    1     0000d7d0  _overCurrPeakISRcounter                
    1     0000d7d1  _proj_loop_state                       
    1     0000d7d2  _VoltageDcBus                          
    1     0000d7d4  _angle_rad                             
    1     0000d7d6  _fe_rps                                
    1     0000d7d8  _fm_rps                                
    1     0000d7da  _fm_lp_rps                             
    1     0000d7dc  _fmDat                                 
    1     0000d7de  _dummy                                 
    1     0000d7e0  _IdRated_A                             
    1     0000d7e2  _MotorVariant                          
    1     0000d7e4  _gOffsetCalcCount                      
    1     0000d7e6  _gOffsetCalcWaitTime                   
    1     0000d7e8  _angleDelta_rad                        
    1     0000d7ea  _angleEst_rad                          
    1     0000d7ec  _angleSmo_rad                          
    1     0000d7ee  _angleGen_rad                          
    1     0000d7f0  _angleFoc_rad                          
    1     0000d7f2  _clarkeHandle_I                        
    1     0000d7f4  _clarkeHandle_V                        
    1     0000d7f6  _estHandle                             
    1     0000d7f8  _halHandle                             
    1     0000d7fa  _iparkHandle                           
    1     0000d7fc  _parkHandle                            
    1     0000d7fe  _piHandle_Id                           
    1     0000d800  _piHandle_Iq                           
    1     0000d802  _piHandle_fwc                          
    1     0000d804  _piHandle_spd                          
    1     0000d806  _svgenHandle                           
    1     0000d808  _svgen                                 
    1     0000d80a  _svgencurrentHandle                    
    1     0000d80c  _trajHandle_spd                        
    1     0000d80e  _trajHandle_Id                         
    1     0000d810  _trajHandle_fwc                        
    1     0000d812  _RampUpAcc_krpmps                      
    1     0000d814  _RampDownAcc_krpmps                    
    1     0000d816  _ReducedStartAcc_krpmps                
    1     0000d818  _KPspeedLowered                        
    1     0000d81a  _KIspeedLowered                        
    1     0000d81c  _KPspeedOperate                        
    1     0000d81e  _KIspeedOperate                        
    1     0000d820  _AccSwitchSpeedLowKrpm                 
    1     0000d822  _AccSwitchSpeedHighKrpm                
    1     0000d824  _KPspeed                               
    1     0000d826  _KIspeed                               
    1     0000d828  _KPspeedDelta                          
    1     0000d82a  _KIspeedDelta                          
    1     0000d82c  _AccSwitchSpeedKrpm                    
    1     0000d82e  _MaxAcc_krpmps                         
    1     0000d830  _MaxAccDelta_krpmps                    
    1     0000d832  _Idq_ref_A                             
    1     0000d836  _Idq_offset_A                          
    1     0000d83a  _Iab_in_A                              
    1     0000d840  _Idq_in_A                              
    1     0000d844  _Vab_out_V                             
    1     0000d848  _Vdq_out_V                             
    1     0000d84c  _Vdq_offset_V                          
    1     0000d850  _ipark                                 
    1     0000d854  _park                                  
    1     0000d858  _IdqSet_A                              
    1     0000d85c  _clarke_I                              
    1     0000d862  _clarke_V                              
    1     0000d868  _svgencurrent                          
    1     0000d86e  _gAdcDataPrev_A                        
    1     0000d874  _gPwmDataPrev                          
    1     0000d880  _traj_spd                              
    1     0000d88a  _traj_Id                               
    1     0000d894  _traj_fwc                              
    1     0000d89e  _gAdcData                              
    1     0000d8ae  _gPwmData                              
    1     0000d8c0  _gEstInputData                         
    1     0000d8d0  _pi_Id                                 
    1     0000d8e0  _pi_Iq                                 
    1     0000d8f0  _pi_fwc                                
    1     0000d900  _pi_spd                                
    1     0000d910  _gEstOutputData                        
    1     0000d940  _hal                                   
    1     0000d9b6  _Fapi_GlobalInit                       
    1     0000d9c0  _OutAppT5                              
    1     0000d9c4  _Fast_OutputData                       
    1     0000d9ca  _InRte                                 
    1     0000d9d0  _Fast_InputDataBus                     
    1     0000d9da  _OutAppT2                              
    1     0000da00  _OutAppT4                              
    1     0000da18  _OutAppT1                              
    1     0000da40  _OutAppT3                              
    1     0000da80  _OutRte                                
    1     0000dbae  _MultipleCanFrames                     
    1     0000dbaf  _CanTimeoutFlag                        
    1     0000dbb0  _isTesterPresent                       
    1     0000dbb4  _SvnRev                                
    1     0000dbb6  _OffsetValue                           
    1     0000dbba  _testerPresentCountdown                
    1     0000dd00  _FinishedOffsetLearning                
    1     0000dd01  _cnt                                   
    1     0000dd02  _waitTime                              
    1     0000dd03  _ErrFlagPhaseProof                     
    1     0000dd04  _FinishedSelftest                      
    1     0000dd40  _Selftest                              
    1     0000de4a  _AppT1_AngleDegOffset_C                
    1     0000de4c  _AppT1_CoilHeatingCurrent_C            
    1     0000de4e  _AppT1_DecLimit_C                      
    1     0000de50  _AppT1_FirstAlignPos_C                 
    1     0000de52  _AppT1_IqRefMan_C                      
    1     0000de54  _AppT1_ManVd_C                         
    1     0000de56  _AppT1_ManVq_C                         
    1     0000de58  _AppT1_MaxRatioPreCom_C                
    1     0000de5a  _AppT1_MeasureRsCurrent_C              
    1     0000de5c  _AppT1_MeasureRsKi_C                   
    1     0000de5e  _AppT1_MeasureRsKp_C                   
    1     0000de60  _AppT1_MinRatioPreCom_C                
    1     0000de62  _AppT1_OlGain_C                        
    1     0000de64  _AppT1_PrecommByCharline_C             
    1     0000de66  _AppT1_PulseTime_C                     
    1     0000de68  _AppT1_RiseRateLower_C                 
    1     0000de6a  _AppT1_RiseRateUpper_C                 
    1     0000de6c  _AppT1_RpmDes_C                        
    1     0000de6e  _AppT1_RpmThreshold_C                  
    1     0000de70  _AppT1_SecondAlignPos_C                
    1     0000de72  _AppT1_SpeedKi_C                       
    1     0000de74  _AppT1_SpeedKp_C                       
    1     0000de76  _AppT1_SpeedRefMan_C                   
    1     0000de78  _AppT1_SwAngleShift_C                  
    1     0000de7a  _AppT1_SwEnableStartup_C               
    1     0000de7c  _AppT1_SwIqRefMan_C                    
    1     0000de7e  _AppT1_SwManVdq_C                      
    1     0000de80  _AppT1_SwSpeedRefMan_C                 
    1     0000de82  _AppT1_TimeThreshold_C                 
    1     0000de84  _AppT1_TrajLimit_C                     
    1     0000de86  _AppT1_TrajReset_C                     
    1     0000de88  _AppT1_TrajSlopeDecelLower_C           
    1     0000de8a  _AppT1_TrajSlopeUpper_C                
    1     0000de8c  _AppT1_dCurrentKi_C                    
    1     0000de8e  _AppT1_dCurrentKp_C                    
    1     0000de90  _AppT1_iDDesMan_C                      
    1     0000de92  _AppT1_maxVsMaxPu_C                    
    1     0000de94  _AppT1_qCurrentKi_C                    
    1     0000de96  _AppT1_qCurrentKp_C                    
    1     0000de98  _Hfi_HarmonicCorrectionGain_C          
    1     0000de9a  _Hfi_PllKi_C                           
    1     0000de9c  _Hfi_PllKp_C                           
    1     0000de9e  _Hfi_uCarrierGain_C                    
    1     0000dea0  _AppT1_AccT_MP                         
    1     0000dea2  _AppT1_AngleRadComputed_MP             
    1     0000dea4  _AppT1_AngleRadEstimator_MP            
    1     0000dea6  _AppT1_MaxPhaseCurrent_CUR             
    1     0000dea8  _AppT1_OlEnabled_MP                    
    1     0000deaa  _AppT1_Precommutation_CUR              
    1     0000deac  _AppT1_arcEstimatedAngleEl_MP          
    1     0000deae  _AppT1_bBlockageReleased_MP            
    1     0000deb0  _AppT1_bResetControl_MP                
    1     0000deb2  _AppT1_facGainDcLink_CUR               
    1     0000deb4  _AppT1_iDirectAxis_MP                  
    1     0000deb6  _AppT1_iDirectError_MP                 
    1     0000deb8  _AppT1_iPhaseU_MP                      
    1     0000deba  _AppT1_iPhaseV_MP                      
    1     0000debc  _AppT1_iPhaseW_MP                      
    1     0000debe  _AppT1_iQuadratureAxis_MP              
    1     0000dec0  _AppT1_iQuadratureError_MP             
    1     0000dec2  _AppT1_nEstimatedSpeedMe_MP            
    1     0000dec4  _AppT1_nSpeedDesiredRamped_MP          
    1     0000dec6  _AppT1_nSpeedDesired_MP                
    1     0000dec8  _AppT1_nSpeedError_MP                  
    1     0000deca  _AppT1_trqEstimatedTorque_MP           
    1     0000decc  _AppT1_uDDesired_MP                    
    1     0000dece  _AppT1_uDirectAxis_MP                  
    1     0000ded0  _AppT1_uPhaseU_MP                      
    1     0000ded2  _AppT1_uPhaseV_MP                      
    1     0000ded4  _AppT1_uPhaseW_MP                      
    1     0000ded6  _AppT1_uQDesired_MP                    
    1     0000ded8  _AppT1_uQuadratureAxis_MP              
    1     0000deda  _Hfi_arcEstimatedPositionEl_MP         
    1     0000dedc  _Post_uDDesired_MP                     
    1     0000dede  _Post_uQDesired_MP                     
    1     0000df68  _SysPa_SpeedMinTarget_C                
    1     0000df69  _SysPa_EnableFlystart_C                
    1     0000df6a  _SysPa_EnableLimpMode_C                
    1     0000df6b  _SysPa_InvertRotDir_C                  
    1     0000df6c  _SysPa_EnableHeaterFeature_C           
    1     0000df6e  _SysPa_Zp_C                            
    1     0000df70  _SysPa_nMax_C                          
    1     0000df72  _SysPa_nNearZeroSpeed_C                
    1     0000df74  _SysPa_tMaxMotorCoil_C                 
    1     0000df76  _SysPa_trqMax_C                        
    1     0000df78  _AppT1_MaxPhaseCurrent_CUR_Table       
    1     0000e07c  _ActualTimerValue                      
    1     0000e080  _AppT3_tIgbtFiltred_MP                 
    1     0000e081  _AppT3_tMotorCoil_MP                   
    1     0000e082  _AppT3_tPcbFiltred_MP                  
    1     0000e090  _AppT3_Eta_C                           
    1     0000e092  _AppT3_MechTimeConstant_C              
    1     0000e094  _AppT3_R20_C                           
    1     0000e096  _AppT3_ResetCanTimeout_C               
    1     0000e098  _AppT3_RsFilterTime_C                  
    1     0000e09a  _AppT3_TempCoefficientAlpha_C          
    1     0000e09c  _AppT3_TemperatureFilterTime_C         
    1     0000e09e  _AppT3_swtOffsetHrbCwa_C               
    1     0000e0a0  _AppT3_uDcFilterTime_C                 
    1     0000e0a2  _AppT3_CanTimeoutPerm_MP               
    1     0000e0a4  _AppT3_CoastOutTime_MP                 
    1     0000e0a6  _AppT3_ExtOpCounter_MP                 
    1     0000e0a8  _AppT3_MechDampingCurve_CUR            
    1     0000e0aa  _AppT3_OffsetsIu_MP                    
    1     0000e0ac  _AppT3_OffsetsIv_MP                    
    1     0000e0ae  _AppT3_OffsetsIw_MP                    
    1     0000e0b0  _AppT3_OffsetsVu_MP                    
    1     0000e0b2  _AppT3_OffsetsVv_MP                    
    1     0000e0b4  _AppT3_OffsetsVw_MP                    
    1     0000e0b6  _AppT3_RpmMechFreezed_MP               
    1     0000e0b8  _AppT3_RsFiltredContinuous_MP          
    1     0000e0ba  _AppT3_Rs_MP                           
    1     0000e0bc  _AppT3_Task10ms_MP                     
    1     0000e0be  _AppT3_Task1ms_MP                      
    1     0000e0c0  _AppT3_Task50us_MP                     
    1     0000e0c2  _AppT3_TorqueFreezed_MP                
    1     0000e0c4  _AppT3_bEnablePwmInternal_MP           
    1     0000e0c6  _AppT3_iDcLink_MP                      
    1     0000e0c8  _AppT3_iDcRaw_MP                       
    1     0000e0ca  _AppT3_iOffset_MP                      
    1     0000e0cc  _AppT3_nEstSpeedAbsMe_MP               
    1     0000e0ce  _AppT3_pwrEffective_MP                 
    1     0000e0d0  _AppT3_stMotor_MP                      
    1     0000e0d2  _AppT3_stNetwork_MP                    
    1     0000e0d4  _AppT3_uDcLinkFiltred_MP               
    1     0000e0d6  _AppT3_uDcLink_MP                      
    1     0000e126  _ActualStateFeedback                   
    1     0000e135  _statusRsCalib                         
    1     0000e136  _EstIn                                 
    1     0000e140  _XCP_test_01                           
    1     0000e141  _XCP_test_02                           
    1     0000e142  _XCP_test_03                           
    1     0000e143  _XCP_test_04                           
    1     0000e144  _XCP_test_05                           
    1     0000e145  _XCP_test_06                           
    1     0000e146  _XCP_test_07                           
    1     0000e147  _XCP_test_08                           
    1     0000e148  _temperatureIGBT_C                     
    1     0000e149  _temperatureIGBT_0p1C                  
    1     0000e14a  _stimTempIGBT                          
    1     0000e14b  _stimTempPCB                           
    1     0000e14c  _temperatureTest_C                     
    1     0000e14d  _IGBT_TempRawSignal                    
    1     0000e14e  _IGBT_TempRawSignalShifted             
    1     0000e14f  _temperaturePCB_C                      
    1     0000e150  _gDC_Current_100mA                     
    1     0000e151  _meaSupplyCurrent_100mA                
    1     0000e152  _HVdisChargeRawSignal                  
    1     0000e153  _LVsupplyRawSignal                     
    1     0000e154  _meaHVdisChargeVoltage_V               
    1     0000e155  _meaLVSupplyVoltage_mV                 
    1     0000e156  _Ref3V3P5RawSignal                     
    1     0000e157  _meaRef3V3P5Voltage_mV                 
    1     0000e158  _current_Test                          
    1     0000e15b  _meaIqActualValue_10mA                 
    1     0000e15c  _meaIqMeanValue_10mA                   
    1     0000e15d  _meaSpeedActValue_rpm                  
    1     0000e15e  _meaSpeedMeanValue_rpm                 
    1     0000e160  _iDC                                   
    1     0000e162  _etaElectricalFactor                   
    1     0000e164  _test1_float                           
    1     0000e166  _voltageCorrRawSignal                  
    1     0000e168  _gConsumedPower_W                      
    1     0000e16a  _gDC_Current_A                         
    1     0000e16c  _gMotorMechPower_W                     
    1     0000e16e  _gMotorMechPower_W_Filtered            
    1     0000e170  _gConsumedPower_W_Filtered             
    1     0000e172  _gDC_Current_A_Filtered                
    1     0000e174  _meaActSpeedKrpmFiltrd                 
    1     0000e176  _tempIGBTpt1Filter                     
    1     0000e178  _tempPCBpt1Filter                      
    1     0000e17a  _qCurrpt1Filter                        
    1     0000e17c  _MotorMechPowerpt1Filter               
    1     0000e180  _ConsumedPowerpt1Filter                
    1     0000e184  _DC_Currentpt1Filter                   
    1     0000e188  _actSpeedKrpmpt1Filter                 
    1     0000e200  _HistogramFields2D                     
    1     0000e2f8  _AppT1_MaxPhaseCurrent_CUR_xAxis       
    1     0000e300  _DIAG_HysteresisTemperature_C          
    1     0000e301  _DIAG_IgbtOvertempEmergValue_C         
    1     0000e302  _DIAG_IgbtOvertempWarnValue_C          
    1     0000e303  _DIAG_PcbOvertempEmergValue_C          
    1     0000e304  _DIAG_PcbOvertempWarnValue_C           
    1     0000e308  _DIAG_BlockedWaitTime_C                
    1     0000e30a  _DIAG_OvervoltEmergValue_C             
    1     0000e30c  _DIAG_OvervoltResetValue_C             
    1     0000e30e  _DIAG_SwBlockDetection_C               
    1     0000e310  _DIAG_UndervoltEmergValue_C            
    1     0000e312  _DIAG_UndervoltResetValue_C            
    1     0000e314  _DIAG_CanTimeout_MP                    
    1     0000e316  _DIAG_Drv8305Misc_MP                   
    1     0000e318  _DIAG_Drv8305Overtemperature_MP        
    1     0000e31a  _DIAG_Drv8305Undervoltage_MP           
    1     0000e31c  _DIAG_EepromWarning_MP                 
    1     0000e31e  _DIAG_HvOvervoltage_MP                 
    1     0000e320  _DIAG_HvUndervoltage_MP                
    1     0000e322  _DIAG_IgbtEmergency_MP                 
    1     0000e324  _DIAG_IgbtWarning_MP                   
    1     0000e326  _DIAG_MotBlocked_MP                    
    1     0000e328  _DIAG_OvercurrentPeak_MP               
    1     0000e32a  _DIAG_PcbEmergency_MP                  
    1     0000e32c  _DIAG_PcbWarning_MP                    
    1     0000e32e  _DIAG_PhaseLost_MP                     
    1     0000e330  _DIAG_UnexpectedReset_MP               
    1     0000e332  _DIAG_iRmsU_MP                         
    1     0000e334  _DIAG_iRmsV_MP                         
    1     0000e336  _DIAG_iRmsW_MP                         
    1     0000e376  _message                               
    1     0000e380  _StateNm                               
    1     0000e381  _NetworkState                          
    1     0000e382  _Flag_EnableCanSendFrames              
    1     0000e383  _Flag_EnablePduTransmit                
    1     0000e384  _ActualNetworkState                    
    1     0000e385  _CanNmPB_TxConfirmed                   
    1     0000e386  _CanNmPB_RxIndicated                   
    1     0000e387  _CanNmPB_RxPduIndRem                   
    1     0000e388  _TxPDU                                 
    1     0000e3a4  _RxPDU                                 
    1     0000e3c0  _HistogramFields1D                     
    1     0000e3fc  _AppT1_Precommutation_CUR_Table        
    1     0000e43c  _AppT1_Precommutation_CUR_xAxis        
    1     0000e440  _filter                                
    1     0000e47c  _AppT3_MechDampingCurve_CUR_Table      
    1     0000e4ee  _datalogHandle                         
    1     0000e4f0  _datalog                               
    1     0000e4fc  _AppT3_MechDampingCurve_CUR_xAxis      
    1     0000e500  _CpuCnt_                               
    1     0000e50c  _filterHandle                          
    1     0000e518  _AppT1_facGainDcLink_CUR_Table         
    1     0000e520  _AppT1_facGainDcLink_CUR_xAxis         
    1     0000e550  _CurrentsUVW                           
    1     0000e556  _Delta                                 
    1     0000e55c  _Delta_Mean                            
    1     0000e568  _Task_Load_percent_mean                
    1     0000e56e  _TimeOfTask                            
    1     0000e574  _VoltagesUVW                           
    1     0000e57a  _errOffs                               
    1     0000e580  _globalSeed                            
    1     0000e586  _holdVal                               
    1     0000e58c  _sSeed                                 
    1     0000e592  _testlength                            
    1     0000e593  _canEcuNumber                          
    1     0000e594  _ui32V_rxIndication                    
    1     0000e596  _ui32V_receivedOnce                    
    1     0000e59e  ___TI_enable_exit_profile_output       
    1     0000e5a0  ___TI_cleanup_ptr                      
    1     0000e5a2  ___TI_dtors_ptr                        
    1     0000e5a4  _MLTP_TX_MSG                           
    1     0000e5a9  _ExpiryTime                            
    1     0000e5ad  _Flag_TimerExpired                     
    1     0000e5b1  _HRBState                              
    1     0000e5c4  _TimerEnabled                          
    1     0000e5ec  _cpuTimer0IntCount                     
    1     0000e5ed  _cpuTimer1IntCount                     
    1     0000e5ee  _cpuTimer2IntCount                     
    1     0000e5ef  _timebaseCounter                       
    1     0000e5f0  _testSPIread1                          
    1     0000e5f1  _testSPIread2                          
    1     0000e5f4  _EnablePwm                             
    1     0000e5f5  _RxIndicated                           
    1     0000e5f6  _DiscardCounter                        
    1     0000e5f7  _Task_Load_percent                     
    1     0000e5fb  _PageCounter                           
    1     0000e5ff  _errno                                 
    1     0000e602  __lock                                 
    1     0000e604  __unlock                               
    1     0000e606  _isTxPathLocked                        
    1     0000e607  _ReceivedNmFrame                       
    1     0000e60c  _psavalue                              
    1     0000e60e  _Reset_Trap_Condition                  
    1     0000e60f  _ratioCmp1Period                       
    1     0000e610  _xcpResource                           
    1     0000e611  _length                                
    abs   00000000  _Cla1ConstLoadSize                     
    abs   00000000  _Cla1Prog2LoadSize                     
    abs   00000000  _Cla1ProgLoadSize                      
    abs   00000200  __STACK_SIZE                           
    abs   00001331  _RamfuncsLoadSize                      
    abs   00001331  _RamfuncsRunSize                       
    abs   003eb000  _EST_getState                          
    abs   003eb00a  _EST_updateTrajState                   
    abs   003eb2b3  _EST_updateState                       
    abs   003eb581  _EST_updateId_ref_A                    
    abs   003eb8e1  _EST_setFlag_bypassLockRotor           
    abs   003eb8f6  _EST_setFlag_enableForceAngle          
    abs   003eb8fd  _EST_setFlag_enableRsRecalc            
    abs   003eb915  _EST_setParams                         
    abs   003ebf39  _EST_setIdq_ref_A                      
    abs   003ebfc8  _EST_setFlag_enablePowerWarp           
    abs   003ec9ee  _EST_run                               
    abs   003ecab6  _EST_isTrajError                       
    abs   003ecad7  _EST_isMotorIdentified                 
    abs   003ecaed  _EST_isError                           
    abs   003ecbde  _EST_initEst                           
    abs   003ecc59  _EST_getTrajState                      
    abs   003ecd1c  _EST_getRs_Ohm                         
    abs   003ecd4e  _EST_getRsOnLine_Ohm                   
    abs   003ecdf6  _EST_getRr_Ohm                         
    abs   003ecede  _EST_getLs_q_H                         
    abs   003ecf12  _EST_getLs_d_H                         
    abs   003ecf6b  _EST_getIntValue_Id_A                  
    abs   003ecfae  _EST_getIdRated_A                      
    abs   003ed059  _EST_getFm_lp_Hz                       
    abs   003ed0ad  _EST_getFlux_Wb                        
    abs   003ed127  _EST_getFe_Hz                          
    abs   003ed18c  _EST_enable                            
    abs   003ed1b5  _EST_disableTraj                       
    abs   003ed1be  _EST_disable                           
    abs   003ed1c4  _EST_configureTraj                     
    abs   003ed3e8  _EST_computeTorque_Nm                  
    abs   003ed44c  _EST_getRoverL_rps                     
    abs   003ee13c  _USER_setParams_priv                   
    abs   003ee438  FS$$TOFD                               
    abs   ffffffff  ___TI_pprof_out_hndl                   
    abs   ffffffff  ___TI_prof_data_size                   
    abs   ffffffff  ___TI_prof_data_start                  
    abs   ffffffff  ___binit__                             
    abs   ffffffff  ___c_args__                            
    abs   ffffffff  ___pinit__                             
    abs   ffffffff  binit                                  
    abs   ffffffff  pinit                                  
    
    [833 symbols]
    

    NOK.map =

    ******************************************************************************
                 TMS320C2000 Linker PC v20.2.1                     
    ******************************************************************************
    >> Linked Thu Sep  2 10:11:30 2021
    
    OUTPUT FILE NAME:   <HVA.out>
    ENTRY POINT SYMBOL: "_c_int00"  address: 00087a2c
    
    
    MEMORY CONFIGURATION
    
             name            origin    length      used     unused   attr    fill
    ----------------------  --------  ---------  --------  --------  ----  --------
    PAGE 0:
      patch_EST_Angle_run_p 00009000   0000000e  00000000  0000000e  RWIX
      patch_EST_Dir_run_pat 0000900e   0000000e  00000000  0000000e  RWIX
      patch_EST_Eab_run_pat 0000901c   0000000e  00000000  0000000e  RWIX
      patch_EST_Flux_ab_est 0000902a   0000000e  00000000  0000000e  RWIX
      patch_EST_Flux_dq_run 00009038   0000000e  00000000  0000000e  RWIX
      patch_EST_Flux_run_pa 00009046   0000000e  00000000  0000000e  RWIX
      patch_EST_Freq_run_pa 00009054   0000000e  00000000  0000000e  RWIX
      patch_EST_Iab_run_pat 00009062   0000000e  00000000  0000000e  RWIX
      patch_EST_Idq_run_pat 00009070   0000000e  00000000  0000000e  RWIX
      patch_EST_Ls_run_patc 0000907e   0000000e  00000000  0000000e  RWIX
      patch_EST_OneOverDcBu 0000908c   0000000e  00000000  0000000e  RWIX
      patch_EST_Rr_run_patc 0000909a   0000000e  00000000  0000000e  RWIX
      patch_EST_RsOnLine_ru 000090a8   0000000e  00000000  0000000e  RWIX
      patch_EST_Rs_run_patc 000090b6   0000000e  00000000  0000000e  RWIX
      patch_EST_Vab_run_pat 000090c4   0000000e  00000000  0000000e  RWIX
      patch_EST_Vdq_run_pat 000090d2   0000000e  00000000  0000000e  RWIX
      patch_EST_runEst_patc 000090e0   0000000e  00000000  0000000e  RWIX
      RAMLS4_7              0000a000   00002000  00001331  00000ccf  RWIX
      FLASH_BANK0_SEC0_RSVD 0008000e   00000ff2  00000000  00000ff2  RWIX
      FLASH_BANK0_SEC1_RSVD 00081000   00001000  00000000  00001000  RWIX
      FLASH_BANK0_SEC2_RSVD 00082000   00001000  00000000  00001000  RWIX
      BEGIN                 00083000   00000002  00000002  00000000  RWIX
      APPHDR                00083002   0000000c  0000000c  00000000  RWIX
      SVNREV                00083010   00000020  00000002  0000001e  RWIX
      FLASHB0_SA            00083030   0000cfd0  00008aee  000044e2  RWIX
      FLASH_INFO            00090000   00002000  00000000  00002000  RWIX
      FLASHB1_SA            00092000   00008000  00000000  00008000  RWIX
      RESET                 003fffc0   00000002  00000000  00000002  RWIX
    
    PAGE 1:
      BOOT_RSVD             00000002   000000f3  00000000  000000f3  RWIX
      RAMM0                 000000f5   0000040b  00000300  0000010b  RWIX
      RAMM1                 00000500   000002ff  0000026a  00000095  RWIX
      CLA1MSGRAMLOW         00001480   00000080  00000000  00000080  RWIX
      CLA1MSGRAMHIGH        00001500   00000080  00000000  00000080  RWIX
      RAMLS0_TAGS           00008000   00000004  00000000  00000004  RWIX
      RAMLS0_1              00008004   00000ffc  00000000  00000ffc  RWIX
      RAMLS2_3              00009100   00000f00  00000000  00000f00  RWIX
      RAMGS0_A              0000c000   00003000  00002612  000009ee  RWIX
    
    
    SECTION ALLOCATION MAP
    
     output                                  attributes/
    section   page    origin      length       input sections
    --------  ----  ----------  ----------   ----------------
    codestart 
    *          0    00083000    00000002     
                      00083000    00000002     f28004x_codestartbranch.obj (codestart)
    
    appheader 
    *          0    00083002    0000000c     
                      00083002    0000000c     main.obj (appheader:retain)
    
    svnrev     0    00083010    00000002     
                      00083010    00000002     main.obj (svnrev:retain)
    
    .text      0    00083030    000065f7     
                      00083030    00000a32     AppT3.obj (.text:_AppT3)
                      00083a62    0000053c     AppT2.obj (.text:_AppT2)
                      00083f9e    0000046c     user.obj (.text:_USER_setParams)
                      0008440a    00000400     hal.obj (.text:_HAL_setupGpios)
                      0008480a    000003dd     app.obj (.text:_proj_lab08_loop)
                      00084be7    00000381     rts2800_fpu32.lib : e_powf.c.obj (.text)
                      00084f68    0000037d     app.obj (.text:_proj_lab08_init)
                      000852e5    00000294     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:__Fapi_setupFlashStateMachine)
                      00085579    00000284     XcpBasic.obj (.text:_XcpCommand)
                      000857fd    00000001     xcp_appl.obj (.text:_ApplXcpInterruptDisable)
                      000857fe    000001ef     c_UDSLight.obj (.text:_uds_serviceReadDataByIdentifier)
                      000859ed    000001e0     F021_API_F28004x_FPU32.lib : Program.obj (.text:_Fapi_issueProgrammingCommand)
                      00085bcd    00000175     hal.obj (.text:_HAL_setupPwms)
                      00085d42    00000160     app.obj (.text:_proj_lab08_instaSpin_ReInit)
                      00085ea2    00000151     runEstimator.obj (.text:_runSelftest)
                      00085ff3    0000013b     app.obj (.text:_MOTOR_rms_calculation)
                      0008612e    0000012b     rts2800_fpu32.lib : e_logf.c.obj (.text)
                      00086259    00000001     xcp_appl.obj (.text:_ApplXcpInterruptEnable)
                      0008625a    00000106     runEstimator.obj (.text:_runOffsetsCalculation)
                      00086360    000000da     RsOffsetCalibration.obj (.text:_Calib)
                      0008643a    000000d8     hal.obj (.text:_HAL_setupAdcs)
                      00086512    000000d7     hal.obj (.text:_HAL_init)
                      000865e9    000000c9     CanNm_PB.obj (.text:_CanNmPB_SetPDU)
                      000866b2    000000bf     app.obj (.text:_MOTOR_variables_update)
                      00086771    000000ad     XcpBasic.obj (.text:_XcpEvent)
                      0008681e    000000aa     hal.obj (.text:_HAL_setupPwmDacs)
                      000868c8    000000a9     CanNm_PB.obj (.text:_CanNmPB_GetPDU)
                      00086971    00000001     Crc.obj (.text:_Crc_Initialize)
                      00086972    000000a8     nvm.obj (.text:_InitNvM)
                      00086a1a    000000a7     F021_API_F28004x_FPU32.lib : Init.obj (.text:_Fapi_initializeAPI)
                      00086ac1    0000009e     can.obj (.text:_CAN_setupMessageObject)
                      00086b5f    0000009e     app.obj (.text:_MOTOR_variables_init)
                      00086bfd    0000009d     dma.obj (.text:_DMA_configMode)
                      00086c9a    0000009a     sysctl.obj (.text:_SysCtl_isPLLValid)
                      00086d34    00000096     Histogram.obj (.text:_UpdateHistogramData2D)
                      00086dca    00000094     hal.obj (.text:_HAL_setupSciA)
                      00086e5e    0000008b     sysctl.obj (.text:_SysCtl_setClock)
                      00086ee9    00000089     c_cansig.obj (.text:_c_sig_copyTxMessage)
                      00086f72    00000088     rts2800_fpu32.lib : fs_div28.asm.obj (.text)
                      00086ffa    00000081     nvm.obj (.text:_NvMUpdate)
                      0008707b    00000081     Histogram.obj (.text:_UpdateHistogramData1D)
                      000870fc    00000080     F021_API_F28004x_FPU32.lib : Read.obj (.text:__Fapi_loopRegionForValue)
                      0008717c    0000007e     c_cansig.obj (.text:_c_sig_copySignalToBuffer)
                      000871fa    0000007b     cputimers.obj (.text:_Appl_cpuTimers_init)
                      00087275    0000007b     hal.obj (.text:_HAL_setParams)
                      000872f0    0000007a     interrupt.obj (.text:_Interrupt_clearIFR)
                      0008736a    00000075     c_UDSLight.obj (.text:_uds_serviceWriteDataByIdentifier)
                      000873df    00000073     eepManager.obj (.text:_Eep_WriteData16bit)
                      00087452    0000006f     eepManager.obj (.text:_Eep_ReadData16bit)
                      000874c1    00000001     c_cansig_cfg.obj (.text:_c_sig_MCU_RomCorrupted)
                      000874c2    0000006f     c_cansig.obj (.text:_c_sig_copyRxMessage)
                      00087531    0000006d     c_cansig.obj (.text:_c_sig_copySignalFromBuffer)
                      0008759e    0000006c     xcp_appl.obj (.text:_ApplXcpGetSeed)
                      0008760a    0000006b     Measure.obj (.text:_mea_init)
                      00087675    00000067     eepManager.obj (.text:_eep_writeData)
                      000876dc    00000066     main.obj (.text:_InitCan)
                      00087742    00000064     F021_API_F28004x_FPU32.lib : Async.obj (.text:_Fapi_issueAsyncCommandWithAddress)
                      000877a6    00000063     c_UDSLight.obj (.text:_uds_serviceRoutineControl)
                      00087809    00000060     eepManager.obj (.text:_eep_readData)
                      00087869    0000005f     XcpBasic.obj (.text:_XcpAllocMemory)
                      000878c8    0000005c     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:_Fapi_setupEepromSectorEnable)
                      00087924    0000005a     AppT1.obj (.text:_Tab1DS3I2T3126_e)
                      0008797e    00000057     rts2800_fpu32.lib : s_floorf.c.obj (.text)
                      000879d5    00000057                       : s_scalbnf.c.obj (.text)
                      00087a2c    00000056                       : boot28.asm.obj (.text)
                      00087a82    00000052     F021_API_F28004x_FPU32.lib : Read.obj (.text:__Fapi_checkRegionForValue)
                      00087ad4    00000052     app.obj (.text:_overCurrPeakISR)
                      00087b26    0000004d     c_candriver.obj (.text:_c_drv_configureMailboxes)
                      00087b73    0000004d     Measure.obj (.text:_mea_calcSupplyCurrent)
                      00087bc0    0000004b     AppT3.obj (.text:_Tab1DS3I4T3126_c)
                      00087c0b    00000049     AppT4.obj (.text:_AppT4)
                      00087c54    00000048     AppT5.obj (.text:_AppT5)
                      00087c9c    00000048     interrupt.obj (.text:_Interrupt_disable)
                      00087ce4    00000047     c_cansig.obj (.text:_c_sig_init)
                      00087d2b    00000046     can.obj (.text:_CAN_readMessage)
                      00087d71    00000046     CanNm_PB.obj (.text:_CanNmPB_Statemachine)
                      00087db7    00000045     adc.obj (.text:_ADC_setVREF)
                      00087dfc    00000045     Benchmark.obj (.text:_GetDelta)
                      00087e41    00000045     hal.obj (.text:_HAL_setupTimers)
                      00087e86    00000044     hal.obj (.text:_HAL_setupSpiB)
                      00087eca    00000044     os.obj (.text:_os_executeTasks)
                      00087f0e    00000043     AppT1.obj (.text:_Tab1DS0I2T3126_e)
                      00087f51    00000043     cputimers.obj (.text:_initCPUTimers)
                      00087f94    00000041     hal.obj (.text:_HAL_setupFaults)
                      00087fd5    00000041     interrupt.obj (.text:_Interrupt_initModule)
                      00088016    00000041     nvm.obj (.text:_Set_Nvm_BootIds)
                      00088057    0000003f     gpio.obj (.text:_GPIO_setPadConfig)
                      00088096    0000003f     nvm.obj (.text:_NvMInitTable2D)
                      000880d5    0000003e     c_UDSLight.obj (.text:_uds_evaluateRequest)
                      00088113    0000003c     hal.obj (.text:_HAL_setupDlogDMA)
                      0008814f    0000003c     os.obj (.text:_os_event1000ms)
                      0008818b    0000003b     XcpBasic.obj (.text:_XcpReadMta)
                      000881c6    00000038     movingAvg.obj (.text:_mavg_addValue)
                      000881fe    00000038     Measure.obj (.text:_mea_calcConsumedPower)
                      00088236    00000035     cputimers.obj (.text:_configCPUTimer)
                      0008826b    00000034     can.obj (.text:_CAN_setBitTiming)
                      0008829f    00000034     interrupt.obj (.text:_Interrupt_enable)
                      000882d3    00000034     Measure.obj (.text:_mea_filterScaleSpeed)
                      00088307    00000033     can.obj (.text:_CAN_sendMessage)
                      0008833a    00000033     Benchmark.obj (.text:_GetMaxTaskLoad_InPercent)
                      0008836d    00000033     Benchmark.obj (.text:_GetMeanTaskLoad_InPercent)
                      000883a0    00000032     c_candriver.obj (.text:_c_drv_receiveFrame)
                      000883d2    00000030     gpio.obj (.text:_GPIO_setPinConfig)
                      00088402    00000030     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:__Fapi_issueFsmCommand)
                      00088432    0000002f                                : FlashStateMachine.obj (.text:_Fapi_setActiveFlashBank)
                      00088461    0000002f     hal.obj (.text:_HAL_setupPeripheralClks)
                      00088490    0000002d     Rte.obj (.text:_SwitchPowerstage)
                      000884bd    0000002d     interpolation.obj (.text:_ipl_interpolate)
                      000884ea    0000002d     os.obj (.text:_os_event1ms)
                      00088517    0000002c     F021_API_F28004x_FPU32.lib : Utilities.obj (.text:_Fapi_calculateFletcherChecksum)
                      00088543    0000002c     sysctl.obj (.text:_SysCtl_selectXTAL)
                      0008856f    0000002b     xcp_appl.obj (.text:_ApplXcpUnlock)
                      0008859a    0000002b     XcpBasic.obj (.text:_XcpAllocOdtEntry)
                      000885c5    0000002b     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:__Fapi_setupSectorsForWrite)
                      000885f0    0000002b     eepManager.obj (.text:_eep_initSPI)
                      0008861b    0000002b     os.obj (.text:_os_event100ms)
                      00088646    0000002a     sysctl.obj (.text:_SysCtl_selectOscSource)
                      00088670    0000002a     xcp_transport_layer.obj (.text:_XCP_TX)
                      0008869a    0000002a     F021_API_F28004x_FPU32.lib : Utilities.obj (.text:__Fapi_divideUnsignedLong)
                      000886c4    0000002a     rts2800_fpu32.lib : l_div28.asm.obj (.text)
                      000886ee    00000029     nvm.obj (.text:_NvMInitTable1D)
                      00088717    00000029     interpolation.obj (.text:_ipl_functionValue)
                      00088740    00000029     rts2800_fpu32.lib : exit.c.obj (.text)
                      00088769    00000028     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:_Fapi_setupBankSectorEnable)
                      00088791    00000027     CanNm_PB.obj (.text:_CanNmPB_ExecTimer)
                      000887b8    00000026     Measure.obj (.text:_mea_convertPCBTempSignalToCelsius)
                      000887de    00000026     rts2800_fpu32.lib : e_sqrtf.c.obj (.text)
                      00088804    00000025     HwIoConnectorLv.obj (.text:_HwIoConnectorLv_InitAIOs)
                      00088829    00000024     main.obj (.text:_InitWatchdog)
                      0008884d    00000024     eepManager.obj (.text:_eep_readStatusRegister)
                      00088871    00000024     rts2800_fpu32.lib : cpy_tbl.c.obj (.text)
                      00088895    00000023     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:_Fapi_isAddressEcc)
                      000888b8    00000023     main.obj (.text:_InitOffsets)
                      000888db    00000023     RsOffsetCalibration.obj (.text:_ReloadOffsetValues)
                      000888fe    00000023     nvm.obj (.text:_WriteNvM)
                      00088921    00000023     xcp_transport_layer.obj (.text:_XCPonCAN_RX)
                      00088944    00000022     nvm.obj (.text:_Array2Struct)
                      00088966    00000022     gpio.obj (.text:_GPIO_setMasterCore)
                      00088988    00000022     gpio.obj (.text:_GPIO_setQualificationMode)
                      000889aa    00000022     nvm.obj (.text:_Struct2Array)
                      000889cc    00000022     sysctl.obj (.text:_SysCtl_pollX1Counter)
                      000889ee    00000022     XcpBasic.obj (.text:_XcpSendDtoFromQueue)
                      00088a10    00000021     CanNm_PB.obj (.text:_CanNmPB_PrepareBusSleepMode)
                      00088a31    00000021     AppT3.obj (.text:_Cc1_MoCoManager_node_fcn3)
                      00088a52    00000021     gpio.obj (.text:_GPIO_setAnalogMode)
                      00088a73    00000021     sci.obj (.text:_SCI_setConfig)
                      00088a94    00000021     XcpBasic.obj (.text:_XcpSendCrm)
                      00088ab5    00000021     XcpBasic.obj (.text:_XcpStopAllSelectedDaq)
                      00088ad6    00000021     XcpBasic.obj (.text:_XcpStopDaq)
                      00088af7    00000021     pt1_float.obj (.text:_pt1_float_addValue)
                      00088b18    00000020     gpio.obj (.text:_GPIO_setDirectionMode)
                      00088b38    00000020     gpio.obj (.text:_GPIO_setInterruptPin)
                      00088b58    00000020     c_cansig.obj (.text:_c_sig_setTxSignal)
                      00088b78    00000020     main.obj (.text:_main)
                      00088b98    0000001f     spi.obj (.text:_SPI_setConfig)
                      00088bb7    0000001f     XcpBasic.obj (.text:_XcpAllocOdt)
                      00088bd6    0000001f     xcp_appl.obj (.text:_XcpMemCpy_If)
                      00088bf5    0000001f     Measure.obj (.text:_mea_calcMechMotorPower)
                      00088c14    0000001f     rts2800_fpu32.lib : fd_tol28.asm.obj (.text)
                      00088c33    0000001e     Crc.obj (.text:_Crc_Calculate16)
                      00088c51    0000001e     hal.obj (.text:_HAL_setupSpiA)
                      00088c6f    0000001e     spi.obj (.text:_SPI_clearInterruptStatus)
                      00088c8d    0000001e     sysctl.obj (.text:_SysCtl_selectXTALSingleEnded)
                      00088cab    0000001d     c_UDSLight.obj (.text:_GetByte)
                      00088cc8    0000001d     XcpBasic.obj (.text:_XcpStartAllSelectedDaq)
                      00088ce5    0000001d     c_candriver.obj (.text:_c_drv_sendFrame)
                      00088d02    0000001d     Measure.obj (.text:_mea_sampleAndFilterTemperatureIGBT)
                      00088d1f    0000001d     c_UDSLight.obj (.text:_uds_completePendingServices)
                      00088d3c    0000001d     rts2800_fpu32.lib : memcpy.c.obj (.text)
                      00088d59    0000001c     Histogram.obj (.text:_DeleteHistogramData)
                      00088d75    0000001c     countdown.obj (.text:_ctd_isElapsed)
                      00088d91    0000001c     pt1_float.obj (.text:_pt1_float_init)
                      00088dad    0000001b     gpio.obj (.text:_GPIO_setQualificationPeriod)
                      00088dc8    0000001b     Measure.obj (.text:_mea_sendSignalsToCAN)
                      00088de3    0000001a     CanNm_PB.obj (.text:_CanNmPB_BusSleepMode)
                      00088dfd    0000001a     CanNm_PB.obj (.text:_CanNmPB_Init)
                      00088e17    0000001a     sci.obj (.text:_SCI_disableInterrupt)
                      00088e31    0000001a     sci.obj (.text:_SCI_enableInterrupt)
                      00088e4b    0000001a     c_cansig_cfg.obj (.text:_c_sig_setActualSpeed)
                      00088e65    00000019     xcp_appl.obj (.text:_ApplXcpSend)
                      00088e7e    00000019     Measure.obj (.text:_mea_sampleAndFilterTemperaturePCB)
                      00088e97    00000019     os.obj (.text:_os_event50ms)
                      00088eb0    00000019     rts2800_fpu32.lib : args_main.c.obj (.text)
                      00088ec9    00000018     AppT3.obj (.text:_Cc3_NormalOperationMode_ex)
                      00088ee1    00000018     Histogram.obj (.text:_InitHistograms)
                      00088ef9    00000018     XcpBasic.obj (.text:_XcpFreeDaq)
                      00088f11    00000018     os.obj (.text:_os_event10ms)
                      00088f29    00000017     can.obj (.text:_CAN_initModule)
                      00088f40    00000017     eepManager.obj (.text:_DisableWriteOperations)
                      00088f57    00000017     eepManager.obj (.text:_EnableWriteOperations)
                      00088f6e    00000017     hal.obj (.text:_HAL_enableAdcInts)
                      00088f85    00000017     interrupt.obj (.text:_Interrupt_initVectorTable)
                      00088f9c    00000017     XcpBasic.obj (.text:_XcpStopAllDaq)
                      00088fb3    00000017     c_cantask.obj (.text:_c_tsk_receiveFrames)
                      00088fca    00000017     cputimers.obj (.text:_cpuTimer0ISR)
                      00088fe1    00000016     XcpBasic.obj (.text:_XcpSendCallBack)
                      00088ff7    00000016     c_UDSLight.obj (.text:_uds_serviceDiagnosticSessionControl)
                      0008900d    00000015     can.obj (.text:_CAN_writeDataReg)
                      00089022    00000015     c_cantask.obj (.text:_c_tsk_sendOnce)
                      00089037    00000014     XcpBasic.obj (.text:_XcpWriteMta)
                      0008904b    00000014     c_cansig_cfg.obj (.text:_c_sig_setActualVoltage)
                      0008905f    00000013     CanNm_PB.obj (.text:_CanNmPB_ReadySleepState)
                      00089072    00000013     F021_API_F28004x_FPU32.lib : Read.obj (.text:_Fapi_flushPipeline)
                      00089085    00000013     c_cansig_cfg.obj (.text:_c_sig_setStatusDevice)
                      00089098    00000013     c_UDSLight.obj (.text:_uds_flashPrelude)
                      000890ab    00000012     CanNm_PB.obj (.text:_CanNmPB_GetNetworkStateFromApplication)
                      000890bd    00000012     c_UDSLight.obj (.text:_uds_serviceECUReset)
                      000890cf    00000012     c_UDSLight.obj (.text:_uds_task)
                      000890e1    00000011     nvm.obj (.text:_CalcContCrc)
                      000890f2    00000011     graph.obj (.text:_GRAPH_DataPointerInit)
                      00089103    00000011     Histogram.obj (.text:_GetHistStartAdress1D)
                      00089114    00000011     hal.obj (.text:_HAL_setupGate)
                      00089125    00000011     Measure.obj (.text:_mea_sampleAndFilterSupplyVoltage)
                      00089136    00000011     rts2800_fpu32.lib : s_copysignf.c.obj (.text)
                      00089147    00000010     CanNm_PB.obj (.text:_CanNmPB_NormalOperationState)
                      00089157    00000010     c_cansig_cfg.obj (.text:_c_sig_getSetpointLimpMode_rpm)
                      00089167    00000010     c_cansig_cfg.obj (.text:_c_sig_getSpeedSetpoint_rpm)
                      00089177    00000010     c_cansig_cfg.obj (.text:_c_sig_setActualCurrent_100mA)
                      00089187    00000010     cputimers.obj (.text:_cpuTimer1ISR)
                      00089197    00000010     cputimers.obj (.text:_cpuTimer2ISR)
                      000891a7    00000010     countdown.obj (.text:_ctd_startCountdown)
                      000891b7    0000000f     F021_API_F28004x_FPU32.lib : Verify.obj (.text:_Fapi_doVerify)
                      000891c6    0000000f                                : Utilities.obj (.text:__Fapi_scaleCycleValues)
                      000891d5    0000000f     c_cansig.obj (.text:_c_sig_isRxSignalUpToDate)
                      000891e4    0000000f     motorManager.obj (.text:_mot_isMotorPowered)
                      000891f3    0000000f     c_UDSLight.obj (.text:_uds_preparePosResponseDSC)
                      00089202    0000000e     CanNm_PB.obj (.text:_CanNmPB_CheckPDURxConfirmation)
                      00089210    0000000e     datalog.obj (.text:_DATALOG_init)
                      0008921e    0000000e     dma.obj (.text:_DMA_configAddresses)
                      0008922c    0000000e     dma.obj (.text:_DMA_configTransfer)
                      0008923a    0000000e     XcpBasic.obj (.text:_XcpInit)
                      00089248    0000000e     XcpBasic.obj (.text:_XcpStartDaq)
                      00089256    0000000e     c_cansig.obj (.text:_c_sig_saturateTxSignal)
                      00089264    0000000d     can.obj (.text:_CAN_readDataReg)
                      00089271    0000000d     CanNm_PB.obj (.text:_CanNmPB_main)
                      0008927e    0000000d     AppT3.obj (.text:_Cc5_WaitForSetpoint_en)
                      0008928b    0000000d     Rte.obj (.text:_ReportPowerConsumption)
                      00089298    0000000d     xcp_transport_layer.obj (.text:_XCPonUART_RX)
                      000892a5    0000000d     c_candriver.obj (.text:_c_drv_getReceivedOnce)
                      000892b2    0000000d     c_candriver.obj (.text:_c_drv_getRxIndication)
                      000892bf    0000000c     CanNm_PB.obj (.text:_CanNmPB_StartTimer)
                      000892cb    0000000c     AppT1.obj (.text:_Se85_Fast_OutputData)
                      000892d7    0000000c     Benchmark.obj (.text:_WriteActualTime)
                      000892e3    0000000c     pt1.obj (.text:_pt1_init)
                      000892ef    0000000c     app.obj (.text:_trigOverCurrReset)
                      000892fb    0000000b     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:_Fapi_checkFsmForReady)
                      00089306    0000000b     nvm.obj (.text:_Set_Nvm_CurrentOffsetW)
                      00089311    0000000b     nvm.obj (.text:_Set_Nvm_VoltageOffsetU)
                      0008931c    0000000b     nvm.obj (.text:_Set_Nvm_VoltageOffsetV)
                      00089327    0000000b     nvm.obj (.text:_Set_Nvm_VoltageOffsetW)
                      00089332    0000000b     XcpBasic.obj (.text:_XcpDisconnect)
                      0008933d    0000000b     F021_API_F28004x_FPU32.lib : Utilities.obj (.text:__Fapi_calculateOtpChecksum)
                      00089348    0000000b     c_cantask.obj (.text:_c_tsk_sendFrames10ms)
                      00089353    0000000b     c_UDSLight.obj (.text:_uds_preparePosResponse)
                      0008935e    0000000a     CanNm_PB.obj (.text:_CanNmPB_RepeatMessageState)
                      00089368    0000000a     dma.obj (.text:_DMA_configBurst)
                      00089372    0000000a     hal.obj (.text:_HAL_clearTimerFlag)
                      0008937c    0000000a     hal.obj (.text:_HAL_getTimerStatus)
                      00089386    0000000a     main.obj (.text:_ResetIntoBootloader)
                      00089390    0000000a     nvm.obj (.text:_Set_Nvm_CAN_IdOffset)
                      0008939a    0000000a     nvm.obj (.text:_Set_Nvm_DeliveryDate)
                      000893a4    0000000a     nvm.obj (.text:_Set_Nvm_HardwareVersion)
                      000893ae    0000000a     nvm.obj (.text:_Set_Nvm_SerialNumber)
                      000893b8    0000000a     c_UDSLight.obj (.text:_uds_prepareNegResponse)
                      000893c2    00000009     CanNm_PB.obj (.text:_CanNmPB_PowerOff)
                      000893cb    00000009     CanNm_PB.obj (.text:_CanNmPB_TxConfirmation)
                      000893d4    00000009     epwm.obj (.text:_EPWM_setEmulationMode)
                      000893dd    00000009     nvm.obj (.text:_Nvm_ImmediatelyWriteRequest)
                      000893e6    00000009     c_candriver.obj (.text:_c_drv_clearRxIndication)
                      000893ef    00000009     c_cansig_cfg.obj (.text:_c_sig_getHeaterEnableFlag)
                      000893f8    00000009     c_cansig.obj (.text:_c_sig_getRxSignal)
                      00089401    00000009     c_cansig.obj (.text:_c_sig_setTxSignalNA)
                      0008940a    00000009     Measure.obj (.text:_mea_sampleSlowSignals)
                      00089413    00000009     c_UDSLight.obj (.text:_uds_init)
                      0008941c    00000009     rts2800_fpu32.lib : _lock.c.obj (.text)
                      00089425    00000008     CanNm_PB.obj (.text:_CanNmPB_AckEnableSendFrames)
                      0008942d    00000008     Crc.obj (.text:_Crc_CalculateCrc16)
                      00089435    00000008     runEstimator.obj (.text:_EstStoreIdRef)
                      0008943d    00000008     nvm.obj (.text:_Set_Nvm_CurrentOffsetV)
                      00089445    00000008     xcp_appl.obj (.text:_XcpSendDto_If)
                      0008944d    00000008     c_cansig.obj (.text:_bitrange)
                      00089455    00000008     c_candriver.obj (.text:_c_drv_getBuffer)
                      0008945d    00000008     c_candriver.obj (.text:_c_drv_setReceivedOnce)
                      00089465    00000008     c_candriver.obj (.text:_c_drv_setRxIndication)
                      0008946d    00000008     movingAvg.obj (.text:_mavg_create)
                      00089475    00000008     Measure.obj (.text:_mea_convertSemiTopTempToCelsius)
                      0008947d    00000008     Measure.obj (.text:_mea_getTemperatureIGBT_C)
                      00089485    00000008     Measure.obj (.text:_mea_getTemperaturePCB_C)
                      0008948d    00000007     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:_Fapi_getFsmStatus)
                      00089494    00000007     Histogram.obj (.text:_GetHistStartAdress2D)
                      0008949b    00000007     nvm.obj (.text:_Set_Nvm_CurrentOffsetU)
                      000894a2    00000007     os.obj (.text:_os_event5ms)
                      000894a9    00000006     cputimer.obj (.text:_CPUTimer_setEmulationMode)
                      000894af    00000006     filter_fo.obj (.text:_FILTER_FO_setInitialConditions)
                      000894b5    00000006     OperatingHoursCounter.obj (.text:_IncOHCounter)
                      000894bb    00000006     XcpBasic.obj (.text:_XcpAllocDaq)
                      000894c1    00000006     XcpBasic.obj (.text:_XcpMemSet)
                      000894c7    00000006     c_cansig_cfg.obj (.text:_c_sig_HV_OvercurrentCont)
                      000894cd    00000006     c_cansig_cfg.obj (.text:_c_sig_LV_Undervoltage)
                      000894d3    00000006     c_cansig_cfg.obj (.text:_c_sig_Mot_DryRunEmergency)
                      000894d9    00000006     c_cansig_cfg.obj (.text:_c_sig_Mot_DryRunWarning)
                      000894df    00000006     c_cansig_cfg.obj (.text:_c_sig_setD_Current_100mA)
                      000894e5    00000006     c_cansig_cfg.obj (.text:_c_sig_setExtOperated)
                      000894eb    00000006     c_cansig_cfg.obj (.text:_c_sig_setQ_Current_100mA)
                      000894f1    00000006     c_cansig_cfg.obj (.text:_c_sig_setReserve_1)
                      000894f7    00000006     countdown.obj (.text:_ctd_startCountdown_ms)
                      000894fd    00000006     motorManager.obj (.text:_mot_task)
                      00089503    00000006     eepManager.obj (.text:_reInitSpi)
                      00089509    00000006     c_UDSLight.obj (.text:_uds_clearResponseBuffer)
                      0008950f    00000005     CanNm_PB.obj (.text:_CanNmPB_ResetTransitions)
                      00089514    00000005     filter_fo.obj (.text:_FILTER_FO_setNumCoeffs)
                      00089519    00000005     nvm.obj (.text:_Get_Nvm_CurrentOffsetU)
                      0008951e    00000005     nvm.obj (.text:_Get_Nvm_CurrentOffsetV)
                      00089523    00000005     nvm.obj (.text:_Get_Nvm_CurrentOffsetW)
                      00089528    00000005     nvm.obj (.text:_Get_Nvm_VoltageOffsetU)
                      0008952d    00000005     nvm.obj (.text:_Get_Nvm_VoltageOffsetV)
                      00089532    00000005     nvm.obj (.text:_Get_Nvm_VoltageOffsetW)
                      00089537    00000005     nvm.obj (.text:_Nvm_ImmediatelyWriteSet)
                      0008953c    00000005     XcpBasic.obj (.text:_XcpQueueInit)
                      00089541    00000005     c_cansig_cfg.obj (.text:_c_sig_HV_Overvoltage)
                      00089546    00000005     c_cansig_cfg.obj (.text:_c_sig_HV_Undervoltage)
                      0008954b    00000005     c_cansig_cfg.obj (.text:_c_sig_IGBT_OvertempEmergency)
                      00089550    00000005     c_cansig_cfg.obj (.text:_c_sig_IGBT_OvertempWarning)
                      00089555    00000005     c_cansig_cfg.obj (.text:_c_sig_MCU_UnexpReset)
                      0008955a    00000005     c_cansig_cfg.obj (.text:_c_sig_Mot_FanBlockedTemp)
                      0008955f    00000005     c_cansig_cfg.obj (.text:_c_sig_PCB_OvertempEmergency)
                      00089564    00000005     c_cansig_cfg.obj (.text:_c_sig_PCB_OvertempWarning)
                      00089569    00000005     c_cansig_cfg.obj (.text:_c_sig_PostFailed)
                      0008956e    00000005     c_cansig_cfg.obj (.text:_c_sig_setIgbtTemperature)
                      00089573    00000005     c_cansig_cfg.obj (.text:_c_sig_setPcbTemperature)
                      00089578    00000005     c_cansig_cfg.obj (.text:_c_sig_setSN_Internal)
                      0008957d    00000005     c_cansig_cfg.obj (.text:_c_sig_setSN_Major)
                      00089582    00000005     c_cansig_cfg.obj (.text:_c_sig_setSN_Minor)
                      00089587    00000005     c_cansig_cfg.obj (.text:_c_sig_setSemiconductorSw)
                      0008958c    00000005     Measure.obj (.text:_mea_sampleFastSignals)
                      00089591    00000004     clarke.obj (.text:_CLARKE_init)
                      00089595    00000004     CanNm_PB.obj (.text:_CanNmPB_GetPDURxConfirmation)
                      00089599    00000004     nvm.obj (.text:_ErrorNvm)
                      0008959d    00000004     filter_fo.obj (.text:_FILTER_FO_init)
                      000895a1    00000004     Rte.obj (.text:_GetRxIndication)
                      000895a5    00000004     RsOffsetCalibration.obj (.text:_GetStatusCalib)
                      000895a9    00000004     nvm.obj (.text:_Get_Nvm_BootIdOffset)
                      000895ad    00000004     nvm.obj (.text:_Get_Nvm_CAN_IdOffset)
                      000895b1    00000004     nvm.obj (.text:_Get_Nvm_DeliveryDate)
                      000895b5    00000004     nvm.obj (.text:_Get_Nvm_HardwareVersion)
                      000895b9    00000004     nvm.obj (.text:_Get_Nvm_SerialNumber)
                      000895bd    00000004     hal.obj (.text:_HAL_enableGlobalInts)
                      000895c1    00000004     ipark.obj (.text:_IPARK_init)
                      000895c5    00000004     interrupt.obj (.text:_Interrupt_defaultHandler)
                      000895c9    00000004     park.obj (.text:_PARK_init)
                      000895cd    00000004     pi.obj (.text:_PI_init)
                      000895d1    00000004     RsOffsetCalibration.obj (.text:_ResetStatus)
                      000895d5    00000004     svgen_current.obj (.text:_SVGENCURRENT_init)
                      000895d9    00000004     svgen.obj (.text:_SVGEN_init)
                      000895dd    00000004     traj.obj (.text:_TRAJ_init)
                      000895e1    00000004     XcpBasic.obj (.text:_XcpMemClr)
                      000895e5    00000004     XcpBasic.obj (.text:_XcpSetActiveTl)
                      000895e9    00000004     countdown.obj (.text:_ctd_isRunning)
                      000895ed    00000004     app.obj (.text:_isOverCurrentPeakEventTriggered)
                      000895f1    00000004     os.obj (.text:_main_setInhibitWdogRetrigger)
                      000895f5    00000004     Measure.obj (.text:_mea_getSupplyCurrent_100mA)
                      000895f9    00000004     c_UDSLight.obj (.text:_uds_sendResponse)
                      000895fd    00000003     drv8305.obj (.text:_DRV8305_init)
                      00089600    00000003     filter_fo.obj (.text:_FILTER_FO_setDenCoeffs)
                      00089603    00000003     hal.obj (.text:_HAL_enableDebugInt)
                      00089606    00000003     c_cantask.obj (.text:_c_tsk_init)
                      00089609    00000003     motorManager.obj (.text:_mot_init)
                      0008960c    00000002     xcp_appl.obj (.text:_ApplXcpGetPointer)
                      0008960e    00000002     drv8305.obj (.text:_DRV8305_setGpioNumber)
                      00089610    00000002     drv8305.obj (.text:_DRV8305_setSpiHandle)
                      00089612    00000002     F021_API_F28004x_FPU32.lib : FlashStateMachine.obj (.text:_Fapi_serviceWatchdogTimer)
                      00089614    00000002     interrupt.obj (.text:_Interrupt_illegalOperationHandler)
                      00089616    00000002     interrupt.obj (.text:_Interrupt_nmiHandler)
                      00089618    00000002     XcpBasic.obj (.text:_XcpBackground)
                      0008961a    00000002     c_SSI.obj (.text:_ssi_getPendingService)
                      0008961c    00000002     c_UDSLight.obj (.text:_uds_isFlashingAllowed)
                      0008961e    00000002     rts2800_fpu32.lib : pre_init.c.obj (.text)
                      00089620    00000001     c_cansig_cfg.obj (.text:_c_sig_Mot_FanBlockedPerm)
                      00089621    00000001     c_cansig_cfg.obj (.text:_c_sig_Mot_SpeedMeasUnpl)
                      00089622    00000001     c_cansig_cfg.obj (.text:_c_sig_setDeviceEnabled)
                      00089623    00000001     c_cantask.obj (.text:_c_tsk_sendFrames1ms)
                      00089624    00000001     c_cantask.obj (.text:_c_tsk_sendFrames2s)
                      00089625    00000001     c_SSI.obj (.text:_ssi_setPendingService)
                      00089626    00000001     rts2800_fpu32.lib : startup.c.obj (.text)
    
    .TI.ramfunc 
    *          0    00089628    00001331     RUN ADDR = 0000a000
                      00089628    00000670     AppT1.obj (.TI.ramfunc:_AppT1)
                      00089c98    00000370     app.obj (.TI.ramfunc:_mainISR)
                      0008a008    000001bb     AppT1.obj (.TI.ramfunc:_FOC)
                      0008a1c3    00000179     AppT1.obj (.TI.ramfunc:_CurrentControl)
                      0008a33c    00000175     AppT1.obj (.TI.ramfunc:_SpeedControl)
                      0008a4b1    0000011d     AppT1.obj (.TI.ramfunc:_Hfi)
                      0008a5ce    000000df     AppT1.obj (.TI.ramfunc:_PostProcessing)
                      0008a6ad    00000086     app.obj (.TI.ramfunc:_MOTOR_rms_sampling)
                      0008a733    00000070     AppT1.obj (.TI.ramfunc:_GenerateHfCarrier)
                      0008a7a3    00000045     flash.obj (.TI.ramfunc:_Flash_initModule)
                      0008a7e8    00000041     AppT1.obj (.TI.ramfunc:_FilterAlphaCurrentDoubleCarrier)
                      0008a829    00000041     AppT1.obj (.TI.ramfunc:_FilterAlphaCurrentSingleCarrier)
                      0008a86a    00000041     AppT1.obj (.TI.ramfunc:_FilterBetaCurrentDoubleCarrier)
                      0008a8ab    00000041     AppT1.obj (.TI.ramfunc:_FilterBetaCurrentSingleCarrier)
                      0008a8ec    0000003d     AppT1.obj (.TI.ramfunc:_AngleDelayCompensation)
                      0008a929    0000002c     runEstimator.obj (.TI.ramfunc:_runEstimator)
                      0008a955    00000004     sysctl.obj (.TI.ramfunc)
    
    .cinit     0    0008a95c    00000934     
                      0008a95c    000001fa     app.obj (.cinit)
                      0008ab56    000001f1     AppT1.obj (.cinit)
                      0008ad47    00000131     AppT3.obj (.cinit)
                      0008ae78    00000089     AppT2.obj (.cinit)
                      0008af01    00000075     Measure.obj (.cinit)
                      0008af76    0000003e     nvm.obj (.cinit:_NvM32bitContainer)
                      0008afb4    00000038     os.obj (.cinit)
                      0008afec    0000002e     AppT4.obj (.cinit)
                      0008b01a    00000022     graph.obj (.cinit)
                      0008b03c    0000001f     AppT2.obj (.cinit:_DIAG_EnableHealing_C)
                      0008b05b    0000001f     AppT2.obj (.cinit:_DIAG_MatureTime_C)
                      0008b07a    0000001f     AppT2.obj (.cinit:_X_Sb23_Unit_Delay2$1)
                      0008b099    0000001f     AppT2.obj (.cinit:_X_Sb36_Unit_Delay3$5)
                      0008b0b8    0000001c     CanNm_PB.obj (.cinit)
                      0008b0d4    00000014     runEstimator.obj (.cinit)
                      0008b0e8    00000011     AppT2.obj (.cinit:_X_Sb35_Unit_Delay$20)
                      0008b0f9    0000000e     c_candriver.obj (.cinit)
                      0008b107    0000000e     rts2800_fpu32.lib : exit.c.obj (.cinit)
                      0008b115    0000000c     Rte.obj (.cinit)
                      0008b121    0000000c     c_UDSLight.obj (.cinit)
                      0008b12d    0000000c     nvm.obj (.cinit)
                      0008b139    0000000b     AppT1.obj (.cinit:_AppT1_MaxPhaseCurrent_CUR_Table)
                      0008b144    0000000b     AppT1.obj (.cinit:_AppT1_MaxPhaseCurrent_CUR_xAxis)
                      0008b14f    0000000b     AppT1.obj (.cinit:_AppT1_facGainDcLink_CUR_Table)
                      0008b15a    0000000b     AppT1.obj (.cinit:_AppT1_facGainDcLink_CUR_xAxis)
                      0008b165    0000000b     AppT1.obj (.cinit:_X_Se88_Discrete_Filter2$10)
                      0008b170    0000000b     AppT1.obj (.cinit:_X_Se89_Discrete_Filter2$11)
                      0008b17b    0000000b     AppT1.obj (.cinit:_X_Se90_Discrete_Filter2$12)
                      0008b186    0000000b     AppT1.obj (.cinit:_X_Se91_Discrete_Filter2$13)
                      0008b191    00000009     Benchmark.obj (.cinit:_TimeOfTask)
                      0008b19a    00000008     c_cantask.obj (.cinit)
                      0008b1a2    00000007     AppT1.obj (.cinit:_AppT1_Precommutation_CUR_Table)
                      0008b1a9    00000007     AppT1.obj (.cinit:_AppT1_Precommutation_CUR_xAxis)
                      0008b1b0    00000007     AppT3.obj (.cinit:_AppT3_MechDampingCurve_CUR_Table)
                      0008b1b7    00000007     AppT3.obj (.cinit:_AppT3_MechDampingCurve_CUR_xAxis)
                      0008b1be    00000007     AppT1.obj (.cinit:_Se11_Switch)
                      0008b1c5    00000007     AppT1.obj (.cinit:_Se52_MinMax1)
                      0008b1cc    00000007     AppT2.obj (.cinit:_X_Sb52_Unit_Delay$15)
                      0008b1d3    00000007     AppT2.obj (.cinit:_X_Sb53_Unit_Delay$16)
                      0008b1da    00000007     AppT3.obj (.cinit:_X_Sc100_Discrete_Transfer_Fcn$3)
                      0008b1e1    00000007     AppT1.obj (.cinit:_X_Se21_AL$6)
                      0008b1e8    00000007     AppT1.obj (.cinit:_X_Se21_AL1$7)
                      0008b1ef    00000007     AppT1.obj (.cinit:_X_Se24_Unit_Delay$8)
                      0008b1f6    00000007     AppT1.obj (.cinit:_X_Se51_AL$2)
                      0008b1fd    00000007     AppT1.obj (.cinit:_X_Se51_AL1$3)
                      0008b204    00000007     AppT1.obj (.cinit:_X_Se54_Unit_Delay$4)
                      0008b20b    00000005     OperatingHoursCounter.obj (.cinit)
                      0008b210    00000005     Benchmark.obj (.cinit:_CpuCnt_)
                      0008b215    00000005     Benchmark.obj (.cinit:_Delta)
                      0008b21a    00000005     Benchmark.obj (.cinit:_Delta_Mean)
                      0008b21f    00000005     os.obj (.cinit:_Task_Load_percent_mean)
                      0008b224    00000005     AppT1.obj (.cinit:_X_Se19_Unit_Delay$9)
                      0008b229    00000005     AppT1.obj (.cinit:_X_Se50_Unit_Delay$5)
                      0008b22e    00000005     rts2800_fpu32.lib : _lock.c.obj (.cinit:__lock)
                      0008b233    00000005                       : _lock.c.obj (.cinit:__unlock)
                      0008b238    00000005     runEstimator.obj (.cinit:_errOffs)
                      0008b23d    00000005     Benchmark.obj (.cinit:_holdVal)
                      0008b242    00000004     HwIoConnectorLv.obj (.cinit)
                      0008b246    00000004     RsOffsetCalibration.obj (.cinit)
                      0008b24a    00000004     CanNm_PB.obj (.cinit:_ActualStateFeedback)
                      0008b24e    00000004     CanNm_PB.obj (.cinit:_ActualTimerValue)
                      0008b252    00000004     CanNm_PB.obj (.cinit:_ExpiryTime)
                      0008b256    00000004     CanNm_PB.obj (.cinit:_Flag_TimerExpired)
                      0008b25a    00000004     os.obj (.cinit:_Task_Load_percent)
                      0008b25e    00000004     CanNm_PB.obj (.cinit:_TimerEnabled)
                      0008b262    00000004     c_candriver.obj (.cinit:_canbuffer)
                      0008b266    00000004     nvm.obj (.cinit:_eepContainer)
                      0008b26a    00000004     c_cansig.obj (.cinit)
                      0008b26e    00000004     c_cansig_cfg.obj (.cinit)
                      0008b272    00000004     cputimers.obj (.cinit)
                      0008b276    00000004     drv8301.obj (.cinit)
                      0008b27a    00000004     drv8305.obj (.cinit)
                      0008b27e    00000004     drv8320.obj (.cinit)
                      0008b282    00000004     motorManager.obj (.cinit)
                      0008b286    00000004     rts2800_fpu32.lib : errno.c.obj (.cinit)
                      0008b28a    00000004     xcp_appl.obj (.cinit)
                      0008b28e    00000002     --HOLE-- [fill = 0]
    
    .pinit     0    00083030    00000000     UNINITIALIZED
    
    .econst    0    0008b290    0000083e     
                      0008b290    000003c0     c_cansig_cfg.obj (.econst:_TX_SIG_PAR)
                      0008b650    00000294     c_cansig_cfg.obj (.econst:_RX_SIG_PAR)
                      0008b8e4    000000c0     can_mailbox_cfg.obj (.econst:_C_DRV_MAILBOX_CFG)
                      0008b9a4    0000003c     nvm.obj (.econst:_$P$T1$2)
                      0008b9e0    00000032     rts2800_fpu32.lib : e_powf.c.obj (.econst)
                      0008ba12    00000019     c_cansig_cfg.obj (.econst:_TX_MSG)
                      0008ba2b    00000015     Measure.obj (.econst:_ADCVAL_X)
                      0008ba40    00000015     Measure.obj (.econst:_TEMP_INKLOFFSET50_Y)
                      0008ba55    00000014     c_cansig_cfg.obj (.econst:_RX_MSG)
                      0008ba69    00000001     countdown.obj (.econst)
                      0008ba6a    00000010     rts2800_fpu32.lib : e_logf.c.obj (.econst)
                      0008ba7a    0000000d     AppT2.obj (.econst:_IF_INDEX)
                      0008ba87    00000008     nvm.obj (.econst:_$P$T0$1)
                      0008ba8f    00000001     nvm.obj (.econst)
                      0008ba90    00000006     Benchmark.obj (.econst:_$P$T0$1)
                      0008ba96    00000006     Benchmark.obj (.econst:_$P$T1$2)
                      0008ba9c    00000006     AppT3.obj (.econst:_Sc48_AppT3_MechDampingCurve_CUR_map$49)
                      0008baa2    00000006     AppT1.obj (.econst:_Se29_AppT1_MaxPhaseCurrent_CUR_map$24)
                      0008baa8    00000006     AppT1.obj (.econst:_Se29_AppT1_facGainDcLink_CUR_map$25)
                      0008baae    00000006     AppT1.obj (.econst:_Se30_AppT1_Precommutation_CUR_map$34)
                      0008bab4    00000006     rts2800_fpu32.lib : s_scalbnf.c.obj (.econst)
                      0008baba    00000004                       : e_powf.c.obj (.econst:_bp)
                      0008babe    00000004                       : e_powf.c.obj (.econst:_dp_h)
                      0008bac2    00000004                       : e_powf.c.obj (.econst:_dp_l)
                      0008bac6    00000003     XcpBasic.obj (.econst)
                      0008bac9    00000001     --HOLE-- [fill = 0]
                      0008baca    00000002     can_mailbox_cfg.obj (.econst)
                      0008bacc    00000002     rts2800_fpu32.lib : s_floorf.c.obj (.econst)
    
    .switch    0    0008bad0    00000054     
                      0008bad0    00000020     XcpBasic.obj (.switch:_XcpCommand)
                      0008baf0    0000001c     nvm.obj (.switch:_NvMUpdate)
                      0008bb0c    00000018     AppT3.obj (.switch:_Cc3_NormalOperationMode_ex)
    
    .reset     0    003fffc0    00000002     DSECT
                      003fffc0    00000002     rts2800_fpu32.lib : boot28.asm.obj (.reset)
    
    .stack     1    000000f6    00000300     UNINITIALIZED
                      000000f6    00000300     --HOLE--
    
    Cla1Prog   0    0000a000    00000000     UNINITIALIZED
    
    Cla1Prog2 
    *          0    0000a000    00000000     UNINITIALIZED
    
    .const_cla 
    *          0    0000a000    00000000     UNINITIALIZED
    
    ctrl_data 
    *          1    00000500    0000026a     UNINITIALIZED
                      00000500    0000026a     app.obj (ctrl_data)
    
    .ebss      1    0000c000    00002612     UNINITIALIZED
                      0000c000    00000848     graph.obj (.ebss)
                      0000c848    00000020     Measure.obj (.ebss:_HVdisChargeVoltageFilterStorage)
                      0000c868    00000017     os.obj (.ebss)
                      0000c87f    00000001     HwIoConnectorLv.obj (.ebss)
                      0000c880    00000324     datalog.obj (.ebss:_datalogBuff1)
                      0000cba4    0000001c     AppT2.obj (.ebss:_DIAG_EnableHealing_C)
                      0000cbc0    00000324     datalog.obj (.ebss:_datalogBuff2)
                      0000cee4    0000001c     AppT2.obj (.ebss:_DIAG_MatureTime_C)
                      0000cf00    00000324     datalog.obj (.ebss:_datalogBuff3)
                      0000d224    0000001c     AppT2.obj (.ebss:_X_Sb23_Unit_Delay2$1)
                      0000d240    00000324     datalog.obj (.ebss:_datalogBuff4)
                      0000d564    0000001c     AppT2.obj (.ebss:_X_Sb36_Unit_Delay3$5)
                      0000d580    00000220     XcpBasic.obj (.ebss)
                      0000d7a0    00000020     Measure.obj (.ebss:_IGBT_TempRawFilterStorage)
                      0000d7c0    000001d6     app.obj (.ebss)
                      0000d996    00000020     Measure.obj (.ebss:_LVsupplyVoltageFilterStorage)
                      0000d9b6    0000000a     F021_API_F28004x_FPU32.lib : Init.obj (.ebss)
                      0000d9c0    000001ce     RteStructs.obj (.ebss)
                      0000db8e    00000020     Measure.obj (.ebss:_PCB_TempRawFilterStorage)
                      0000dbae    00000012     c_UDSLight.obj (.ebss)
                      0000dbc0    00000140     c_cansig.obj (.ebss:_txSignal)
                      0000dd00    00000140     runEstimator.obj (.ebss)
                      0000de40    00000128     AppT1.obj (.ebss)
                      0000df68    00000010     AppT4.obj (.ebss)
                      0000df78    00000008     AppT1.obj (.ebss:_AppT1_MaxPhaseCurrent_CUR_Table)
                      0000df80    000000dc     c_cansig.obj (.ebss:_rxSignal)
                      0000e05c    00000020     Measure.obj (.ebss:_meaRef3V3P5VoltageFilterStorage)
                      0000e07c    00000004     CanNm_PB.obj (.ebss:_ActualTimerValue)
                      0000e080    000000a6     AppT3.obj (.ebss)
                      0000e126    0000000f     CanNm_PB.obj (.ebss:_ActualStateFeedback)
                      0000e135    00000001     RsOffsetCalibration.obj (.ebss)
                      0000e136    0000000a     app.obj (.ebss:_EstIn)
                      0000e140    000000a0     Measure.obj (.ebss)
                      0000e1e0    00000020     Measure.obj (.ebss:_speedFilterStorage)
                      0000e200    00000080     Histogram.obj (.ebss:_HistogramFields2D)
                      0000e280    00000078     c_candriver.obj (.ebss:_canbuffer)
                      0000e2f8    00000008     AppT1.obj (.ebss:_AppT1_MaxPhaseCurrent_CUR_xAxis)
                      0000e300    00000056     AppT2.obj (.ebss)
                      0000e356    00000020     Measure.obj (.ebss:_supplyVoltageFilterStorage)
                      0000e376    00000009     xcp_appl.obj (.ebss:_message)
                      0000e37f    00000001     c_cansig.obj (.ebss)
                      0000e380    00000040     CanNm_PB.obj (.ebss)
                      0000e3c0    0000003c     Histogram.obj (.ebss:_HistogramFields1D)
                      0000e3fc    00000004     AppT1.obj (.ebss:_AppT1_Precommutation_CUR_Table)
                      0000e400    0000003c     nvm.obj (.ebss:_NvM32bitContainer)
                      0000e43c    00000004     AppT1.obj (.ebss:_AppT1_Precommutation_CUR_xAxis)
                      0000e440    0000003c     app.obj (.ebss:_filter)
                      0000e47c    00000004     AppT3.obj (.ebss:_AppT3_MechDampingCurve_CUR_Table)
                      0000e480    00000020     Measure.obj (.ebss:_supplyVoltageFilterStorage_100mV)
                      0000e4a0    00000020     Measure.obj (.ebss:_tempIGBTFilterStorage)
                      0000e4c0    00000020     Measure.obj (.ebss:_tempPCBFilterStorage)
                      0000e4e0    0000000e     AppT2.obj (.ebss:_X_Sb35_Unit_Delay$20)
                      0000e4ee    0000000e     datalog.obj (.ebss)
                      0000e4fc    00000004     AppT3.obj (.ebss:_AppT3_MechDampingCurve_CUR_xAxis)
                      0000e500    0000000c     Benchmark.obj (.ebss:_CpuCnt_)
                      0000e50c    0000000c     app.obj (.ebss:_filterHandle)
                      0000e518    00000008     AppT1.obj (.ebss:_AppT1_facGainDcLink_CUR_Table)
                      0000e520    00000008     AppT1.obj (.ebss:_AppT1_facGainDcLink_CUR_xAxis)
                      0000e528    00000008     AppT1.obj (.ebss:_X_Se88_Discrete_Filter2$10)
                      0000e530    00000008     AppT1.obj (.ebss:_X_Se89_Discrete_Filter2$11)
                      0000e538    00000008     AppT1.obj (.ebss:_X_Se90_Discrete_Filter2$12)
                      0000e540    00000008     AppT1.obj (.ebss:_X_Se91_Discrete_Filter2$13)
                      0000e548    00000008     nvm.obj (.ebss:_eepContainer)
                      0000e550    00000006     app.obj (.ebss:_CurrentsUVW)
                      0000e556    00000006     Benchmark.obj (.ebss:_Delta)
                      0000e55c    00000006     Benchmark.obj (.ebss:_Delta_Mean)
                      0000e562    00000006     AppT1.obj (.ebss:_Se4_Switch)
                      0000e568    00000006     os.obj (.ebss:_Task_Load_percent_mean)
                      0000e56e    00000006     Benchmark.obj (.ebss:_TimeOfTask)
                      0000e574    00000006     app.obj (.ebss:_VoltagesUVW)
                      0000e57a    00000006     runEstimator.obj (.ebss:_errOffs)
                      0000e580    00000006     xcp_appl.obj (.ebss:_globalSeed)
                      0000e586    00000006     Benchmark.obj (.ebss:_holdVal)
                      0000e58c    00000006     xcp_appl.obj (.ebss:_sSeed)
                      0000e592    00000006     c_candriver.obj (.ebss)
                      0000e598    00000006     countdown.obj (.ebss)
                      0000e59e    00000006     rts2800_fpu32.lib : exit.c.obj (.ebss)
                      0000e5a4    00000005     c_cansig_cfg.obj (.ebss:_MLTP_TX_MSG)
                      0000e5a9    00000004     CanNm_PB.obj (.ebss:_ExpiryTime)
                      0000e5ad    00000004     CanNm_PB.obj (.ebss:_Flag_TimerExpired)
                      0000e5b1    00000001     c_cansig_cfg.obj (.ebss)
                      0000e5b2    00000004     AppT1.obj (.ebss:_IF_Se55_uRotatingFrameDesired_)
                      0000e5b6    00000004     AppT1.obj (.ebss:_Se11_Switch)
                      0000e5ba    00000004     AppT1.obj (.ebss:_Se2_Switch1)
                      0000e5be    00000002     OperatingHoursCounter.obj (.ebss)
                      0000e5c0    00000004     AppT1.obj (.ebss:_Se52_MinMax1)
                      0000e5c4    00000004     CanNm_PB.obj (.ebss:_TimerEnabled)
                      0000e5c8    00000004     AppT2.obj (.ebss:_X_Sb52_Unit_Delay$15)
                      0000e5cc    00000004     AppT2.obj (.ebss:_X_Sb53_Unit_Delay$16)
                      0000e5d0    00000004     AppT3.obj (.ebss:_X_Sc100_Discrete_Transfer_Fcn$3)
                      0000e5d4    00000004     AppT1.obj (.ebss:_X_Se21_AL$6)
                      0000e5d8    00000004     AppT1.obj (.ebss:_X_Se21_AL1$7)
                      0000e5dc    00000004     AppT1.obj (.ebss:_X_Se24_Unit_Delay$8)
                      0000e5e0    00000004     AppT1.obj (.ebss:_X_Se51_AL$2)
                      0000e5e4    00000004     AppT1.obj (.ebss:_X_Se51_AL1$3)
                      0000e5e8    00000004     AppT1.obj (.ebss:_X_Se54_Unit_Delay$4)
                      0000e5ec    00000004     cputimers.obj (.ebss)
                      0000e5f0    00000004     drv8305.obj (.ebss)
                      0000e5f4    00000003     Rte.obj (.ebss)
                      0000e5f7    00000003     os.obj (.ebss:_Task_Load_percent)
                      0000e5fa    00000003     nvm.obj (.ebss)
                      0000e5fd    00000002     AppT1.obj (.ebss:_X_Se19_Unit_Delay$9)
                      0000e5ff    00000001     rts2800_fpu32.lib : errno.c.obj (.ebss)
                      0000e600    00000002     AppT1.obj (.ebss:_X_Se50_Unit_Delay$5)
                      0000e602    00000002     rts2800_fpu32.lib : _lock.c.obj (.ebss:__lock)
                      0000e604    00000002                       : _lock.c.obj (.ebss:__unlock)
                      0000e606    00000002     c_cantask.obj (.ebss)
                      0000e608    00000002     drv8301.obj (.ebss)
                      0000e60a    00000002     drv8320.obj (.ebss)
                      0000e60c    00000002     main.obj (.ebss)
                      0000e60e    00000002     motorManager.obj (.ebss)
                      0000e610    00000002     xcp_appl.obj (.ebss)
    
    MODULE SUMMARY
    
           Module                        code    initialized data   uninitialized data
           ------                        ----    ----------------   ------------------
        .\
           main.obj                      215     14                 2                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        215     14                 2                 
                                                                                      
        .\01_Application\Autocode\
           AppT1.obj                     7733    683                418               
           AppT3.obj                     2755    356                178               
           AppT2.obj                     1340    305                220               
           RteStructs.obj                0       0                  462               
           AppT4.obj                     73      46                 16                
           AppT5.obj                     72      0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        11973   1390               1294              
                                                                                      
        .\01_Application\Handcode\
           app.obj                       5024    506                1182              
           runEstimator.obj              695     25                 326               
           Histogram.obj                 355     0                  188               
           RsOffsetCalibration.obj       261     4                  1                 
           Benchmark.obj                 183     41                 36                
           interpolation.obj             86      0                  0                 
           motorManager.obj              24      4                  2                 
           OperatingHoursCounter.obj     6       5                  2                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        6634    585                1737              
                                                                                      
        .\02_Rte\
           Rte.obj                       62      12                 3                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        62      12                 3                 
                                                                                      
        .\03_Services\Can\
           c_cansig_cfg.obj              249     1669               6                 
           c_cansig.obj                  641     4                  541               
           c_candriver.obj               215     18                 126               
           c_cantask.obj                 60      8                  2                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        1165    1699               675               
                                                                                      
        .\03_Services\Countdown\
           countdown.obj                 54      1                  6                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        54      1                  6                 
                                                                                      
        .\03_Services\Crc\
           Crc.obj                       39      0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        39      0                  0                 
                                                                                      
        .\03_Services\Measurements\
           Measure.obj                   501     159                480               
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        501     159                480               
                                                                                      
        .\03_Services\NetworkManagement\
           CanNm_PB.obj                  701     48                 95                
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        701     48                 95                
                                                                                      
        .\03_Services\Nvm\
           nvm.obj                       753     175                71                
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        753     175                71                
                                                                                      
        .\03_Services\Scheduler\
           os.obj                        276     65                 32                
           cputimers.obj                 298     4                  4                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        574     69                 36                
                                                                                      
        .\03_Services\Uds\
           c_UDSLight.obj                965     12                 18                
           c_SSI.obj                     3       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        968     12                 18                
                                                                                      
        .\03_Services\Xcp\
           XcpBasic.obj                  1362    35                 544               
           xcp_appl.obj                  219     4                  23                
           xcp_transport_layer.obj       90      0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        1671    39                 567               
                                                                                      
        .\03_Services\eep\
           eepManager.obj                556     0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        556     0                  0                 
                                                                                      
        .\05_EcuAL\
           HwIoConnectorLv.obj           37      4                  1                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        37      4                  1                 
                                                                                      
        .\06_MCAL\
           hal.obj                       2675    0                  0                 
           sysctl.obj                    451     0                  0                 
           can.obj                       388     0                  0                 
           interrupt.obj                 342     0                  0                 
           gpio.obj                      303     0                  0                 
           dma.obj                       195     0                  0                 
           flash.obj                     138     0                  0                 
           sci.obj                       85      0                  0                 
           adc.obj                       69      0                  0                 
           spi.obj                       61      0                  0                 
           epwm.obj                      9       0                  0                 
           cputimer.obj                  6       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        4722    0                  0                 
                                                                                      
        .\10_Libraries\clarke\source\
           clarke.obj                    4       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        4       0                  0                 
                                                                                      
        .\10_Libraries\datalog\source\
           datalog.obj                   14      0                  3230              
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        14      0                  3230              
                                                                                      
        .\10_Libraries\diagnostic\source\
           graph.obj                     17      34                 2120              
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        17      34                 2120              
                                                                                      
        .\10_Libraries\drvic\drv8301\source\
           drv8301.obj                   0       4                  2                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        0       4                  2                 
                                                                                      
        .\10_Libraries\drvic\drv8305\source\
           drv8305.obj                   7       4                  4                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        7       4                  4                 
                                                                                      
        .\10_Libraries\drvic\drv8320\source\
           drv8320.obj                   0       4                  2                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        0       4                  2                 
                                                                                      
        .\10_Libraries\filter\source\
           filter_fo.obj                 18      0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        18      0                  0                 
                                                                                      
        .\10_Libraries\ipark\source\
           ipark.obj                     4       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        4       0                  0                 
                                                                                      
        .\10_Libraries\park\source\
           park.obj                      4       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        4       0                  0                 
                                                                                      
        .\10_Libraries\pi\source\
           pi.obj                        4       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        4       0                  0                 
                                                                                      
        .\10_Libraries\pierburg\
           movingAvg.obj                 64      0                  0                 
           pt1_float.obj                 61      0                  0                 
           pt1.obj                       12      0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        137     0                  0                 
                                                                                      
        .\10_Libraries\svgen\source\
           svgen.obj                     4       0                  0                 
           svgen_current.obj             4       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        8       0                  0                 
                                                                                      
        .\10_Libraries\traj\source\
           traj.obj                      4       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        4       0                  0                 
                                                                                      
        .\11_Configurations\
           user.obj                      1132    0                  0                 
           f28004x_codestartbranch.obj   2       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        1134    0                  0                 
                                                                                      
        .\11_Configurations\Can\
           can_mailbox_cfg.obj           0       194                0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        0       194                0                 
                                                                                      
        ../10_Libraries/flash_api/flash_api/F021_API_F28004x_FPU32.lib
           FlashStateMachine.obj         985     0                  0                 
           Program.obj                   480     0                  0                 
           Read.obj                      229     0                  0                 
           Init.obj                      167     0                  10                
           Utilities.obj                 112     0                  0                 
           Async.obj                     100     0                  0                 
           Verify.obj                    15      0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        2088    0                  10                
                                                                                      
        ../11_Configurations/rts2800_fpu32.lib
           e_powf.c.obj                  897     62                 0                 
           e_logf.c.obj                  299     16                 0                 
           fs_div28.asm.obj              136     0                  0                 
           s_scalbnf.c.obj               87      6                  0                 
           s_floorf.c.obj                87      2                  0                 
           boot28.asm.obj                86      0                  0                 
           exit.c.obj                    41      14                 6                 
           l_div28.asm.obj               42      0                  0                 
           e_sqrtf.c.obj                 38      0                  0                 
           cpy_tbl.c.obj                 36      0                  0                 
           fd_tol28.asm.obj              31      0                  0                 
           memcpy.c.obj                  29      0                  0                 
           args_main.c.obj               25      0                  0                 
           _lock.c.obj                   9       10                 4                 
           s_copysignf.c.obj             17      0                  0                 
           errno.c.obj                   0       4                  1                 
           pre_init.c.obj                2       0                  0                 
           startup.c.obj                 1       0                  0                 
        +--+-----------------------------+-------+------------------+--------------------+
           Total:                        1863    114                11                
                                                                                      
           Stack:                        0       0                  768               
        +--+-----------------------------+-------+------------------+--------------------+
           Grand Total:                  35931   4561               11132             
    
    
    GLOBAL DATA SYMBOLS: SORTED BY DATA PAGE
    
    address     data page           name
    --------    ----------------    ----
    000000f6       3 (000000c0)     __stack
    
    00000500      14 (00000500)     _gPwmDacData
    
    00000540      15 (00000540)     _gMotorVars
    
    00000640      19 (00000640)     _gUserParams
    
    0000c000     300 (0000c000)     _gStepVars
    
    0000c040     301 (0000c040)     _gGraphVars
    
    0000c868     321 (0000c840)     _cnt_
    0000c869     321 (0000c840)     _cnt_2s
    0000c86a     321 (0000c840)     __1msCounter
    0000c86b     321 (0000c840)     _CanNmRxFlag
    
    0000c880     322 (0000c880)     _datalogBuff1
    
    0000cba4     32e (0000cb80)     _DIAG_EnableHealing_C
    
    0000cbc0     32f (0000cbc0)     _datalogBuff2
    
    0000cee4     33b (0000cec0)     _DIAG_MatureTime_C
    
    0000cf00     33c (0000cf00)     _datalogBuff3
    
    0000d240     349 (0000d240)     _datalogBuff4
    
    0000d580     356 (0000d580)     _xcp
    
    0000d7c0     35f (0000d7c0)     _SoftwareVariant
    0000d7c1     35f (0000d7c0)     _PwmInternalEnable
    0000d7c2     35f (0000d7c0)     _OffsetLearnRequested
    0000d7c3     35f (0000d7c0)     _SelftestRequested
    0000d7c4     35f (0000d7c0)     _gLEDcnt
    0000d7c5     35f (0000d7c0)     _gCounter_speed
    0000d7c6     35f (0000d7c0)     _gCounter_TrajSpd
    0000d7c7     35f (0000d7c0)     _gCounter_TrajId
    0000d7c8     35f (0000d7c0)     _Flag_enableOffsetcalibration
    0000d7c9     35f (0000d7c0)     _measurableShuntThisCycle
    0000d7ca     35f (0000d7c0)     _ignoreShuntNextCycle
    0000d7cb     35f (0000d7c0)     _midVolShunt
    0000d7cc     35f (0000d7c0)     _gCmpOffset
    0000d7cd     35f (0000d7c0)     _gOvercurrentEvent
    0000d7ce     35f (0000d7c0)     _gOvercurrentCounter
    0000d7cf     35f (0000d7c0)     _gOvercurrentPulseCounter
    0000d7d0     35f (0000d7c0)     _overCurrPeakISRcounter
    0000d7d1     35f (0000d7c0)     _proj_loop_state
    0000d7d2     35f (0000d7c0)     _VoltageDcBus
    0000d7d4     35f (0000d7c0)     _angle_rad
    0000d7d6     35f (0000d7c0)     _fe_rps
    0000d7d8     35f (0000d7c0)     _fm_rps
    0000d7da     35f (0000d7c0)     _fm_lp_rps
    0000d7dc     35f (0000d7c0)     _fmDat
    0000d7de     35f (0000d7c0)     _dummy
    0000d7e0     35f (0000d7c0)     _IdRated_A
    0000d7e2     35f (0000d7c0)     _MotorVariant
    0000d7e4     35f (0000d7c0)     _gOffsetCalcCount
    0000d7e6     35f (0000d7c0)     _gOffsetCalcWaitTime
    0000d7e8     35f (0000d7c0)     _angleDelta_rad
    0000d7ea     35f (0000d7c0)     _angleEst_rad
    0000d7ec     35f (0000d7c0)     _angleSmo_rad
    0000d7ee     35f (0000d7c0)     _angleGen_rad
    0000d7f0     35f (0000d7c0)     _angleFoc_rad
    0000d7f2     35f (0000d7c0)     _clarkeHandle_I
    0000d7f4     35f (0000d7c0)     _clarkeHandle_V
    0000d7f6     35f (0000d7c0)     _estHandle
    0000d7f8     35f (0000d7c0)     _halHandle
    0000d7fa     35f (0000d7c0)     _iparkHandle
    0000d7fc     35f (0000d7c0)     _parkHandle
    0000d7fe     35f (0000d7c0)     _piHandle_Id
    
    0000d800     360 (0000d800)     _piHandle_Iq
    0000d802     360 (0000d800)     _piHandle_fwc
    0000d804     360 (0000d800)     _piHandle_spd
    0000d806     360 (0000d800)     _svgenHandle
    0000d808     360 (0000d800)     _svgen
    0000d80a     360 (0000d800)     _svgencurrentHandle
    0000d80c     360 (0000d800)     _trajHandle_spd
    0000d80e     360 (0000d800)     _trajHandle_Id
    0000d810     360 (0000d800)     _trajHandle_fwc
    0000d812     360 (0000d800)     _RampUpAcc_krpmps
    0000d814     360 (0000d800)     _RampDownAcc_krpmps
    0000d816     360 (0000d800)     _ReducedStartAcc_krpmps
    0000d818     360 (0000d800)     _KPspeedLowered
    0000d81a     360 (0000d800)     _KIspeedLowered
    0000d81c     360 (0000d800)     _KPspeedOperate
    0000d81e     360 (0000d800)     _KIspeedOperate
    0000d820     360 (0000d800)     _AccSwitchSpeedLowKrpm
    0000d822     360 (0000d800)     _AccSwitchSpeedHighKrpm
    0000d824     360 (0000d800)     _KPspeed
    0000d826     360 (0000d800)     _KIspeed
    0000d828     360 (0000d800)     _KPspeedDelta
    0000d82a     360 (0000d800)     _KIspeedDelta
    0000d82c     360 (0000d800)     _AccSwitchSpeedKrpm
    0000d82e     360 (0000d800)     _MaxAcc_krpmps
    0000d830     360 (0000d800)     _MaxAccDelta_krpmps
    0000d832     360 (0000d800)     _Idq_ref_A
    0000d836     360 (0000d800)     _Idq_offset_A
    0000d83a     360 (0000d800)     _Iab_in_A
    
    0000d840     361 (0000d840)     _Idq_in_A
    0000d844     361 (0000d840)     _Vab_out_V
    0000d848     361 (0000d840)     _Vdq_out_V
    0000d84c     361 (0000d840)     _Vdq_offset_V
    0000d850     361 (0000d840)     _ipark
    0000d854     361 (0000d840)     _park
    0000d858     361 (0000d840)     _IdqSet_A
    0000d85c     361 (0000d840)     _clarke_I
    0000d862     361 (0000d840)     _clarke_V
    0000d868     361 (0000d840)     _svgencurrent
    0000d86e     361 (0000d840)     _gAdcDataPrev_A
    0000d874     361 (0000d840)     _gPwmDataPrev
    
    0000d880     362 (0000d880)     _traj_spd
    0000d88a     362 (0000d880)     _traj_Id
    0000d894     362 (0000d880)     _traj_fwc
    0000d89e     362 (0000d880)     _gAdcData
    0000d8ae     362 (0000d880)     _gPwmData
    
    0000d8c0     363 (0000d8c0)     _gEstInputData
    0000d8d0     363 (0000d8c0)     _pi_Id
    0000d8e0     363 (0000d8c0)     _pi_Iq
    0000d8f0     363 (0000d8c0)     _pi_fwc
    
    0000d900     364 (0000d900)     _pi_spd
    0000d910     364 (0000d900)     _gEstOutputData
    
    0000d940     365 (0000d940)     _hal
    
    0000d9b6     366 (0000d980)     _Fapi_GlobalInit
    
    0000d9c0     367 (0000d9c0)     _OutAppT5
    0000d9c4     367 (0000d9c0)     _Fast_OutputData
    0000d9ca     367 (0000d9c0)     _InRte
    0000d9d0     367 (0000d9c0)     _Fast_InputDataBus
    0000d9da     367 (0000d9c0)     _OutAppT2
    
    0000da00     368 (0000da00)     _OutAppT4
    0000da18     368 (0000da00)     _OutAppT1
    
    0000da40     369 (0000da40)     _OutAppT3
    
    0000da80     36a (0000da80)     _OutRte
    
    0000dbae     36e (0000db80)     _MultipleCanFrames
    0000dbaf     36e (0000db80)     _CanTimeoutFlag
    0000dbb0     36e (0000db80)     _isTesterPresent
    0000dbb4     36e (0000db80)     _SvnRev
    0000dbb6     36e (0000db80)     _OffsetValue
    0000dbba     36e (0000db80)     _testerPresentCountdown
    
    0000dd00     374 (0000dd00)     _FinishedOffsetLearning
    0000dd01     374 (0000dd00)     _cnt
    0000dd02     374 (0000dd00)     _waitTime
    0000dd03     374 (0000dd00)     _ErrFlagPhaseProof
    0000dd04     374 (0000dd00)     _FinishedSelftest
    
    0000dd40     375 (0000dd40)     _Selftest
    
    0000de4a     379 (0000de40)     _AppT1_AngleDegOffset_C
    0000de4c     379 (0000de40)     _AppT1_CoilHeatingCurrent_C
    0000de4e     379 (0000de40)     _AppT1_DecLimit_C
    0000de50     379 (0000de40)     _AppT1_FirstAlignPos_C
    0000de52     379 (0000de40)     _AppT1_IqRefMan_C
    0000de54     379 (0000de40)     _AppT1_ManVd_C
    0000de56     379 (0000de40)     _AppT1_ManVq_C
    0000de58     379 (0000de40)     _AppT1_MaxRatioPreCom_C
    0000de5a     379 (0000de40)     _AppT1_MeasureRsCurrent_C
    0000de5c     379 (0000de40)     _AppT1_MeasureRsKi_C
    0000de5e     379 (0000de40)     _AppT1_MeasureRsKp_C
    0000de60     379 (0000de40)     _AppT1_MinRatioPreCom_C
    0000de62     379 (0000de40)     _AppT1_OlGain_C
    0000de64     379 (0000de40)     _AppT1_PrecommByCharline_C
    0000de66     379 (0000de40)     _AppT1_PulseTime_C
    0000de68     379 (0000de40)     _AppT1_RiseRateLower_C
    0000de6a     379 (0000de40)     _AppT1_RiseRateUpper_C
    0000de6c     379 (0000de40)     _AppT1_RpmDes_C
    0000de6e     379 (0000de40)     _AppT1_RpmThreshold_C
    0000de70     379 (0000de40)     _AppT1_SecondAlignPos_C
    0000de72     379 (0000de40)     _AppT1_SpeedKi_C
    0000de74     379 (0000de40)     _AppT1_SpeedKp_C
    0000de76     379 (0000de40)     _AppT1_SpeedRefMan_C
    0000de78     379 (0000de40)     _AppT1_SwAngleShift_C
    0000de7a     379 (0000de40)     _AppT1_SwEnableStartup_C
    0000de7c     379 (0000de40)     _AppT1_SwIqRefMan_C
    0000de7e     379 (0000de40)     _AppT1_SwManVdq_C
    
    0000de80     37a (0000de80)     _AppT1_SwSpeedRefMan_C
    0000de82     37a (0000de80)     _AppT1_TimeThreshold_C
    0000de84     37a (0000de80)     _AppT1_TrajLimit_C
    0000de86     37a (0000de80)     _AppT1_TrajReset_C
    0000de88     37a (0000de80)     _AppT1_TrajSlopeDecelLower_C
    0000de8a     37a (0000de80)     _AppT1_TrajSlopeUpper_C
    0000de8c     37a (0000de80)     _AppT1_dCurrentKi_C
    0000de8e     37a (0000de80)     _AppT1_dCurrentKp_C
    0000de90     37a (0000de80)     _AppT1_iDDesMan_C
    0000de92     37a (0000de80)     _AppT1_maxVsMaxPu_C
    0000de94     37a (0000de80)     _AppT1_qCurrentKi_C
    0000de96     37a (0000de80)     _AppT1_qCurrentKp_C
    0000de98     37a (0000de80)     _Hfi_HarmonicCorrectionGain_C
    0000de9a     37a (0000de80)     _Hfi_PllKi_C
    0000de9c     37a (0000de80)     _Hfi_PllKp_C
    0000de9e     37a (0000de80)     _Hfi_uCarrierGain_C
    0000dea0     37a (0000de80)     _AppT1_AccT_MP
    0000dea2     37a (0000de80)     _AppT1_AngleRadComputed_MP
    0000dea4     37a (0000de80)     _AppT1_AngleRadEstimator_MP
    0000dea6     37a (0000de80)     _AppT1_MaxPhaseCurrent_CUR
    0000dea8     37a (0000de80)     _AppT1_OlEnabled_MP
    0000deaa     37a (0000de80)     _AppT1_Precommutation_CUR
    0000deac     37a (0000de80)     _AppT1_arcEstimatedAngleEl_MP
    0000deae     37a (0000de80)     _AppT1_bBlockageReleased_MP
    0000deb0     37a (0000de80)     _AppT1_bResetControl_MP
    0000deb2     37a (0000de80)     _AppT1_facGainDcLink_CUR
    0000deb4     37a (0000de80)     _AppT1_iDirectAxis_MP
    0000deb6     37a (0000de80)     _AppT1_iDirectError_MP
    0000deb8     37a (0000de80)     _AppT1_iPhaseU_MP
    0000deba     37a (0000de80)     _AppT1_iPhaseV_MP
    0000debc     37a (0000de80)     _AppT1_iPhaseW_MP
    0000debe     37a (0000de80)     _AppT1_iQuadratureAxis_MP
    
    0000dec0     37b (0000dec0)     _AppT1_iQuadratureError_MP
    0000dec2     37b (0000dec0)     _AppT1_nEstimatedSpeedMe_MP
    0000dec4     37b (0000dec0)     _AppT1_nSpeedDesiredRamped_MP
    0000dec6     37b (0000dec0)     _AppT1_nSpeedDesired_MP
    0000dec8     37b (0000dec0)     _AppT1_nSpeedError_MP
    0000deca     37b (0000dec0)     _AppT1_trqEstimatedTorque_MP
    0000decc     37b (0000dec0)     _AppT1_uDDesired_MP
    0000dece     37b (0000dec0)     _AppT1_uDirectAxis_MP
    0000ded0     37b (0000dec0)     _AppT1_uPhaseU_MP
    0000ded2     37b (0000dec0)     _AppT1_uPhaseV_MP
    0000ded4     37b (0000dec0)     _AppT1_uPhaseW_MP
    0000ded6     37b (0000dec0)     _AppT1_uQDesired_MP
    0000ded8     37b (0000dec0)     _AppT1_uQuadratureAxis_MP
    0000deda     37b (0000dec0)     _Hfi_arcEstimatedPositionEl_MP
    0000dedc     37b (0000dec0)     _Post_uDDesired_MP
    0000dede     37b (0000dec0)     _Post_uQDesired_MP
    
    0000df68     37d (0000df40)     _SysPa_SpeedMinTarget_C
    0000df69     37d (0000df40)     _SysPa_EnableFlystart_C
    0000df6a     37d (0000df40)     _SysPa_EnableLimpMode_C
    0000df6b     37d (0000df40)     _SysPa_InvertRotDir_C
    0000df6c     37d (0000df40)     _SysPa_EnableHeaterFeature_C
    0000df6e     37d (0000df40)     _SysPa_Zp_C
    0000df70     37d (0000df40)     _SysPa_nMax_C
    0000df72     37d (0000df40)     _SysPa_nNearZeroSpeed_C
    0000df74     37d (0000df40)     _SysPa_tMaxMotorCoil_C
    0000df76     37d (0000df40)     _SysPa_trqMax_C
    0000df78     37d (0000df40)     _AppT1_MaxPhaseCurrent_CUR_Table
    
    0000e07c     381 (0000e040)     _ActualTimerValue
    
    0000e080     382 (0000e080)     _AppT3_tIgbtFiltred_MP
    0000e081     382 (0000e080)     _AppT3_tMotorCoil_MP
    0000e082     382 (0000e080)     _AppT3_tPcbFiltred_MP
    0000e090     382 (0000e080)     _AppT3_Eta_C
    0000e092     382 (0000e080)     _AppT3_MechTimeConstant_C
    0000e094     382 (0000e080)     _AppT3_R20_C
    0000e096     382 (0000e080)     _AppT3_ResetCanTimeout_C
    0000e098     382 (0000e080)     _AppT3_RsFilterTime_C
    0000e09a     382 (0000e080)     _AppT3_TempCoefficientAlpha_C
    0000e09c     382 (0000e080)     _AppT3_TemperatureFilterTime_C
    0000e09e     382 (0000e080)     _AppT3_swtOffsetHrbCwa_C
    0000e0a0     382 (0000e080)     _AppT3_uDcFilterTime_C
    0000e0a2     382 (0000e080)     _AppT3_CanTimeoutPerm_MP
    0000e0a4     382 (0000e080)     _AppT3_CoastOutTime_MP
    0000e0a6     382 (0000e080)     _AppT3_ExtOpCounter_MP
    0000e0a8     382 (0000e080)     _AppT3_MechDampingCurve_CUR
    0000e0aa     382 (0000e080)     _AppT3_OffsetsIu_MP
    0000e0ac     382 (0000e080)     _AppT3_OffsetsIv_MP
    0000e0ae     382 (0000e080)     _AppT3_OffsetsIw_MP
    0000e0b0     382 (0000e080)     _AppT3_OffsetsVu_MP
    0000e0b2     382 (0000e080)     _AppT3_OffsetsVv_MP
    0000e0b4     382 (0000e080)     _AppT3_OffsetsVw_MP
    0000e0b6     382 (0000e080)     _AppT3_RpmMechFreezed_MP
    0000e0b8     382 (0000e080)     _AppT3_RsFiltredContinuous_MP
    0000e0ba     382 (0000e080)     _AppT3_Rs_MP
    0000e0bc     382 (0000e080)     _AppT3_Task10ms_MP
    0000e0be     382 (0000e080)     _AppT3_Task1ms_MP
    
    0000e0c0     383 (0000e0c0)     _AppT3_Task50us_MP
    0000e0c2     383 (0000e0c0)     _AppT3_TorqueFreezed_MP
    0000e0c4     383 (0000e0c0)     _AppT3_bEnablePwmInternal_MP
    0000e0c6     383 (0000e0c0)     _AppT3_iDcLink_MP
    0000e0c8     383 (0000e0c0)     _AppT3_iDcRaw_MP
    0000e0ca     383 (0000e0c0)     _AppT3_iOffset_MP
    0000e0cc     383 (0000e0c0)     _AppT3_nEstSpeedAbsMe_MP
    0000e0ce     383 (0000e0c0)     _AppT3_pwrEffective_MP
    0000e0d0     383 (0000e0c0)     _AppT3_stMotor_MP
    0000e0d2     383 (0000e0c0)     _AppT3_stNetwork_MP
    0000e0d4     383 (0000e0c0)     _AppT3_uDcLinkFiltred_MP
    0000e0d6     383 (0000e0c0)     _AppT3_uDcLink_MP
    
    0000e126     384 (0000e100)     _ActualStateFeedback
    0000e135     384 (0000e100)     _statusRsCalib
    0000e136     384 (0000e100)     _EstIn
    
    0000e140     385 (0000e140)     _XCP_test_01
    0000e141     385 (0000e140)     _XCP_test_02
    0000e142     385 (0000e140)     _XCP_test_03
    0000e143     385 (0000e140)     _XCP_test_04
    0000e144     385 (0000e140)     _XCP_test_05
    0000e145     385 (0000e140)     _XCP_test_06
    0000e146     385 (0000e140)     _XCP_test_07
    0000e147     385 (0000e140)     _XCP_test_08
    0000e148     385 (0000e140)     _temperatureIGBT_C
    0000e149     385 (0000e140)     _temperatureIGBT_0p1C
    0000e14a     385 (0000e140)     _stimTempIGBT
    0000e14b     385 (0000e140)     _stimTempPCB
    0000e14c     385 (0000e140)     _temperatureTest_C
    0000e14d     385 (0000e140)     _IGBT_TempRawSignal
    0000e14e     385 (0000e140)     _IGBT_TempRawSignalShifted
    0000e14f     385 (0000e140)     _temperaturePCB_C
    0000e150     385 (0000e140)     _gDC_Current_100mA
    0000e151     385 (0000e140)     _meaSupplyCurrent_100mA
    0000e152     385 (0000e140)     _HVdisChargeRawSignal
    0000e153     385 (0000e140)     _LVsupplyRawSignal
    0000e154     385 (0000e140)     _meaHVdisChargeVoltage_V
    0000e155     385 (0000e140)     _meaLVSupplyVoltage_mV
    0000e156     385 (0000e140)     _Ref3V3P5RawSignal
    0000e157     385 (0000e140)     _meaRef3V3P5Voltage_mV
    0000e158     385 (0000e140)     _current_Test
    0000e15b     385 (0000e140)     _meaIqActualValue_10mA
    0000e15c     385 (0000e140)     _meaIqMeanValue_10mA
    0000e15d     385 (0000e140)     _meaSpeedActValue_rpm
    0000e15e     385 (0000e140)     _meaSpeedMeanValue_rpm
    0000e160     385 (0000e140)     _iDC
    0000e162     385 (0000e140)     _etaElectricalFactor
    0000e164     385 (0000e140)     _test1_float
    0000e166     385 (0000e140)     _voltageCorrRawSignal
    0000e168     385 (0000e140)     _gConsumedPower_W
    0000e16a     385 (0000e140)     _gDC_Current_A
    0000e16c     385 (0000e140)     _gMotorMechPower_W
    0000e16e     385 (0000e140)     _gMotorMechPower_W_Filtered
    0000e170     385 (0000e140)     _gConsumedPower_W_Filtered
    0000e172     385 (0000e140)     _gDC_Current_A_Filtered
    0000e174     385 (0000e140)     _meaActSpeedKrpmFiltrd
    0000e176     385 (0000e140)     _tempIGBTpt1Filter
    0000e178     385 (0000e140)     _tempPCBpt1Filter
    0000e17a     385 (0000e140)     _qCurrpt1Filter
    0000e17c     385 (0000e140)     _MotorMechPowerpt1Filter
    
    0000e180     386 (0000e180)     _ConsumedPowerpt1Filter
    0000e184     386 (0000e180)     _DC_Currentpt1Filter
    0000e188     386 (0000e180)     _actSpeedKrpmpt1Filter
    
    0000e200     388 (0000e200)     _HistogramFields2D
    
    0000e2f8     38b (0000e2c0)     _AppT1_MaxPhaseCurrent_CUR_xAxis
    
    0000e300     38c (0000e300)     _DIAG_HysteresisTemperature_C
    0000e301     38c (0000e300)     _DIAG_IgbtOvertempEmergValue_C
    0000e302     38c (0000e300)     _DIAG_IgbtOvertempWarnValue_C
    0000e303     38c (0000e300)     _DIAG_PcbOvertempEmergValue_C
    0000e304     38c (0000e300)     _DIAG_PcbOvertempWarnValue_C
    0000e308     38c (0000e300)     _DIAG_BlockedWaitTime_C
    0000e30a     38c (0000e300)     _DIAG_OvervoltEmergValue_C
    0000e30c     38c (0000e300)     _DIAG_OvervoltResetValue_C
    0000e30e     38c (0000e300)     _DIAG_SwBlockDetection_C
    0000e310     38c (0000e300)     _DIAG_UndervoltEmergValue_C
    0000e312     38c (0000e300)     _DIAG_UndervoltResetValue_C
    0000e314     38c (0000e300)     _DIAG_CanTimeout_MP
    0000e316     38c (0000e300)     _DIAG_Drv8305Misc_MP
    0000e318     38c (0000e300)     _DIAG_Drv8305Overtemperature_MP
    0000e31a     38c (0000e300)     _DIAG_Drv8305Undervoltage_MP
    0000e31c     38c (0000e300)     _DIAG_EepromWarning_MP
    0000e31e     38c (0000e300)     _DIAG_HvOvervoltage_MP
    0000e320     38c (0000e300)     _DIAG_HvUndervoltage_MP
    0000e322     38c (0000e300)     _DIAG_IgbtEmergency_MP
    0000e324     38c (0000e300)     _DIAG_IgbtWarning_MP
    0000e326     38c (0000e300)     _DIAG_MotBlocked_MP
    0000e328     38c (0000e300)     _DIAG_OvercurrentPeak_MP
    0000e32a     38c (0000e300)     _DIAG_PcbEmergency_MP
    0000e32c     38c (0000e300)     _DIAG_PcbWarning_MP
    0000e32e     38c (0000e300)     _DIAG_PhaseLost_MP
    0000e330     38c (0000e300)     _DIAG_UnexpectedReset_MP
    0000e332     38c (0000e300)     _DIAG_iRmsU_MP
    0000e334     38c (0000e300)     _DIAG_iRmsV_MP
    0000e336     38c (0000e300)     _DIAG_iRmsW_MP
    
    0000e376     38d (0000e340)     _message
    
    0000e380     38e (0000e380)     _StateNm
    0000e381     38e (0000e380)     _NetworkState
    0000e382     38e (0000e380)     _Flag_EnableCanSendFrames
    0000e383     38e (0000e380)     _Flag_EnablePduTransmit
    0000e384     38e (0000e380)     _ActualNetworkState
    0000e385     38e (0000e380)     _CanNmPB_TxConfirmed
    0000e386     38e (0000e380)     _CanNmPB_RxIndicated
    0000e387     38e (0000e380)     _CanNmPB_RxPduIndRem
    0000e388     38e (0000e380)     _TxPDU
    0000e3a4     38e (0000e380)     _RxPDU
    
    0000e3c0     38f (0000e3c0)     _HistogramFields1D
    0000e3fc     38f (0000e3c0)     _AppT1_Precommutation_CUR_Table
    
    0000e43c     390 (0000e400)     _AppT1_Precommutation_CUR_xAxis
    
    0000e440     391 (0000e440)     _filter
    0000e47c     391 (0000e440)     _AppT3_MechDampingCurve_CUR_Table
    
    0000e4ee     393 (0000e4c0)     _datalogHandle
    0000e4f0     393 (0000e4c0)     _datalog
    0000e4fc     393 (0000e4c0)     _AppT3_MechDampingCurve_CUR_xAxis
    
    0000e500     394 (0000e500)     _CpuCnt_
    0000e50c     394 (0000e500)     _filterHandle
    0000e518     394 (0000e500)     _AppT1_facGainDcLink_CUR_Table
    0000e520     394 (0000e500)     _AppT1_facGainDcLink_CUR_xAxis
    
    0000e550     395 (0000e540)     _CurrentsUVW
    0000e556     395 (0000e540)     _Delta
    0000e55c     395 (0000e540)     _Delta_Mean
    0000e568     395 (0000e540)     _Task_Load_percent_mean
    0000e56e     395 (0000e540)     _TimeOfTask
    0000e574     395 (0000e540)     _VoltagesUVW
    0000e57a     395 (0000e540)     _errOffs
    
    0000e580     396 (0000e580)     _globalSeed
    0000e586     396 (0000e580)     _holdVal
    0000e58c     396 (0000e580)     _sSeed
    0000e592     396 (0000e580)     _testlength
    0000e593     396 (0000e580)     _canEcuNumber
    0000e594     396 (0000e580)     _ui32V_rxIndication
    0000e596     396 (0000e580)     _ui32V_receivedOnce
    0000e59e     396 (0000e580)     ___TI_enable_exit_profile_output
    0000e5a0     396 (0000e580)     ___TI_cleanup_ptr
    0000e5a2     396 (0000e580)     ___TI_dtors_ptr
    0000e5a4     396 (0000e580)     _MLTP_TX_MSG
    0000e5a9     396 (0000e580)     _ExpiryTime
    0000e5ad     396 (0000e580)     _Flag_TimerExpired
    0000e5b1     396 (0000e580)     _HRBState
    
    0000e5c4     397 (0000e5c0)     _TimerEnabled
    0000e5ec     397 (0000e5c0)     _cpuTimer0IntCount
    0000e5ed     397 (0000e5c0)     _cpuTimer1IntCount
    0000e5ee     397 (0000e5c0)     _cpuTimer2IntCount
    0000e5ef     397 (0000e5c0)     _timebaseCounter
    0000e5f0     397 (0000e5c0)     _testSPIread1
    0000e5f1     397 (0000e5c0)     _testSPIread2
    0000e5f4     397 (0000e5c0)     _EnablePwm
    0000e5f5     397 (0000e5c0)     _RxIndicated
    0000e5f6     397 (0000e5c0)     _DiscardCounter
    0000e5f7     397 (0000e5c0)     _Task_Load_percent
    0000e5fb     397 (0000e5c0)     _PageCounter
    0000e5ff     397 (0000e5c0)     _errno
    
    0000e602     398 (0000e600)     __lock
    0000e604     398 (0000e600)     __unlock
    0000e606     398 (0000e600)     _isTxPathLocked
    0000e607     398 (0000e600)     _ReceivedNmFrame
    0000e60c     398 (0000e600)     _psavalue
    0000e60e     398 (0000e600)     _Reset_Trap_Condition
    0000e60f     398 (0000e600)     _ratioCmp1Period
    0000e610     398 (0000e600)     _xcpResource
    0000e611     398 (0000e600)     _length
    
    00083002    20c0 (00083000)     _AppHeader
    00083010    20c0 (00083000)     _Svnrev
    
    0008b290    22ca (0008b280)     _TX_SIG_PAR
    
    0008b650    22d9 (0008b640)     _RX_SIG_PAR
    
    0008b8e4    22e3 (0008b8c0)     _C_DRV_MAILBOX_CFG
    
    0008ba12    22e8 (0008ba00)     _TX_MSG
    
    0008ba55    22e9 (0008ba40)     _RX_MSG
    0008ba69    22e9 (0008ba40)     _FREE_RUNNING_TIMER_1US
    
    0008bac6    22eb (0008bac0)     _kXcpMainVersion
    0008bac7    22eb (0008bac0)     _kXcpSubVersion
    0008bac8    22eb (0008bac0)     _kXcpReleaseVersion
    0008baca    22eb (0008bac0)     _OVERRUN_CALMDOWN_US
    
    
    GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name 
    
    page  address   name                                   
    ----  -------   ----                                   
    0     00083030  .text                                  
    0     00088740  C$$EXIT                                
    0     00088c14  FD$$TOL                                
    0     00086f72  FS$$DIV                                
    abs   003ee438  FS$$TOFD                               
    0     000886c4  L$$DIV                                 
    0     000886d3  L$$MOD                                 
    0     000886e1  UL$$DIV                                
    0     000886e8  UL$$MOD                                
    0     00087db7  _ADC_setVREF                           
    1     0000d822  _AccSwitchSpeedHighKrpm                
    1     0000d82c  _AccSwitchSpeedKrpm                    
    1     0000d820  _AccSwitchSpeedLowKrpm                 
    1     0000e384  _ActualNetworkState                    
    1     0000e126  _ActualStateFeedback                   
    1     0000e07c  _ActualTimerValue                      
    0     0000b2c4  _AngleDelayCompensation                
    0     00083002  _AppHeader                             
    0     0000a000  _AppT1                                 
    1     0000dea0  _AppT1_AccT_MP                         
    1     0000de4a  _AppT1_AngleDegOffset_C                
    1     0000dea2  _AppT1_AngleRadComputed_MP             
    1     0000dea4  _AppT1_AngleRadEstimator_MP            
    1     0000de4c  _AppT1_CoilHeatingCurrent_C            
    1     0000de4e  _AppT1_DecLimit_C                      
    1     0000de50  _AppT1_FirstAlignPos_C                 
    1     0000de52  _AppT1_IqRefMan_C                      
    1     0000de54  _AppT1_ManVd_C                         
    1     0000de56  _AppT1_ManVq_C                         
    1     0000dea6  _AppT1_MaxPhaseCurrent_CUR             
    1     0000df78  _AppT1_MaxPhaseCurrent_CUR_Table       
    1     0000e2f8  _AppT1_MaxPhaseCurrent_CUR_xAxis       
    1     0000de58  _AppT1_MaxRatioPreCom_C                
    1     0000de5a  _AppT1_MeasureRsCurrent_C              
    1     0000de5c  _AppT1_MeasureRsKi_C                   
    1     0000de5e  _AppT1_MeasureRsKp_C                   
    1     0000de60  _AppT1_MinRatioPreCom_C                
    1     0000dea8  _AppT1_OlEnabled_MP                    
    1     0000de62  _AppT1_OlGain_C                        
    1     0000de64  _AppT1_PrecommByCharline_C             
    1     0000deaa  _AppT1_Precommutation_CUR              
    1     0000e3fc  _AppT1_Precommutation_CUR_Table        
    1     0000e43c  _AppT1_Precommutation_CUR_xAxis        
    1     0000de66  _AppT1_PulseTime_C                     
    1     0000de68  _AppT1_RiseRateLower_C                 
    1     0000de6a  _AppT1_RiseRateUpper_C                 
    1     0000de6c  _AppT1_RpmDes_C                        
    1     0000de6e  _AppT1_RpmThreshold_C                  
    1     0000de70  _AppT1_SecondAlignPos_C                
    1     0000de72  _AppT1_SpeedKi_C                       
    1     0000de74  _AppT1_SpeedKp_C                       
    1     0000de76  _AppT1_SpeedRefMan_C                   
    1     0000de78  _AppT1_SwAngleShift_C                  
    1     0000de7a  _AppT1_SwEnableStartup_C               
    1     0000de7c  _AppT1_SwIqRefMan_C                    
    1     0000de7e  _AppT1_SwManVdq_C                      
    1     0000de80  _AppT1_SwSpeedRefMan_C                 
    1     0000de82  _AppT1_TimeThreshold_C                 
    1     0000de84  _AppT1_TrajLimit_C                     
    1     0000de86  _AppT1_TrajReset_C                     
    1     0000de88  _AppT1_TrajSlopeDecelLower_C           
    1     0000de8a  _AppT1_TrajSlopeUpper_C                
    1     0000deac  _AppT1_arcEstimatedAngleEl_MP          
    1     0000deae  _AppT1_bBlockageReleased_MP            
    1     0000deb0  _AppT1_bResetControl_MP                
    1     0000de8c  _AppT1_dCurrentKi_C                    
    1     0000de8e  _AppT1_dCurrentKp_C                    
    1     0000deb2  _AppT1_facGainDcLink_CUR               
    1     0000e518  _AppT1_facGainDcLink_CUR_Table         
    1     0000e520  _AppT1_facGainDcLink_CUR_xAxis         
    1     0000de90  _AppT1_iDDesMan_C                      
    1     0000deb4  _AppT1_iDirectAxis_MP                  
    1     0000deb6  _AppT1_iDirectError_MP                 
    1     0000deb8  _AppT1_iPhaseU_MP                      
    1     0000deba  _AppT1_iPhaseV_MP                      
    1     0000debc  _AppT1_iPhaseW_MP                      
    1     0000debe  _AppT1_iQuadratureAxis_MP              
    1     0000dec0  _AppT1_iQuadratureError_MP             
    1     0000de92  _AppT1_maxVsMaxPu_C                    
    1     0000dec2  _AppT1_nEstimatedSpeedMe_MP            
    1     0000dec4  _AppT1_nSpeedDesiredRamped_MP          
    1     0000dec6  _AppT1_nSpeedDesired_MP                
    1     0000dec8  _AppT1_nSpeedError_MP                  
    1     0000de94  _AppT1_qCurrentKi_C                    
    1     0000de96  _AppT1_qCurrentKp_C                    
    1     0000deca  _AppT1_trqEstimatedTorque_MP           
    1     0000decc  _AppT1_uDDesired_MP                    
    1     0000dece  _AppT1_uDirectAxis_MP                  
    1     0000ded0  _AppT1_uPhaseU_MP                      
    1     0000ded2  _AppT1_uPhaseV_MP                      
    1     0000ded4  _AppT1_uPhaseW_MP                      
    1     0000ded6  _AppT1_uQDesired_MP                    
    1     0000ded8  _AppT1_uQuadratureAxis_MP              
    0     00083a62  _AppT2                                 
    0     00083030  _AppT3                                 
    1     0000e0a2  _AppT3_CanTimeoutPerm_MP               
    1     0000e0a4  _AppT3_CoastOutTime_MP                 
    1     0000e090  _AppT3_Eta_C                           
    1     0000e0a6  _AppT3_ExtOpCounter_MP                 
    1     0000e0a8  _AppT3_MechDampingCurve_CUR            
    1     0000e47c  _AppT3_MechDampingCurve_CUR_Table      
    1     0000e4fc  _AppT3_MechDampingCurve_CUR_xAxis      
    1     0000e092  _AppT3_MechTimeConstant_C              
    1     0000e0aa  _AppT3_OffsetsIu_MP                    
    1     0000e0ac  _AppT3_OffsetsIv_MP                    
    1     0000e0ae  _AppT3_OffsetsIw_MP                    
    1     0000e0b0  _AppT3_OffsetsVu_MP                    
    1     0000e0b2  _AppT3_OffsetsVv_MP                    
    1     0000e0b4  _AppT3_OffsetsVw_MP                    
    1     0000e094  _AppT3_R20_C                           
    1     0000e096  _AppT3_ResetCanTimeout_C               
    1     0000e0b6  _AppT3_RpmMechFreezed_MP               
    1     0000e098  _AppT3_RsFilterTime_C                  
    1     0000e0b8  _AppT3_RsFiltredContinuous_MP          
    1     0000e0ba  _AppT3_Rs_MP                           
    1     0000e0bc  _AppT3_Task10ms_MP                     
    1     0000e0be  _AppT3_Task1ms_MP                      
    1     0000e0c0  _AppT3_Task50us_MP                     
    1     0000e09a  _AppT3_TempCoefficientAlpha_C          
    1     0000e09c  _AppT3_TemperatureFilterTime_C         
    1     0000e0c2  _AppT3_TorqueFreezed_MP                
    1     0000e0c4  _AppT3_bEnablePwmInternal_MP           
    1     0000e0c6  _AppT3_iDcLink_MP                      
    1     0000e0c8  _AppT3_iDcRaw_MP                       
    1     0000e0ca  _AppT3_iOffset_MP                      
    1     0000e0cc  _AppT3_nEstSpeedAbsMe_MP               
    1     0000e0ce  _AppT3_pwrEffective_MP                 
    1     0000e0d0  _AppT3_stMotor_MP                      
    1     0000e0d2  _AppT3_stNetwork_MP                    
    1     0000e09e  _AppT3_swtOffsetHrbCwa_C               
    1     0000e080  _AppT3_tIgbtFiltred_MP                 
    1     0000e081  _AppT3_tMotorCoil_MP                   
    1     0000e082  _AppT3_tPcbFiltred_MP                  
    1     0000e0a0  _AppT3_uDcFilterTime_C                 
    1     0000e0d4  _AppT3_uDcLinkFiltred_MP               
    1     0000e0d6  _AppT3_uDcLink_MP                      
    0     00087c0b  _AppT4                                 
    0     00087c54  _AppT5                                 
    0     0008960c  _ApplXcpGetPointer                     
    0     0008759e  _ApplXcpGetSeed                        
    0     000857fd  _ApplXcpInterruptDisable               
    0     00086259  _ApplXcpInterruptEnable                
    0     00088e65  _ApplXcpSend                           
    0     0008856f  _ApplXcpUnlock                         
    0     000871fa  _Appl_cpuTimers_init                   
    0     00088f29  _CAN_initModule                        
    0     00087d2b  _CAN_readMessage                       
    0     00088307  _CAN_sendMessage                       
    0     0008826b  _CAN_setBitTiming                      
    0     00086ac1  _CAN_setupMessageObject                
    0     00089591  _CLARKE_init                           
    0     000894a9  _CPUTimer_setEmulationMode             
    0     0008b8e4  _C_DRV_MAILBOX_CFG                     
    0     00086360  _Calib                                 
    0     00089425  _CanNmPB_AckEnableSendFrames           
    0     00088de3  _CanNmPB_BusSleepMode                  
    0     00089202  _CanNmPB_CheckPDURxConfirmation        
    0     00088791  _CanNmPB_ExecTimer                     
    0     000890ab  _CanNmPB_GetNetworkStateFromApplication
    0     000868c8  _CanNmPB_GetPDU                        
    0     00089595  _CanNmPB_GetPDURxConfirmation          
    0     00088dfd  _CanNmPB_Init                          
    0     00089147  _CanNmPB_NormalOperationState          
    0     000893c2  _CanNmPB_PowerOff                      
    0     00088a10  _CanNmPB_PrepareBusSleepMode           
    0     0008905f  _CanNmPB_ReadySleepState               
    0     0008935e  _CanNmPB_RepeatMessageState            
    0     0008950f  _CanNmPB_ResetTransitions              
    1     0000e386  _CanNmPB_RxIndicated                   
    0     00089595  _CanNmPB_RxIndication                  
    1     0000e387  _CanNmPB_RxPduIndRem                   
    0     000865e9  _CanNmPB_SetPDU                        
    0     000892bf  _CanNmPB_StartTimer                    
    0     00087d71  _CanNmPB_Statemachine                  
    0     000893cb  _CanNmPB_TxConfirmation                
    1     0000e385  _CanNmPB_TxConfirmed                   
    0     00089271  _CanNmPB_main                          
    1     0000c86b  _CanNmRxFlag                           
    1     0000dbaf  _CanTimeoutFlag                        
    abs   00000000  _Cla1ConstLoadSize                     
    0     0000a000  _Cla1ConstLoadStart                    
    0     0000a000  _Cla1ConstRunStart                     
    abs   00000000  _Cla1Prog2LoadSize                     
    0     0000a000  _Cla1Prog2LoadStart                    
    0     0000a000  _Cla1Prog2RunStart                     
    abs   00000000  _Cla1ProgLoadSize                      
    0     0000a000  _Cla1ProgLoadStart                     
    0     0000a000  _Cla1ProgRunStart                      
    1     0000e180  _ConsumedPowerpt1Filter                
    1     0000e500  _CpuCnt_                               
    0     0008942d  _Crc_CalculateCrc16                    
    0     00086971  _Crc_Initialize                        
    0     0000ab9b  _CurrentControl                        
    1     0000e550  _CurrentsUVW                           
    0     00089210  _DATALOG_init                          
    1     0000e184  _DC_Currentpt1Filter                   
    1     0000e308  _DIAG_BlockedWaitTime_C                
    1     0000e314  _DIAG_CanTimeout_MP                    
    1     0000e316  _DIAG_Drv8305Misc_MP                   
    1     0000e318  _DIAG_Drv8305Overtemperature_MP        
    1     0000e31a  _DIAG_Drv8305Undervoltage_MP           
    1     0000e31c  _DIAG_EepromWarning_MP                 
    1     0000cba4  _DIAG_EnableHealing_C                  
    1     0000e31e  _DIAG_HvOvervoltage_MP                 
    1     0000e320  _DIAG_HvUndervoltage_MP                
    1     0000e300  _DIAG_HysteresisTemperature_C          
    1     0000e322  _DIAG_IgbtEmergency_MP                 
    1     0000e301  _DIAG_IgbtOvertempEmergValue_C         
    1     0000e302  _DIAG_IgbtOvertempWarnValue_C          
    1     0000e324  _DIAG_IgbtWarning_MP                   
    1     0000cee4  _DIAG_MatureTime_C                     
    1     0000e326  _DIAG_MotBlocked_MP                    
    1     0000e328  _DIAG_OvercurrentPeak_MP               
    1     0000e30a  _DIAG_OvervoltEmergValue_C             
    1     0000e30c  _DIAG_OvervoltResetValue_C             
    1     0000e32a  _DIAG_PcbEmergency_MP                  
    1     0000e303  _DIAG_PcbOvertempEmergValue_C          
    1     0000e304  _DIAG_PcbOvertempWarnValue_C           
    1     0000e32c  _DIAG_PcbWarning_MP                    
    1     0000e32e  _DIAG_PhaseLost_MP                     
    1     0000e30e  _DIAG_SwBlockDetection_C               
    1     0000e310  _DIAG_UndervoltEmergValue_C            
    1     0000e312  _DIAG_UndervoltResetValue_C            
    1     0000e330  _DIAG_UnexpectedReset_MP               
    1     0000e332  _DIAG_iRmsU_MP                         
    1     0000e334  _DIAG_iRmsV_MP                         
    1     0000e336  _DIAG_iRmsW_MP                         
    0     0008921e  _DMA_configAddresses                   
    0     00089368  _DMA_configBurst                       
    0     00086bfd  _DMA_configMode                        
    0     0008922c  _DMA_configTransfer                    
    0     000895fd  _DRV8305_init                          
    0     0008960e  _DRV8305_setGpioNumber                 
    0     00089610  _DRV8305_setSpiHandle                  
    0     00088d59  _DeleteHistogramData                   
    1     0000e556  _Delta                                 
    1     0000e55c  _Delta_Mean                            
    1     0000e5f6  _DiscardCounter                        
    0     000893d4  _EPWM_setEmulationMode                 
    abs   003ed3e8  _EST_computeTorque_Nm                  
    abs   003ed1c4  _EST_configureTraj                     
    abs   003ed1be  _EST_disable                           
    abs   003ed1b5  _EST_disableTraj                       
    abs   003ed18c  _EST_enable                            
    abs   003ed127  _EST_getFe_Hz                          
    abs   003ed0ad  _EST_getFlux_Wb                        
    abs   003ed059  _EST_getFm_lp_Hz                       
    abs   003ecfae  _EST_getIdRated_A                      
    abs   003ecf6b  _EST_getIntValue_Id_A                  
    abs   003ecf12  _EST_getLs_d_H                         
    abs   003ecede  _EST_getLs_q_H                         
    abs   003ed44c  _EST_getRoverL_rps                     
    abs   003ecdf6  _EST_getRr_Ohm                         
    abs   003ecd4e  _EST_getRsOnLine_Ohm                   
    abs   003ecd1c  _EST_getRs_Ohm                         
    abs   003eb000  _EST_getState                          
    abs   003ecc59  _EST_getTrajState                      
    abs   003ecbde  _EST_initEst                           
    abs   003ecaed  _EST_isError                           
    abs   003ecad7  _EST_isMotorIdentified                 
    abs   003ecab6  _EST_isTrajError                       
    abs   003ec9ee  _EST_run                               
    abs   003eb8e1  _EST_setFlag_bypassLockRotor           
    abs   003eb8f6  _EST_setFlag_enableForceAngle          
    abs   003ebfc8  _EST_setFlag_enablePowerWarp           
    abs   003eb8fd  _EST_setFlag_enableRsRecalc            
    abs   003ebf39  _EST_setIdq_ref_A                      
    abs   003eb915  _EST_setParams                         
    abs   003eb581  _EST_updateId_ref_A                    
    abs   003eb2b3  _EST_updateState                       
    abs   003eb00a  _EST_updateTrajState                   
    0     00087452  _Eep_ReadData16bit                     
    0     000873df  _Eep_WriteData16bit                    
    1     0000e5f4  _EnablePwm                             
    1     0000dd03  _ErrFlagPhaseProof                     
    0     00089599  _ErrorNvm                              
    1     0000e136  _EstIn                                 
    0     00089435  _EstStoreIdRef                         
    1     0000e5a9  _ExpiryTime                            
    0     0008959d  _FILTER_FO_init                        
    0     00089600  _FILTER_FO_setDenCoeffs                
    0     000894af  _FILTER_FO_setInitialConditions        
    0     00089514  _FILTER_FO_setNumCoeffs                
    0     0000a9e0  _FOC                                   
    0     0008ba69  _FREE_RUNNING_TIMER_1US                
    1     0000d9b6  _Fapi_GlobalInit                       
    0     00088517  _Fapi_calculateFletcherChecksum        
    0     000892fb  _Fapi_checkFsmForReady                 
    0     000891b7  _Fapi_doVerify                         
    0     00089072  _Fapi_flushPipeline                    
    0     0008948d  _Fapi_getFsmStatus                     
    0     00086a1a  _Fapi_initializeAPI                    
    0     00088895  _Fapi_isAddressEcc                     
    0     00087742  _Fapi_issueAsyncCommandWithAddress     
    0     000859ed  _Fapi_issueProgrammingCommand          
    0     00089612  _Fapi_serviceWatchdogTimer             
    0     00088432  _Fapi_setActiveFlashBank               
    0     00088769  _Fapi_setupBankSectorEnable            
    0     000878c8  _Fapi_setupEepromSectorEnable          
    1     0000d9d0  _Fast_InputDataBus                     
    1     0000d9c4  _Fast_OutputData                       
    0     0000b1c0  _FilterAlphaCurrentDoubleCarrier       
    0     0000b201  _FilterAlphaCurrentSingleCarrier       
    0     0000b242  _FilterBetaCurrentDoubleCarrier        
    0     0000b283  _FilterBetaCurrentSingleCarrier        
    1     0000dd00  _FinishedOffsetLearning                
    1     0000dd04  _FinishedSelftest                      
    1     0000e382  _Flag_EnableCanSendFrames              
    1     0000e383  _Flag_EnablePduTransmit                
    1     0000e5ad  _Flag_TimerExpired                     
    1     0000d7c8  _Flag_enableOffsetcalibration          
    0     0000b17b  _Flash_initModule                      
    0     00088a52  _GPIO_setAnalogMode                    
    0     00088b18  _GPIO_setDirectionMode                 
    0     00088b38  _GPIO_setInterruptPin                  
    0     00088966  _GPIO_setMasterCore                    
    0     00088057  _GPIO_setPadConfig                     
    0     000883d2  _GPIO_setPinConfig                     
    0     00088988  _GPIO_setQualificationMode             
    0     00088dad  _GPIO_setQualificationPeriod           
    0     000890f2  _GRAPH_DataPointerInit                 
    0     0000b10b  _GenerateHfCarrier                     
    0     00088cab  _GetByte                               
    0     00087dfc  _GetDelta                              
    0     00089103  _GetHistStartAdress1D                  
    0     00089494  _GetHistStartAdress2D                  
    0     0008833a  _GetMaxTaskLoad_InPercent              
    0     0008836d  _GetMeanTaskLoad_InPercent             
    0     000895a1  _GetRxIndication                       
    0     000895a5  _GetStatusCalib                        
    0     000895a9  _Get_Nvm_BootIdOffset                  
    0     000895ad  _Get_Nvm_CAN_IdOffset                  
    0     00089519  _Get_Nvm_CurrentOffsetU                
    0     0008951e  _Get_Nvm_CurrentOffsetV                
    0     00089523  _Get_Nvm_CurrentOffsetW                
    0     000895b1  _Get_Nvm_DeliveryDate                  
    0     000895b5  _Get_Nvm_HardwareVersion               
    0     000895b9  _Get_Nvm_SerialNumber                  
    0     00089528  _Get_Nvm_VoltageOffsetU                
    0     0008952d  _Get_Nvm_VoltageOffsetV                
    0     00089532  _Get_Nvm_VoltageOffsetW                
    0     00089372  _HAL_clearTimerFlag                    
    0     00088f6e  _HAL_enableAdcInts                     
    0     00089603  _HAL_enableDebugInt                    
    0     000895bd  _HAL_enableGlobalInts                  
    0     0008937c  _HAL_getTimerStatus                    
    0     00086512  _HAL_init                              
    0     00087275  _HAL_setParams                         
    0     0008643a  _HAL_setupAdcs                         
    0     00088113  _HAL_setupDlogDMA                      
    0     00087f94  _HAL_setupFaults                       
    0     00089114  _HAL_setupGate                         
    0     0008440a  _HAL_setupGpios                        
    0     00088461  _HAL_setupPeripheralClks               
    0     0008681e  _HAL_setupPwmDacs                      
    0     00085bcd  _HAL_setupPwms                         
    0     00086dca  _HAL_setupSciA                         
    0     00088c51  _HAL_setupSpiA                         
    0     00087e86  _HAL_setupSpiB                         
    0     00087e41  _HAL_setupTimers                       
    1     0000e5b1  _HRBState                              
    1     0000e152  _HVdisChargeRawSignal                  
    0     0000ae89  _Hfi                                   
    1     0000de98  _Hfi_HarmonicCorrectionGain_C          
    1     0000de9a  _Hfi_PllKi_C                           
    1     0000de9c  _Hfi_PllKp_C                           
    1     0000deda  _Hfi_arcEstimatedPositionEl_MP         
    1     0000de9e  _Hfi_uCarrierGain_C                    
    1     0000e3c0  _HistogramFields1D                     
    1     0000e200  _HistogramFields2D                     
    0     00088804  _HwIoConnectorLv_InitAIOs              
    1     0000e14d  _IGBT_TempRawSignal                    
    1     0000e14e  _IGBT_TempRawSignalShifted             
    0     000895c1  _IPARK_init                            
    1     0000d83a  _Iab_in_A                              
    1     0000d7e0  _IdRated_A                             
    1     0000d858  _IdqSet_A                              
    1     0000d840  _Idq_in_A                              
    1     0000d836  _Idq_offset_A                          
    1     0000d832  _Idq_ref_A                             
    1     0000d9ca  _InRte                                 
    0     000894b5  _IncOHCounter                          
    0     000876dc  _InitCan                               
    0     00088ee1  _InitHistograms                        
    0     00086972  _InitNvM                               
    0     000888b8  _InitOffsets                           
    0     00088829  _InitWatchdog                          
    0     00087c9c  _Interrupt_disable                     
    0     0008829f  _Interrupt_enable                      
    0     00087fd5  _Interrupt_initModule                  
    0     00088f85  _Interrupt_initVectorTable             
    1     0000d826  _KIspeed                               
    1     0000d82a  _KIspeedDelta                          
    1     0000d81a  _KIspeedLowered                        
    1     0000d81e  _KIspeedOperate                        
    1     0000d824  _KPspeed                               
    1     0000d828  _KPspeedDelta                          
    1     0000d818  _KPspeedLowered                        
    1     0000d81c  _KPspeedOperate                        
    1     0000e153  _LVsupplyRawSignal                     
    1     0000e5a4  _MLTP_TX_MSG                           
    0     00085ff3  _MOTOR_rms_calculation                 
    0     0000b085  _MOTOR_rms_sampling                    
    0     00086b5f  _MOTOR_variables_init                  
    0     000866b2  _MOTOR_variables_update                
    1     0000d830  _MaxAccDelta_krpmps                    
    1     0000d82e  _MaxAcc_krpmps                         
    1     0000e17c  _MotorMechPowerpt1Filter               
    1     0000d7e2  _MotorVariant                          
    1     0000dbae  _MultipleCanFrames                     
    1     0000e381  _NetworkState                          
    0     000886ee  _NvMInitTable1D                        
    0     00088096  _NvMInitTable2D                        
    0     00086ffa  _NvMUpdate                             
    0     000893dd  _Nvm_ImmediatelyWriteRequest           
    0     00089537  _Nvm_ImmediatelyWriteSet               
    0     0008baca  _OVERRUN_CALMDOWN_US                   
    1     0000d7c2  _OffsetLearnRequested                  
    1     0000dbb6  _OffsetValue                           
    1     0000da18  _OutAppT1                              
    1     0000d9da  _OutAppT2                              
    1     0000da40  _OutAppT3                              
    1     0000da00  _OutAppT4                              
    1     0000d9c0  _OutAppT5                              
    1     0000da80  _OutRte                                
    0     000895c9  _PARK_init                             
    0     000895cd  _PI_init                               
    1     0000e5fb  _PageCounter                           
    0     0000afa6  _PostProcessing                        
    1     0000dedc  _Post_uDDesired_MP                     
    1     0000dede  _Post_uQDesired_MP                     
    1     0000d7c1  _PwmInternalEnable                     
    0     0008ba55  _RX_MSG                                
    0     0008b650  _RX_SIG_PAR                            
    0     0008a959  _RamfuncsLoadEnd                       
    abs   00001331  _RamfuncsLoadSize                      
    0     00089628  _RamfuncsLoadStart                     
    0     0000b331  _RamfuncsRunEnd                        
    abs   00001331  _RamfuncsRunSize                       
    0     0000a000  _RamfuncsRunStart                      
    1     0000d814  _RampDownAcc_krpmps                    
    1     0000d812  _RampUpAcc_krpmps                      
    1     0000e607  _ReceivedNmFrame                       
    1     0000d816  _ReducedStartAcc_krpmps                
    1     0000e156  _Ref3V3P5RawSignal                     
    0     000888db  _ReloadOffsetValues                    
    0     0008928b  _ReportPowerConsumption                
    0     00089386  _ResetIntoBootloader                   
    0     000895d1  _ResetStatus                           
    1     0000e60e  _Reset_Trap_Condition                  
    1     0000e5f5  _RxIndicated                           
    1     0000e3a4  _RxPDU                                 
    0     00088e17  _SCI_disableInterrupt                  
    0     00088e31  _SCI_enableInterrupt                   
    0     00088a73  _SCI_setConfig                         
    0     00088c6f  _SPI_clearInterruptStatus              
    0     00088b98  _SPI_setConfig                         
    0     000895d5  _SVGENCURRENT_init                     
    0     000895d9  _SVGEN_init                            
    1     0000dd40  _Selftest                              
    1     0000d7c3  _SelftestRequested                     
    0     00088016  _Set_Nvm_BootIds                       
    0     00089390  _Set_Nvm_CAN_IdOffset                  
    0     0008949b  _Set_Nvm_CurrentOffsetU                
    0     0008943d  _Set_Nvm_CurrentOffsetV                
    0     00089306  _Set_Nvm_CurrentOffsetW                
    0     0008939a  _Set_Nvm_DeliveryDate                  
    0     000893a4  _Set_Nvm_HardwareVersion               
    0     000893ae  _Set_Nvm_SerialNumber                  
    0     00089311  _Set_Nvm_VoltageOffsetU                
    0     0008931c  _Set_Nvm_VoltageOffsetV                
    0     00089327  _Set_Nvm_VoltageOffsetW                
    1     0000d7c0  _SoftwareVariant                       
    0     0000ad14  _SpeedControl                          
    1     0000e380  _StateNm                               
    1     0000dbb4  _SvnRev                                
    0     00083010  _Svnrev                                
    0     00088490  _SwitchPowerstage                      
    0     0000b32d  _SysCtl_delay                          
    0     00086c9a  _SysCtl_isPLLValid                     
    0     00088646  _SysCtl_selectOscSource                
    0     00088543  _SysCtl_selectXTAL                     
    0     00088c8d  _SysCtl_selectXTALSingleEnded          
    0     00086e5e  _SysCtl_setClock                       
    1     0000df69  _SysPa_EnableFlystart_C                
    1     0000df6c  _SysPa_EnableHeaterFeature_C           
    1     0000df6a  _SysPa_EnableLimpMode_C                
    1     0000df6b  _SysPa_InvertRotDir_C                  
    1     0000df68  _SysPa_SpeedMinTarget_C                
    1     0000df6e  _SysPa_Zp_C                            
    1     0000df70  _SysPa_nMax_C                          
    1     0000df72  _SysPa_nNearZeroSpeed_C                
    1     0000df74  _SysPa_tMaxMotorCoil_C                 
    1     0000df76  _SysPa_trqMax_C                        
    0     000895dd  _TRAJ_init                             
    0     0008ba12  _TX_MSG                                
    0     0008b290  _TX_SIG_PAR                            
    0     00087f0e  _Tab1DS0I2T3126_e                      
    0     00087924  _Tab1DS3I2T3126_e                      
    0     00087bc0  _Tab1DS3I4T3126_c                      
    1     0000e5f7  _Task_Load_percent                     
    1     0000e568  _Task_Load_percent_mean                
    1     0000e56e  _TimeOfTask                            
    1     0000e5c4  _TimerEnabled                          
    1     0000e388  _TxPDU                                 
    0     00083f9e  _USER_setParams                        
    abs   003ee13c  _USER_setParams_priv                   
    0     0008707b  _UpdateHistogramData1D                 
    0     00086d34  _UpdateHistogramData2D                 
    1     0000d844  _Vab_out_V                             
    1     0000d84c  _Vdq_offset_V                          
    1     0000d848  _Vdq_out_V                             
    1     0000d7d2  _VoltageDcBus                          
    1     0000e574  _VoltagesUVW                           
    0     000892d7  _WriteActualTime                       
    0     000888fe  _WriteNvM                              
    0     00088670  _XCP_TX                                
    1     0000e140  _XCP_test_01                           
    1     0000e141  _XCP_test_02                           
    1     0000e142  _XCP_test_03                           
    1     0000e143  _XCP_test_04                           
    1     0000e144  _XCP_test_05                           
    1     0000e145  _XCP_test_06                           
    1     0000e146  _XCP_test_07                           
    1     0000e147  _XCP_test_08                           
    0     00088921  _XCPonCAN_RX                           
    0     00089298  _XCPonUART_RX                          
    0     00089618  _XcpBackground                         
    0     00085579  _XcpCommand                            
    0     00089332  _XcpDisconnect                         
    0     00086771  _XcpEvent                              
    0     0008923a  _XcpInit                               
    0     00088bd6  _XcpMemCpy_If                          
    0     000894c1  _XcpMemSet                             
    0     00088fe1  _XcpSendCallBack                       
    0     00088a94  _XcpSendCrm                            
    0     00089445  _XcpSendDto_If                         
    0     000895e5  _XcpSetActiveTl                        
    1     0000c86a  __1msCounter                           
    0     00083000  __APP_ENTRY                            
    0     0008933d  __Fapi_calculateOtpChecksum            
    0     00087a82  __Fapi_checkRegionForValue             
    0     0008869a  __Fapi_divideUnsignedLong              
    0     00088402  __Fapi_issueFsmCommand                 
    0     000870fc  __Fapi_loopRegionForValue              
    0     000891c6  __Fapi_scaleCycleValues                
    0     000885c5  __Fapi_setupSectorsForWrite            
    1     000003f6  __STACK_END                            
    abs   00000300  __STACK_SIZE                           
    1     0000e5a0  ___TI_cleanup_ptr                      
    1     0000e5a2  ___TI_dtors_ptr                        
    1     0000e59e  ___TI_enable_exit_profile_output       
    abs   ffffffff  ___TI_pprof_out_hndl                   
    abs   ffffffff  ___TI_prof_data_size                   
    abs   ffffffff  ___TI_prof_data_start                  
    abs   ffffffff  ___binit__                             
    abs   ffffffff  ___c_args__                            
    0     0008a95c  ___cinit__                             
    0     00089627  ___etext__                             
    abs   ffffffff  ___pinit__                             
    0     00083030  ___text__                              
    0     00088eb0  __args_main                            
    1     0000e602  __lock                                 
    0     00089424  __nop                                  
    0     00089420  __register_lock                        
    0     0008941c  __register_unlock                      
    1     000000f6  __stack                                
    0     00089626  __system_post_cinit                    
    0     0008961e  __system_pre_init                      
    1     0000e604  __unlock                               
    0     00088740  _abort                                 
    1     0000e188  _actSpeedKrpmpt1Filter                 
    1     0000d7e8  _angleDelta_rad                        
    1     0000d7ea  _angleEst_rad                          
    1     0000d7f0  _angleFoc_rad                          
    1     0000d7ee  _angleGen_rad                          
    1     0000d7ec  _angleSmo_rad                          
    1     0000d7d4  _angle_rad                             
    0     000893e6  _c_drv_clearRxIndication               
    0     00087b26  _c_drv_configureMailboxes              
    0     00089455  _c_drv_getBuffer                       
    0     000892a5  _c_drv_getReceivedOnce                 
    0     000892b2  _c_drv_getRxIndication                 
    0     000883a0  _c_drv_receiveFrame                    
    0     00088ce5  _c_drv_sendFrame                       
    0     00087a2c  _c_int00                               
    0     000894c7  _c_sig_HV_OvercurrentCont              
    0     00089541  _c_sig_HV_Overvoltage                  
    0     00089546  _c_sig_HV_Undervoltage                 
    0     0008954b  _c_sig_IGBT_OvertempEmergency          
    0     00089550  _c_sig_IGBT_OvertempWarning            
    0     000894cd  _c_sig_LV_Undervoltage                 
    0     000874c1  _c_sig_MCU_RomCorrupted                
    0     00089555  _c_sig_MCU_UnexpReset                  
    0     000894d3  _c_sig_Mot_DryRunEmergency             
    0     000894d9  _c_sig_Mot_DryRunWarning               
    0     00089620  _c_sig_Mot_FanBlockedPerm              
    0     0008955a  _c_sig_Mot_FanBlockedTemp              
    0     00089621  _c_sig_Mot_SpeedMeasUnpl               
    0     0008955f  _c_sig_PCB_OvertempEmergency           
    0     00089564  _c_sig_PCB_OvertempWarning             
    0     00089569  _c_sig_PostFailed                      
    0     000874c2  _c_sig_copyRxMessage                   
    0     00086ee9  _c_sig_copyTxMessage                   
    0     000893ef  _c_sig_getHeaterEnableFlag             
    0     000893f8  _c_sig_getRxSignal                     
    0     00089157  _c_sig_getSetpointLimpMode_rpm         
    0     00089167  _c_sig_getSpeedSetpoint_rpm            
    0     00087ce4  _c_sig_init                            
    0     000891d5  _c_sig_isRxSignalUpToDate              
    0     00089256  _c_sig_saturateTxSignal                
    0     00089177  _c_sig_setActualCurrent_100mA          
    0     00088e4b  _c_sig_setActualSpeed                  
    0     0008904b  _c_sig_setActualVoltage                
    0     000894df  _c_sig_setD_Current_100mA              
    0     00089622  _c_sig_setDeviceEnabled                
    0     000894e5  _c_sig_setExtOperated                  
    0     0008956e  _c_sig_setIgbtTemperature              
    0     00089573  _c_sig_setPcbTemperature               
    0     000894eb  _c_sig_setQ_Current_100mA              
    0     000894f1  _c_sig_setReserve_1                    
    0     00089578  _c_sig_setSN_Internal                  
    0     0008957d  _c_sig_setSN_Major                     
    0     00089582  _c_sig_setSN_Minor                     
    0     00089587  _c_sig_setSemiconductorSw              
    0     00089085  _c_sig_setStatusDevice                 
    0     00088b58  _c_sig_setTxSignal                     
    0     00089401  _c_sig_setTxSignalNA                   
    0     00089606  _c_tsk_init                            
    0     00088fb3  _c_tsk_receiveFrames                   
    0     00089348  _c_tsk_sendFrames10ms                  
    0     00089623  _c_tsk_sendFrames1ms                   
    0     00089624  _c_tsk_sendFrames2s                    
    0     00089022  _c_tsk_sendOnce                        
    1     0000e593  _canEcuNumber                          
    1     0000d7f2  _clarkeHandle_I                        
    1     0000d7f4  _clarkeHandle_V                        
    1     0000d85c  _clarke_I                              
    1     0000d862  _clarke_V                              
    1     0000dd01  _cnt                                   
    1     0000c868  _cnt_                                  
    1     0000c869  _cnt_2s                                
    0     00088236  _configCPUTimer                        
    0     00088871  _copy_in                               
    0     00089136  _copysign                              
    0     00089136  _copysignf                             
    0     00088fca  _cpuTimer0ISR                          
    1     0000e5ec  _cpuTimer0IntCount                     
    0     00089187  _cpuTimer1ISR                          
    1     0000e5ed  _cpuTimer1IntCount                     
    0     00089197  _cpuTimer2ISR                          
    1     0000e5ee  _cpuTimer2IntCount                     
    0     00088d75  _ctd_isElapsed                         
    0     000895e9  _ctd_isRunning                         
    0     000891a7  _ctd_startCountdown                    
    0     000894f7  _ctd_startCountdown_ms                 
    1     0000e158  _current_Test                          
    1     0000e4f0  _datalog                               
    1     0000c880  _datalogBuff1                          
    1     0000cbc0  _datalogBuff2                          
    1     0000cf00  _datalogBuff3                          
    1     0000d240  _datalogBuff4                          
    1     0000e4ee  _datalogHandle                         
    1     0000d7de  _dummy                                 
    0     00087809  _eep_readData                          
    0     00087675  _eep_writeData                         
    1     0000e57a  _errOffs                               
    1     0000e5ff  _errno                                 
    1     0000d7f6  _estHandle                             
    1     0000e162  _etaElectricalFactor                   
    0     00088742  _exit                                  
    1     0000d7d6  _fe_rps                                
    1     0000e440  _filter                                
    1     0000e50c  _filterHandle                          
    0     0008797e  _floor                                 
    0     0008797e  _floorf                                
    1     0000d7dc  _fmDat                                 
    1     0000d7da  _fm_lp_rps                             
    1     0000d7d8  _fm_rps                                
    1     0000d89e  _gAdcData                              
    1     0000d86e  _gAdcDataPrev_A                        
    1     0000d7cc  _gCmpOffset                            
    1     0000e168  _gConsumedPower_W                      
    1     0000e170  _gConsumedPower_W_Filtered             
    1     0000d7c7  _gCounter_TrajId                       
    1     0000d7c6  _gCounter_TrajSpd                      
    1     0000d7c5  _gCounter_speed                        
    1     0000e150  _gDC_Current_100mA                     
    1     0000e16a  _gDC_Current_A                         
    1     0000e172  _gDC_Current_A_Filtered                
    1     0000d8c0  _gEstInputData                         
    1     0000d910  _gEstOutputData                        
    1     0000c040  _gGraphVars                            
    1     0000d7c4  _gLEDcnt                               
    1     0000e16c  _gMotorMechPower_W                     
    1     0000e16e  _gMotorMechPower_W_Filtered            
    1     00000540  _gMotorVars                            
    1     0000d7e4  _gOffsetCalcCount                      
    1     0000d7e6  _gOffsetCalcWaitTime                   
    1     0000d7ce  _gOvercurrentCounter                   
    1     0000d7cd  _gOvercurrentEvent                     
    1     0000d7cf  _gOvercurrentPulseCounter              
    1     00000500  _gPwmDacData                           
    1     0000d8ae  _gPwmData                              
    1     0000d874  _gPwmDataPrev                          
    1     0000c000  _gStepVars                             
    1     00000640  _gUserParams                           
    1     0000e580  _globalSeed                            
    1     0000d940  _hal                                   
    1     0000d7f8  _halHandle                             
    1     0000e586  _holdVal                               
    1     0000e160  _iDC                                   
    1     0000d7ca  _ignoreShuntNextCycle                  
    0     00087f51  _initCPUTimers                         
    1     0000d850  _ipark                                 
    1     0000d7fa  _iparkHandle                           
    0     00088717  _ipl_functionValue                     
    0     000884bd  _ipl_interpolate                       
    0     000895ed  _isOverCurrentPeakEventTriggered       
    1     0000dbb0  _isTesterPresent                       
    1     0000e606  _isTxPathLocked                        
    0     0008bac6  _kXcpMainVersion                       
    0     0008bac8  _kXcpReleaseVersion                    
    0     0008bac7  _kXcpSubVersion                        
    0     000879d5  _ldexp                                 
    0     000879d5  _ldexpf                                
    1     0000e611  _length                                
    0     0008612e  _log                                   
    0     0008612e  _logf                                  
    0     00088b78  _main                                  
    0     0000a670  _mainISR                               
    0     000895f1  _main_setInhibitWdogRetrigger          
    0     000881c6  _mavg_addValue                         
    0     0008946d  _mavg_create                           
    1     0000e174  _meaActSpeedKrpmFiltrd                 
    1     0000e154  _meaHVdisChargeVoltage_V               
    1     0000e15b  _meaIqActualValue_10mA                 
    1     0000e15c  _meaIqMeanValue_10mA                   
    1     0000e155  _meaLVSupplyVoltage_mV                 
    1     0000e157  _meaRef3V3P5Voltage_mV                 
    1     0000e15d  _meaSpeedActValue_rpm                  
    1     0000e15e  _meaSpeedMeanValue_rpm                 
    1     0000e151  _meaSupplyCurrent_100mA                
    0     000895f5  _mea_getSupplyCurrent_100mA            
    0     0008947d  _mea_getTemperatureIGBT_C              
    0     00089485  _mea_getTemperaturePCB_C               
    0     0008760a  _mea_init                              
    0     00089125  _mea_sampleAndFilterSupplyVoltage      
    0     0008958c  _mea_sampleFastSignals                 
    0     0008940a  _mea_sampleSlowSignals                 
    0     00088dc8  _mea_sendSignalsToCAN                  
    1     0000d7c9  _measurableShuntThisCycle              
    0     00088d3c  _memcpy                                
    1     0000e376  _message                               
    1     0000d7cb  _midVolShunt                           
    0     00089609  _mot_init                              
    0     000891e4  _mot_isMotorPowered                    
    0     000894fd  _mot_task                              
    0     00087eca  _os_executeTasks                       
    0     00087ad4  _overCurrPeakISR                       
    1     0000d7d0  _overCurrPeakISRcounter                
    1     0000d854  _park                                  
    1     0000d7fc  _parkHandle                            
    1     0000d7fe  _piHandle_Id                           
    1     0000d800  _piHandle_Iq                           
    1     0000d802  _piHandle_fwc                          
    1     0000d804  _piHandle_spd                          
    1     0000d8d0  _pi_Id                                 
    1     0000d8e0  _pi_Iq                                 
    1     0000d8f0  _pi_fwc                                
    1     0000d900  _pi_spd                                
    0     00084be7  _pow                                   
    0     00084be7  _powf                                  
    0     00084f68  _proj_lab08_init                       
    0     00085d42  _proj_lab08_instaSpin_ReInit           
    0     0008480a  _proj_lab08_loop                       
    1     0000d7d1  _proj_loop_state                       
    1     0000e60c  _psavalue                              
    0     00088af7  _pt1_float_addValue                    
    0     00088d91  _pt1_float_init                        
    0     000892e3  _pt1_init                              
    1     0000e17a  _qCurrpt1Filter                        
    1     0000e60f  _ratioCmp1Period                       
    0     00089503  _reInitSpi                             
    0     0000b301  _runEstimator                          
    0     0008625a  _runOffsetsCalculation                 
    0     00085ea2  _runSelftest                           
    1     0000e58c  _sSeed                                 
    0     000879d5  _scalbn                                
    0     000879d5  _scalbnf                               
    0     000887de  _sqrt                                  
    0     000887de  _sqrtf                                 
    0     0008961a  _ssi_getPendingService                 
    0     00089625  _ssi_setPendingService                 
    1     0000e135  _statusRsCalib                         
    1     0000e14a  _stimTempIGBT                          
    1     0000e14b  _stimTempPCB                           
    1     0000d808  _svgen                                 
    1     0000d806  _svgenHandle                           
    1     0000d868  _svgencurrent                          
    1     0000d80a  _svgencurrentHandle                    
    1     0000e176  _tempIGBTpt1Filter                     
    1     0000e178  _tempPCBpt1Filter                      
    1     0000e149  _temperatureIGBT_0p1C                  
    1     0000e148  _temperatureIGBT_C                     
    1     0000e14f  _temperaturePCB_C                      
    1     0000e14c  _temperatureTest_C                     
    1     0000e164  _test1_float                           
    1     0000e5f0  _testSPIread1                          
    1     0000e5f1  _testSPIread2                          
    1     0000dbba  _testerPresentCountdown                
    1     0000e592  _testlength                            
    1     0000e5ef  _timebaseCounter                       
    1     0000d80e  _trajHandle_Id                         
    1     0000d810  _trajHandle_fwc                        
    1     0000d80c  _trajHandle_spd                        
    1     0000d88a  _traj_Id                               
    1     0000d894  _traj_fwc                              
    1     0000d880  _traj_spd                              
    0     000892ef  _trigOverCurrReset                     
    0     00089413  _uds_init                              
    0     000890cf  _uds_task                              
    1     0000e596  _ui32V_receivedOnce                    
    1     0000e594  _ui32V_rxIndication                    
    1     0000e166  _voltageCorrRawSignal                  
    1     0000dd02  _waitTime                              
    1     0000d580  _xcp                                   
    1     0000e610  _xcpResource                           
    abs   ffffffff  binit                                  
    0     0008a95c  cinit                                  
    0     00083000  code_start                             
    0     00089627  etext                                  
    abs   ffffffff  pinit                                  
    
    
    GLOBAL SYMBOLS: SORTED BY Symbol Address 
    
    page  address   name                                   
    ----  -------   ----                                   
    0     0000a000  _AppT1                                 
    0     0000a000  _Cla1ConstLoadStart                    
    0     0000a000  _Cla1ConstRunStart                     
    0     0000a000  _Cla1Prog2LoadStart                    
    0     0000a000  _Cla1Prog2RunStart                     
    0     0000a000  _Cla1ProgLoadStart                     
    0     0000a000  _Cla1ProgRunStart                      
    0     0000a000  _RamfuncsRunStart                      
    0     0000a670  _mainISR                               
    0     0000a9e0  _FOC                                   
    0     0000ab9b  _CurrentControl                        
    0     0000ad14  _SpeedControl                          
    0     0000ae89  _Hfi                                   
    0     0000afa6  _PostProcessing                        
    0     0000b085  _MOTOR_rms_sampling                    
    0     0000b10b  _GenerateHfCarrier                     
    0     0000b17b  _Flash_initModule                      
    0     0000b1c0  _FilterAlphaCurrentDoubleCarrier       
    0     0000b201  _FilterAlphaCurrentSingleCarrier       
    0     0000b242  _FilterBetaCurrentDoubleCarrier        
    0     0000b283  _FilterBetaCurrentSingleCarrier        
    0     0000b2c4  _AngleDelayCompensation                
    0     0000b301  _runEstimator                          
    0     0000b32d  _SysCtl_delay                          
    0     0000b331  _RamfuncsRunEnd                        
    0     00083000  __APP_ENTRY                            
    0     00083000  code_start                             
    0     00083002  _AppHeader                             
    0     00083010  _Svnrev                                
    0     00083030  .text                                  
    0     00083030  _AppT3                                 
    0     00083030  ___text__                              
    0     00083a62  _AppT2                                 
    0     00083f9e  _USER_setParams                        
    0     0008440a  _HAL_setupGpios                        
    0     0008480a  _proj_lab08_loop                       
    0     00084be7  _pow                                   
    0     00084be7  _powf                                  
    0     00084f68  _proj_lab08_init                       
    0     00085579  _XcpCommand                            
    0     000857fd  _ApplXcpInterruptDisable               
    0     000859ed  _Fapi_issueProgrammingCommand          
    0     00085bcd  _HAL_setupPwms                         
    0     00085d42  _proj_lab08_instaSpin_ReInit           
    0     00085ea2  _runSelftest                           
    0     00085ff3  _MOTOR_rms_calculation                 
    0     0008612e  _log                                   
    0     0008612e  _logf                                  
    0     00086259  _ApplXcpInterruptEnable                
    0     0008625a  _runOffsetsCalculation                 
    0     00086360  _Calib                                 
    0     0008643a  _HAL_setupAdcs                         
    0     00086512  _HAL_init                              
    0     000865e9  _CanNmPB_SetPDU                        
    0     000866b2  _MOTOR_variables_update                
    0     00086771  _XcpEvent                              
    0     0008681e  _HAL_setupPwmDacs                      
    0     000868c8  _CanNmPB_GetPDU                        
    0     00086971  _Crc_Initialize                        
    0     00086972  _InitNvM                               
    0     00086a1a  _Fapi_initializeAPI                    
    0     00086ac1  _CAN_setupMessageObject                
    0     00086b5f  _MOTOR_variables_init                  
    0     00086bfd  _DMA_configMode                        
    0     00086c9a  _SysCtl_isPLLValid                     
    0     00086d34  _UpdateHistogramData2D                 
    0     00086dca  _HAL_setupSciA                         
    0     00086e5e  _SysCtl_setClock                       
    0     00086ee9  _c_sig_copyTxMessage                   
    0     00086f72  FS$$DIV                                
    0     00086ffa  _NvMUpdate                             
    0     0008707b  _UpdateHistogramData1D                 
    0     000870fc  __Fapi_loopRegionForValue              
    0     000871fa  _Appl_cpuTimers_init                   
    0     00087275  _HAL_setParams                         
    0     000873df  _Eep_WriteData16bit                    
    0     00087452  _Eep_ReadData16bit                     
    0     000874c1  _c_sig_MCU_RomCorrupted                
    0     000874c2  _c_sig_copyRxMessage                   
    0     0008759e  _ApplXcpGetSeed                        
    0     0008760a  _mea_init                              
    0     00087675  _eep_writeData                         
    0     000876dc  _InitCan                               
    0     00087742  _Fapi_issueAsyncCommandWithAddress     
    0     00087809  _eep_readData                          
    0     000878c8  _Fapi_setupEepromSectorEnable          
    0     00087924  _Tab1DS3I2T3126_e                      
    0     0008797e  _floor                                 
    0     0008797e  _floorf                                
    0     000879d5  _ldexp                                 
    0     000879d5  _ldexpf                                
    0     000879d5  _scalbn                                
    0     000879d5  _scalbnf                               
    0     00087a2c  _c_int00                               
    0     00087a82  __Fapi_checkRegionForValue             
    0     00087ad4  _overCurrPeakISR                       
    0     00087b26  _c_drv_configureMailboxes              
    0     00087bc0  _Tab1DS3I4T3126_c                      
    0     00087c0b  _AppT4                                 
    0     00087c54  _AppT5                                 
    0     00087c9c  _Interrupt_disable                     
    0     00087ce4  _c_sig_init                            
    0     00087d2b  _CAN_readMessage                       
    0     00087d71  _CanNmPB_Statemachine                  
    0     00087db7  _ADC_setVREF                           
    0     00087dfc  _GetDelta                              
    0     00087e41  _HAL_setupTimers                       
    0     00087e86  _HAL_setupSpiB                         
    0     00087eca  _os_executeTasks                       
    0     00087f0e  _Tab1DS0I2T3126_e                      
    0     00087f51  _initCPUTimers                         
    0     00087f94  _HAL_setupFaults                       
    0     00087fd5  _Interrupt_initModule                  
    0     00088016  _Set_Nvm_BootIds                       
    0     00088057  _GPIO_setPadConfig                     
    0     00088096  _NvMInitTable2D                        
    0     00088113  _HAL_setupDlogDMA                      
    0     000881c6  _mavg_addValue                         
    0     00088236  _configCPUTimer                        
    0     0008826b  _CAN_setBitTiming                      
    0     0008829f  _Interrupt_enable                      
    0     00088307  _CAN_sendMessage                       
    0     0008833a  _GetMaxTaskLoad_InPercent              
    0     0008836d  _GetMeanTaskLoad_InPercent             
    0     000883a0  _c_drv_receiveFrame                    
    0     000883d2  _GPIO_setPinConfig                     
    0     00088402  __Fapi_issueFsmCommand                 
    0     00088432  _Fapi_setActiveFlashBank               
    0     00088461  _HAL_setupPeripheralClks               
    0     00088490  _SwitchPowerstage                      
    0     000884bd  _ipl_interpolate                       
    0     00088517  _Fapi_calculateFletcherChecksum        
    0     00088543  _SysCtl_selectXTAL                     
    0     0008856f  _ApplXcpUnlock                         
    0     000885c5  __Fapi_setupSectorsForWrite            
    0     00088646  _SysCtl_selectOscSource                
    0     00088670  _XCP_TX                                
    0     0008869a  __Fapi_divideUnsignedLong              
    0     000886c4  L$$DIV                                 
    0     000886d3  L$$MOD                                 
    0     000886e1  UL$$DIV                                
    0     000886e8  UL$$MOD                                
    0     000886ee  _NvMInitTable1D                        
    0     00088717  _ipl_functionValue                     
    0     00088740  C$$EXIT                                
    0     00088740  _abort                                 
    0     00088742  _exit                                  
    0     00088769  _Fapi_setupBankSectorEnable            
    0     00088791  _CanNmPB_ExecTimer                     
    0     000887de  _sqrt                                  
    0     000887de  _sqrtf                                 
    0     00088804  _HwIoConnectorLv_InitAIOs              
    0     00088829  _InitWatchdog                          
    0     00088871  _copy_in                               
    0     00088895  _Fapi_isAddressEcc                     
    0     000888b8  _InitOffsets                           
    0     000888db  _ReloadOffsetValues                    
    0     000888fe  _WriteNvM                              
    0     00088921  _XCPonCAN_RX                           
    0     00088966  _GPIO_setMasterCore                    
    0     00088988  _GPIO_setQualificationMode             
    0     00088a10  _CanNmPB_PrepareBusSleepMode           
    0     00088a52  _GPIO_setAnalogMode                    
    0     00088a73  _SCI_setConfig                         
    0     00088a94  _XcpSendCrm                            
    0     00088af7  _pt1_float_addValue                    
    0     00088b18  _GPIO_setDirectionMode                 
    0     00088b38  _GPIO_setInterruptPin                  
    0     00088b58  _c_sig_setTxSignal                     
    0     00088b78  _main                                  
    0     00088b98  _SPI_setConfig                         
    0     00088bd6  _XcpMemCpy_If                          
    0     00088c14  FD$$TOL                                
    0     00088c51  _HAL_setupSpiA                         
    0     00088c6f  _SPI_clearInterruptStatus              
    0     00088c8d  _SysCtl_selectXTALSingleEnded          
    0     00088cab  _GetByte                               
    0     00088ce5  _c_drv_sendFrame                       
    0     00088d3c  _memcpy                                
    0     00088d59  _DeleteHistogramData                   
    0     00088d75  _ctd_isElapsed                         
    0     00088d91  _pt1_float_init                        
    0     00088dad  _GPIO_setQualificationPeriod           
    0     00088dc8  _mea_sendSignalsToCAN                  
    0     00088de3  _CanNmPB_BusSleepMode                  
    0     00088dfd  _CanNmPB_Init                          
    0     00088e17  _SCI_disableInterrupt                  
    0     00088e31  _SCI_enableInterrupt                   
    0     00088e4b  _c_sig_setActualSpeed                  
    0     00088e65  _ApplXcpSend                           
    0     00088eb0  __args_main                            
    0     00088ee1  _InitHistograms                        
    0     00088f29  _CAN_initModule                        
    0     00088f6e  _HAL_enableAdcInts                     
    0     00088f85  _Interrupt_initVectorTable             
    0     00088fb3  _c_tsk_receiveFrames                   
    0     00088fca  _cpuTimer0ISR                          
    0     00088fe1  _XcpSendCallBack                       
    0     00089022  _c_tsk_sendOnce                        
    0     0008904b  _c_sig_setActualVoltage                
    0     0008905f  _CanNmPB_ReadySleepState               
    0     00089072  _Fapi_flushPipeline                    
    0     00089085  _c_sig_setStatusDevice                 
    0     000890ab  _CanNmPB_GetNetworkStateFromApplication
    0     000890cf  _uds_task                              
    0     000890f2  _GRAPH_DataPointerInit                 
    0     00089103  _GetHistStartAdress1D                  
    0     00089114  _HAL_setupGate                         
    0     00089125  _mea_sampleAndFilterSupplyVoltage      
    0     00089136  _copysign                              
    0     00089136  _copysignf                             
    0     00089147  _CanNmPB_NormalOperationState          
    0     00089157  _c_sig_getSetpointLimpMode_rpm         
    0     00089167  _c_sig_getSpeedSetpoint_rpm            
    0     00089177  _c_sig_setActualCurrent_100mA          
    0     00089187  _cpuTimer1ISR                          
    0     00089197  _cpuTimer2ISR                          
    0     000891a7  _ctd_startCountdown                    
    0     000891b7  _Fapi_doVerify                         
    0     000891c6  __Fapi_scaleCycleValues                
    0     000891d5  _c_sig_isRxSignalUpToDate              
    0     000891e4  _mot_isMotorPowered                    
    0     00089202  _CanNmPB_CheckPDURxConfirmation        
    0     00089210  _DATALOG_init                          
    0     0008921e  _DMA_configAddresses                   
    0     0008922c  _DMA_configTransfer                    
    0     0008923a  _XcpInit                               
    0     00089256  _c_sig_saturateTxSignal                
    0     00089271  _CanNmPB_main                          
    0     0008928b  _ReportPowerConsumption                
    0     00089298  _XCPonUART_RX                          
    0     000892a5  _c_drv_getReceivedOnce                 
    0     000892b2  _c_drv_getRxIndication                 
    0     000892bf  _CanNmPB_StartTimer                    
    0     000892d7  _WriteActualTime                       
    0     000892e3  _pt1_init                              
    0     000892ef  _trigOverCurrReset                     
    0     000892fb  _Fapi_checkFsmForReady                 
    0     00089306  _Set_Nvm_CurrentOffsetW                
    0     00089311  _Set_Nvm_VoltageOffsetU                
    0     0008931c  _Set_Nvm_VoltageOffsetV                
    0     00089327  _Set_Nvm_VoltageOffsetW                
    0     00089332  _XcpDisconnect                         
    0     0008933d  __Fapi_calculateOtpChecksum            
    0     00089348  _c_tsk_sendFrames10ms                  
    0     0008935e  _CanNmPB_RepeatMessageState            
    0     00089368  _DMA_configBurst                       
    0     00089372  _HAL_clearTimerFlag                    
    0     0008937c  _HAL_getTimerStatus                    
    0     00089386  _ResetIntoBootloader                   
    0     00089390  _Set_Nvm_CAN_IdOffset                  
    0     0008939a  _Set_Nvm_DeliveryDate                  
    0     000893a4  _Set_Nvm_HardwareVersion               
    0     000893ae  _Set_Nvm_SerialNumber                  
    0     000893c2  _CanNmPB_PowerOff                      
    0     000893cb  _CanNmPB_TxConfirmation                
    0     000893d4  _EPWM_setEmulationMode                 
    0     000893dd  _Nvm_ImmediatelyWriteRequest           
    0     000893e6  _c_drv_clearRxIndication               
    0     000893ef  _c_sig_getHeaterEnableFlag             
    0     000893f8  _c_sig_getRxSignal                     
    0     00089401  _c_sig_setTxSignalNA                   
    0     0008940a  _mea_sampleSlowSignals                 
    0     00089413  _uds_init                              
    0     0008941c  __register_unlock                      
    0     00089420  __register_lock                        
    0     00089424  __nop                                  
    0     00089425  _CanNmPB_AckEnableSendFrames           
    0     0008942d  _Crc_CalculateCrc16                    
    0     00089435  _EstStoreIdRef                         
    0     0008943d  _Set_Nvm_CurrentOffsetV                
    0     00089445  _XcpSendDto_If                         
    0     00089455  _c_drv_getBuffer                       
    0     0008946d  _mavg_create                           
    0     0008947d  _mea_getTemperatureIGBT_C              
    0     00089485  _mea_getTemperaturePCB_C               
    0     0008948d  _Fapi_getFsmStatus                     
    0     00089494  _GetHistStartAdress2D                  
    0     0008949b  _Set_Nvm_CurrentOffsetU                
    0     000894a9  _CPUTimer_setEmulationMode             
    0     000894af  _FILTER_FO_setInitialConditions        
    0     000894b5  _IncOHCounter                          
    0     000894c1  _XcpMemSet                             
    0     000894c7  _c_sig_HV_OvercurrentCont              
    0     000894cd  _c_sig_LV_Undervoltage                 
    0     000894d3  _c_sig_Mot_DryRunEmergency             
    0     000894d9  _c_sig_Mot_DryRunWarning               
    0     000894df  _c_sig_setD_Current_100mA              
    0     000894e5  _c_sig_setExtOperated                  
    0     000894eb  _c_sig_setQ_Current_100mA              
    0     000894f1  _c_sig_setReserve_1                    
    0     000894f7  _ctd_startCountdown_ms                 
    0     000894fd  _mot_task                              
    0     00089503  _reInitSpi                             
    0     0008950f  _CanNmPB_ResetTransitions              
    0     00089514  _FILTER_FO_setNumCoeffs                
    0     00089519  _Get_Nvm_CurrentOffsetU                
    0     0008951e  _Get_Nvm_CurrentOffsetV                
    0     00089523  _Get_Nvm_CurrentOffsetW                
    0     00089528  _Get_Nvm_VoltageOffsetU                
    0     0008952d  _Get_Nvm_VoltageOffsetV                
    0     00089532  _Get_Nvm_VoltageOffsetW                
    0     00089537  _Nvm_ImmediatelyWriteSet               
    0     00089541  _c_sig_HV_Overvoltage                  
    0     00089546  _c_sig_HV_Undervoltage                 
    0     0008954b  _c_sig_IGBT_OvertempEmergency          
    0     00089550  _c_sig_IGBT_OvertempWarning            
    0     00089555  _c_sig_MCU_UnexpReset                  
    0     0008955a  _c_sig_Mot_FanBlockedTemp              
    0     0008955f  _c_sig_PCB_OvertempEmergency           
    0     00089564  _c_sig_PCB_OvertempWarning             
    0     00089569  _c_sig_PostFailed                      
    0     0008956e  _c_sig_setIgbtTemperature              
    0     00089573  _c_sig_setPcbTemperature               
    0     00089578  _c_sig_setSN_Internal                  
    0     0008957d  _c_sig_setSN_Major                     
    0     00089582  _c_sig_setSN_Minor                     
    0     00089587  _c_sig_setSemiconductorSw              
    0     0008958c  _mea_sampleFastSignals                 
    0     00089591  _CLARKE_init                           
    0     00089595  _CanNmPB_GetPDURxConfirmation          
    0     00089595  _CanNmPB_RxIndication                  
    0     00089599  _ErrorNvm                              
    0     0008959d  _FILTER_FO_init                        
    0     000895a1  _GetRxIndication                       
    0     000895a5  _GetStatusCalib                        
    0     000895a9  _Get_Nvm_BootIdOffset                  
    0     000895ad  _Get_Nvm_CAN_IdOffset                  
    0     000895b1  _Get_Nvm_DeliveryDate                  
    0     000895b5  _Get_Nvm_HardwareVersion               
    0     000895b9  _Get_Nvm_SerialNumber                  
    0     000895bd  _HAL_enableGlobalInts                  
    0     000895c1  _IPARK_init                            
    0     000895c9  _PARK_init                             
    0     000895cd  _PI_init                               
    0     000895d1  _ResetStatus                           
    0     000895d5  _SVGENCURRENT_init                     
    0     000895d9  _SVGEN_init                            
    0     000895dd  _TRAJ_init                             
    0     000895e5  _XcpSetActiveTl                        
    0     000895e9  _ctd_isRunning                         
    0     000895ed  _isOverCurrentPeakEventTriggered       
    0     000895f1  _main_setInhibitWdogRetrigger          
    0     000895f5  _mea_getSupplyCurrent_100mA            
    0     000895fd  _DRV8305_init                          
    0     00089600  _FILTER_FO_setDenCoeffs                
    0     00089603  _HAL_enableDebugInt                    
    0     00089606  _c_tsk_init                            
    0     00089609  _mot_init                              
    0     0008960c  _ApplXcpGetPointer                     
    0     0008960e  _DRV8305_setGpioNumber                 
    0     00089610  _DRV8305_setSpiHandle                  
    0     00089612  _Fapi_serviceWatchdogTimer             
    0     00089618  _XcpBackground                         
    0     0008961a  _ssi_getPendingService                 
    0     0008961e  __system_pre_init                      
    0     00089620  _c_sig_Mot_FanBlockedPerm              
    0     00089621  _c_sig_Mot_SpeedMeasUnpl               
    0     00089622  _c_sig_setDeviceEnabled                
    0     00089623  _c_tsk_sendFrames1ms                   
    0     00089624  _c_tsk_sendFrames2s                    
    0     00089625  _ssi_setPendingService                 
    0     00089626  __system_post_cinit                    
    0     00089627  ___etext__                             
    0     00089627  etext                                  
    0     00089628  _RamfuncsLoadStart                     
    0     0008a959  _RamfuncsLoadEnd                       
    0     0008a95c  ___cinit__                             
    0     0008a95c  cinit                                  
    0     0008b290  _TX_SIG_PAR                            
    0     0008b650  _RX_SIG_PAR                            
    0     0008b8e4  _C_DRV_MAILBOX_CFG                     
    0     0008ba12  _TX_MSG                                
    0     0008ba55  _RX_MSG                                
    0     0008ba69  _FREE_RUNNING_TIMER_1US                
    0     0008bac6  _kXcpMainVersion                       
    0     0008bac7  _kXcpSubVersion                        
    0     0008bac8  _kXcpReleaseVersion                    
    0     0008baca  _OVERRUN_CALMDOWN_US                   
    1     000000f6  __stack                                
    1     000003f6  __STACK_END                            
    1     00000500  _gPwmDacData                           
    1     00000540  _gMotorVars                            
    1     00000640  _gUserParams                           
    1     0000c000  _gStepVars                             
    1     0000c040  _gGraphVars                            
    1     0000c868  _cnt_                                  
    1     0000c869  _cnt_2s                                
    1     0000c86a  __1msCounter                           
    1     0000c86b  _CanNmRxFlag                           
    1     0000c880  _datalogBuff1                          
    1     0000cba4  _DIAG_EnableHealing_C                  
    1     0000cbc0  _datalogBuff2                          
    1     0000cee4  _DIAG_MatureTime_C                     
    1     0000cf00  _datalogBuff3                          
    1     0000d240  _datalogBuff4                          
    1     0000d580  _xcp                                   
    1     0000d7c0  _SoftwareVariant                       
    1     0000d7c1  _PwmInternalEnable                     
    1     0000d7c2  _OffsetLearnRequested                  
    1     0000d7c3  _SelftestRequested                     
    1     0000d7c4  _gLEDcnt                               
    1     0000d7c5  _gCounter_speed                        
    1     0000d7c6  _gCounter_TrajSpd                      
    1     0000d7c7  _gCounter_TrajId                       
    1     0000d7c8  _Flag_enableOffsetcalibration          
    1     0000d7c9  _measurableShuntThisCycle              
    1     0000d7ca  _ignoreShuntNextCycle                  
    1     0000d7cb  _midVolShunt                           
    1     0000d7cc  _gCmpOffset                            
    1     0000d7cd  _gOvercurrentEvent                     
    1     0000d7ce  _gOvercurrentCounter                   
    1     0000d7cf  _gOvercurrentPulseCounter              
    1     0000d7d0  _overCurrPeakISRcounter                
    1     0000d7d1  _proj_loop_state                       
    1     0000d7d2  _VoltageDcBus                          
    1     0000d7d4  _angle_rad                             
    1     0000d7d6  _fe_rps                                
    1     0000d7d8  _fm_rps                                
    1     0000d7da  _fm_lp_rps                             
    1     0000d7dc  _fmDat                                 
    1     0000d7de  _dummy                                 
    1     0000d7e0  _IdRated_A                             
    1     0000d7e2  _MotorVariant                          
    1     0000d7e4  _gOffsetCalcCount                      
    1     0000d7e6  _gOffsetCalcWaitTime                   
    1     0000d7e8  _angleDelta_rad                        
    1     0000d7ea  _angleEst_rad                          
    1     0000d7ec  _angleSmo_rad                          
    1     0000d7ee  _angleGen_rad                          
    1     0000d7f0  _angleFoc_rad                          
    1     0000d7f2  _clarkeHandle_I                        
    1     0000d7f4  _clarkeHandle_V                        
    1     0000d7f6  _estHandle                             
    1     0000d7f8  _halHandle                             
    1     0000d7fa  _iparkHandle                           
    1     0000d7fc  _parkHandle                            
    1     0000d7fe  _piHandle_Id                           
    1     0000d800  _piHandle_Iq                           
    1     0000d802  _piHandle_fwc                          
    1     0000d804  _piHandle_spd                          
    1     0000d806  _svgenHandle                           
    1     0000d808  _svgen                                 
    1     0000d80a  _svgencurrentHandle                    
    1     0000d80c  _trajHandle_spd                        
    1     0000d80e  _trajHandle_Id                         
    1     0000d810  _trajHandle_fwc                        
    1     0000d812  _RampUpAcc_krpmps                      
    1     0000d814  _RampDownAcc_krpmps                    
    1     0000d816  _ReducedStartAcc_krpmps                
    1     0000d818  _KPspeedLowered                        
    1     0000d81a  _KIspeedLowered                        
    1     0000d81c  _KPspeedOperate                        
    1     0000d81e  _KIspeedOperate                        
    1     0000d820  _AccSwitchSpeedLowKrpm                 
    1     0000d822  _AccSwitchSpeedHighKrpm                
    1     0000d824  _KPspeed                               
    1     0000d826  _KIspeed                               
    1     0000d828  _KPspeedDelta                          
    1     0000d82a  _KIspeedDelta                          
    1     0000d82c  _AccSwitchSpeedKrpm                    
    1     0000d82e  _MaxAcc_krpmps                         
    1     0000d830  _MaxAccDelta_krpmps                    
    1     0000d832  _Idq_ref_A                             
    1     0000d836  _Idq_offset_A                          
    1     0000d83a  _Iab_in_A                              
    1     0000d840  _Idq_in_A                              
    1     0000d844  _Vab_out_V                             
    1     0000d848  _Vdq_out_V                             
    1     0000d84c  _Vdq_offset_V                          
    1     0000d850  _ipark                                 
    1     0000d854  _park                                  
    1     0000d858  _IdqSet_A                              
    1     0000d85c  _clarke_I                              
    1     0000d862  _clarke_V                              
    1     0000d868  _svgencurrent                          
    1     0000d86e  _gAdcDataPrev_A                        
    1     0000d874  _gPwmDataPrev                          
    1     0000d880  _traj_spd                              
    1     0000d88a  _traj_Id                               
    1     0000d894  _traj_fwc                              
    1     0000d89e  _gAdcData                              
    1     0000d8ae  _gPwmData                              
    1     0000d8c0  _gEstInputData                         
    1     0000d8d0  _pi_Id                                 
    1     0000d8e0  _pi_Iq                                 
    1     0000d8f0  _pi_fwc                                
    1     0000d900  _pi_spd                                
    1     0000d910  _gEstOutputData                        
    1     0000d940  _hal                                   
    1     0000d9b6  _Fapi_GlobalInit                       
    1     0000d9c0  _OutAppT5                              
    1     0000d9c4  _Fast_OutputData                       
    1     0000d9ca  _InRte                                 
    1     0000d9d0  _Fast_InputDataBus                     
    1     0000d9da  _OutAppT2                              
    1     0000da00  _OutAppT4                              
    1     0000da18  _OutAppT1                              
    1     0000da40  _OutAppT3                              
    1     0000da80  _OutRte                                
    1     0000dbae  _MultipleCanFrames                     
    1     0000dbaf  _CanTimeoutFlag                        
    1     0000dbb0  _isTesterPresent                       
    1     0000dbb4  _SvnRev                                
    1     0000dbb6  _OffsetValue                           
    1     0000dbba  _testerPresentCountdown                
    1     0000dd00  _FinishedOffsetLearning                
    1     0000dd01  _cnt                                   
    1     0000dd02  _waitTime                              
    1     0000dd03  _ErrFlagPhaseProof                     
    1     0000dd04  _FinishedSelftest                      
    1     0000dd40  _Selftest                              
    1     0000de4a  _AppT1_AngleDegOffset_C                
    1     0000de4c  _AppT1_CoilHeatingCurrent_C            
    1     0000de4e  _AppT1_DecLimit_C                      
    1     0000de50  _AppT1_FirstAlignPos_C                 
    1     0000de52  _AppT1_IqRefMan_C                      
    1     0000de54  _AppT1_ManVd_C                         
    1     0000de56  _AppT1_ManVq_C                         
    1     0000de58  _AppT1_MaxRatioPreCom_C                
    1     0000de5a  _AppT1_MeasureRsCurrent_C              
    1     0000de5c  _AppT1_MeasureRsKi_C                   
    1     0000de5e  _AppT1_MeasureRsKp_C                   
    1     0000de60  _AppT1_MinRatioPreCom_C                
    1     0000de62  _AppT1_OlGain_C                        
    1     0000de64  _AppT1_PrecommByCharline_C             
    1     0000de66  _AppT1_PulseTime_C                     
    1     0000de68  _AppT1_RiseRateLower_C                 
    1     0000de6a  _AppT1_RiseRateUpper_C                 
    1     0000de6c  _AppT1_RpmDes_C                        
    1     0000de6e  _AppT1_RpmThreshold_C                  
    1     0000de70  _AppT1_SecondAlignPos_C                
    1     0000de72  _AppT1_SpeedKi_C                       
    1     0000de74  _AppT1_SpeedKp_C                       
    1     0000de76  _AppT1_SpeedRefMan_C                   
    1     0000de78  _AppT1_SwAngleShift_C                  
    1     0000de7a  _AppT1_SwEnableStartup_C               
    1     0000de7c  _AppT1_SwIqRefMan_C                    
    1     0000de7e  _AppT1_SwManVdq_C                      
    1     0000de80  _AppT1_SwSpeedRefMan_C                 
    1     0000de82  _AppT1_TimeThreshold_C                 
    1     0000de84  _AppT1_TrajLimit_C                     
    1     0000de86  _AppT1_TrajReset_C                     
    1     0000de88  _AppT1_TrajSlopeDecelLower_C           
    1     0000de8a  _AppT1_TrajSlopeUpper_C                
    1     0000de8c  _AppT1_dCurrentKi_C                    
    1     0000de8e  _AppT1_dCurrentKp_C                    
    1     0000de90  _AppT1_iDDesMan_C                      
    1     0000de92  _AppT1_maxVsMaxPu_C                    
    1     0000de94  _AppT1_qCurrentKi_C                    
    1     0000de96  _AppT1_qCurrentKp_C                    
    1     0000de98  _Hfi_HarmonicCorrectionGain_C          
    1     0000de9a  _Hfi_PllKi_C                           
    1     0000de9c  _Hfi_PllKp_C                           
    1     0000de9e  _Hfi_uCarrierGain_C                    
    1     0000dea0  _AppT1_AccT_MP                         
    1     0000dea2  _AppT1_AngleRadComputed_MP             
    1     0000dea4  _AppT1_AngleRadEstimator_MP            
    1     0000dea6  _AppT1_MaxPhaseCurrent_CUR             
    1     0000dea8  _AppT1_OlEnabled_MP                    
    1     0000deaa  _AppT1_Precommutation_CUR              
    1     0000deac  _AppT1_arcEstimatedAngleEl_MP          
    1     0000deae  _AppT1_bBlockageReleased_MP            
    1     0000deb0  _AppT1_bResetControl_MP                
    1     0000deb2  _AppT1_facGainDcLink_CUR               
    1     0000deb4  _AppT1_iDirectAxis_MP                  
    1     0000deb6  _AppT1_iDirectError_MP                 
    1     0000deb8  _AppT1_iPhaseU_MP                      
    1     0000deba  _AppT1_iPhaseV_MP                      
    1     0000debc  _AppT1_iPhaseW_MP                      
    1     0000debe  _AppT1_iQuadratureAxis_MP              
    1     0000dec0  _AppT1_iQuadratureError_MP             
    1     0000dec2  _AppT1_nEstimatedSpeedMe_MP            
    1     0000dec4  _AppT1_nSpeedDesiredRamped_MP          
    1     0000dec6  _AppT1_nSpeedDesired_MP                
    1     0000dec8  _AppT1_nSpeedError_MP                  
    1     0000deca  _AppT1_trqEstimatedTorque_MP           
    1     0000decc  _AppT1_uDDesired_MP                    
    1     0000dece  _AppT1_uDirectAxis_MP                  
    1     0000ded0  _AppT1_uPhaseU_MP                      
    1     0000ded2  _AppT1_uPhaseV_MP                      
    1     0000ded4  _AppT1_uPhaseW_MP                      
    1     0000ded6  _AppT1_uQDesired_MP                    
    1     0000ded8  _AppT1_uQuadratureAxis_MP              
    1     0000deda  _Hfi_arcEstimatedPositionEl_MP         
    1     0000dedc  _Post_uDDesired_MP                     
    1     0000dede  _Post_uQDesired_MP                     
    1     0000df68  _SysPa_SpeedMinTarget_C                
    1     0000df69  _SysPa_EnableFlystart_C                
    1     0000df6a  _SysPa_EnableLimpMode_C                
    1     0000df6b  _SysPa_InvertRotDir_C                  
    1     0000df6c  _SysPa_EnableHeaterFeature_C           
    1     0000df6e  _SysPa_Zp_C                            
    1     0000df70  _SysPa_nMax_C                          
    1     0000df72  _SysPa_nNearZeroSpeed_C                
    1     0000df74  _SysPa_tMaxMotorCoil_C                 
    1     0000df76  _SysPa_trqMax_C                        
    1     0000df78  _AppT1_MaxPhaseCurrent_CUR_Table       
    1     0000e07c  _ActualTimerValue                      
    1     0000e080  _AppT3_tIgbtFiltred_MP                 
    1     0000e081  _AppT3_tMotorCoil_MP                   
    1     0000e082  _AppT3_tPcbFiltred_MP                  
    1     0000e090  _AppT3_Eta_C                           
    1     0000e092  _AppT3_MechTimeConstant_C              
    1     0000e094  _AppT3_R20_C                           
    1     0000e096  _AppT3_ResetCanTimeout_C               
    1     0000e098  _AppT3_RsFilterTime_C                  
    1     0000e09a  _AppT3_TempCoefficientAlpha_C          
    1     0000e09c  _AppT3_TemperatureFilterTime_C         
    1     0000e09e  _AppT3_swtOffsetHrbCwa_C               
    1     0000e0a0  _AppT3_uDcFilterTime_C                 
    1     0000e0a2  _AppT3_CanTimeoutPerm_MP               
    1     0000e0a4  _AppT3_CoastOutTime_MP                 
    1     0000e0a6  _AppT3_ExtOpCounter_MP                 
    1     0000e0a8  _AppT3_MechDampingCurve_CUR            
    1     0000e0aa  _AppT3_OffsetsIu_MP                    
    1     0000e0ac  _AppT3_OffsetsIv_MP                    
    1     0000e0ae  _AppT3_OffsetsIw_MP                    
    1     0000e0b0  _AppT3_OffsetsVu_MP                    
    1     0000e0b2  _AppT3_OffsetsVv_MP                    
    1     0000e0b4  _AppT3_OffsetsVw_MP                    
    1     0000e0b6  _AppT3_RpmMechFreezed_MP               
    1     0000e0b8  _AppT3_RsFiltredContinuous_MP          
    1     0000e0ba  _AppT3_Rs_MP                           
    1     0000e0bc  _AppT3_Task10ms_MP                     
    1     0000e0be  _AppT3_Task1ms_MP                      
    1     0000e0c0  _AppT3_Task50us_MP                     
    1     0000e0c2  _AppT3_TorqueFreezed_MP                
    1     0000e0c4  _AppT3_bEnablePwmInternal_MP           
    1     0000e0c6  _AppT3_iDcLink_MP                      
    1     0000e0c8  _AppT3_iDcRaw_MP                       
    1     0000e0ca  _AppT3_iOffset_MP                      
    1     0000e0cc  _AppT3_nEstSpeedAbsMe_MP               
    1     0000e0ce  _AppT3_pwrEffective_MP                 
    1     0000e0d0  _AppT3_stMotor_MP                      
    1     0000e0d2  _AppT3_stNetwork_MP                    
    1     0000e0d4  _AppT3_uDcLinkFiltred_MP               
    1     0000e0d6  _AppT3_uDcLink_MP                      
    1     0000e126  _ActualStateFeedback                   
    1     0000e135  _statusRsCalib                         
    1     0000e136  _EstIn                                 
    1     0000e140  _XCP_test_01                           
    1     0000e141  _XCP_test_02                           
    1     0000e142  _XCP_test_03                           
    1     0000e143  _XCP_test_04                           
    1     0000e144  _XCP_test_05                           
    1     0000e145  _XCP_test_06                           
    1     0000e146  _XCP_test_07                           
    1     0000e147  _XCP_test_08                           
    1     0000e148  _temperatureIGBT_C                     
    1     0000e149  _temperatureIGBT_0p1C                  
    1     0000e14a  _stimTempIGBT                          
    1     0000e14b  _stimTempPCB                           
    1     0000e14c  _temperatureTest_C                     
    1     0000e14d  _IGBT_TempRawSignal                    
    1     0000e14e  _IGBT_TempRawSignalShifted             
    1     0000e14f  _temperaturePCB_C                      
    1     0000e150  _gDC_Current_100mA                     
    1     0000e151  _meaSupplyCurrent_100mA                
    1     0000e152  _HVdisChargeRawSignal                  
    1     0000e153  _LVsupplyRawSignal                     
    1     0000e154  _meaHVdisChargeVoltage_V               
    1     0000e155  _meaLVSupplyVoltage_mV                 
    1     0000e156  _Ref3V3P5RawSignal                     
    1     0000e157  _meaRef3V3P5Voltage_mV                 
    1     0000e158  _current_Test                          
    1     0000e15b  _meaIqActualValue_10mA                 
    1     0000e15c  _meaIqMeanValue_10mA                   
    1     0000e15d  _meaSpeedActValue_rpm                  
    1     0000e15e  _meaSpeedMeanValue_rpm                 
    1     0000e160  _iDC                                   
    1     0000e162  _etaElectricalFactor                   
    1     0000e164  _test1_float                           
    1     0000e166  _voltageCorrRawSignal                  
    1     0000e168  _gConsumedPower_W                      
    1     0000e16a  _gDC_Current_A                         
    1     0000e16c  _gMotorMechPower_W                     
    1     0000e16e  _gMotorMechPower_W_Filtered            
    1     0000e170  _gConsumedPower_W_Filtered             
    1     0000e172  _gDC_Current_A_Filtered                
    1     0000e174  _meaActSpeedKrpmFiltrd                 
    1     0000e176  _tempIGBTpt1Filter                     
    1     0000e178  _tempPCBpt1Filter                      
    1     0000e17a  _qCurrpt1Filter                        
    1     0000e17c  _MotorMechPowerpt1Filter               
    1     0000e180  _ConsumedPowerpt1Filter                
    1     0000e184  _DC_Currentpt1Filter                   
    1     0000e188  _actSpeedKrpmpt1Filter                 
    1     0000e200  _HistogramFields2D                     
    1     0000e2f8  _AppT1_MaxPhaseCurrent_CUR_xAxis       
    1     0000e300  _DIAG_HysteresisTemperature_C          
    1     0000e301  _DIAG_IgbtOvertempEmergValue_C         
    1     0000e302  _DIAG_IgbtOvertempWarnValue_C          
    1     0000e303  _DIAG_PcbOvertempEmergValue_C          
    1     0000e304  _DIAG_PcbOvertempWarnValue_C           
    1     0000e308  _DIAG_BlockedWaitTime_C                
    1     0000e30a  _DIAG_OvervoltEmergValue_C             
    1     0000e30c  _DIAG_OvervoltResetValue_C             
    1     0000e30e  _DIAG_SwBlockDetection_C               
    1     0000e310  _DIAG_UndervoltEmergValue_C            
    1     0000e312  _DIAG_UndervoltResetValue_C            
    1     0000e314  _DIAG_CanTimeout_MP                    
    1     0000e316  _DIAG_Drv8305Misc_MP                   
    1     0000e318  _DIAG_Drv8305Overtemperature_MP        
    1     0000e31a  _DIAG_Drv8305Undervoltage_MP           
    1     0000e31c  _DIAG_EepromWarning_MP                 
    1     0000e31e  _DIAG_HvOvervoltage_MP                 
    1     0000e320  _DIAG_HvUndervoltage_MP                
    1     0000e322  _DIAG_IgbtEmergency_MP                 
    1     0000e324  _DIAG_IgbtWarning_MP                   
    1     0000e326  _DIAG_MotBlocked_MP                    
    1     0000e328  _DIAG_OvercurrentPeak_MP               
    1     0000e32a  _DIAG_PcbEmergency_MP                  
    1     0000e32c  _DIAG_PcbWarning_MP                    
    1     0000e32e  _DIAG_PhaseLost_MP                     
    1     0000e330  _DIAG_UnexpectedReset_MP               
    1     0000e332  _DIAG_iRmsU_MP                         
    1     0000e334  _DIAG_iRmsV_MP                         
    1     0000e336  _DIAG_iRmsW_MP                         
    1     0000e376  _message                               
    1     0000e380  _StateNm                               
    1     0000e381  _NetworkState                          
    1     0000e382  _Flag_EnableCanSendFrames              
    1     0000e383  _Flag_EnablePduTransmit                
    1     0000e384  _ActualNetworkState                    
    1     0000e385  _CanNmPB_TxConfirmed                   
    1     0000e386  _CanNmPB_RxIndicated                   
    1     0000e387  _CanNmPB_RxPduIndRem                   
    1     0000e388  _TxPDU                                 
    1     0000e3a4  _RxPDU                                 
    1     0000e3c0  _HistogramFields1D                     
    1     0000e3fc  _AppT1_Precommutation_CUR_Table        
    1     0000e43c  _AppT1_Precommutation_CUR_xAxis        
    1     0000e440  _filter                                
    1     0000e47c  _AppT3_MechDampingCurve_CUR_Table      
    1     0000e4ee  _datalogHandle                         
    1     0000e4f0  _datalog                               
    1     0000e4fc  _AppT3_MechDampingCurve_CUR_xAxis      
    1     0000e500  _CpuCnt_                               
    1     0000e50c  _filterHandle                          
    1     0000e518  _AppT1_facGainDcLink_CUR_Table         
    1     0000e520  _AppT1_facGainDcLink_CUR_xAxis         
    1     0000e550  _CurrentsUVW                           
    1     0000e556  _Delta                                 
    1     0000e55c  _Delta_Mean                            
    1     0000e568  _Task_Load_percent_mean                
    1     0000e56e  _TimeOfTask                            
    1     0000e574  _VoltagesUVW                           
    1     0000e57a  _errOffs                               
    1     0000e580  _globalSeed                            
    1     0000e586  _holdVal                               
    1     0000e58c  _sSeed                                 
    1     0000e592  _testlength                            
    1     0000e593  _canEcuNumber                          
    1     0000e594  _ui32V_rxIndication                    
    1     0000e596  _ui32V_receivedOnce                    
    1     0000e59e  ___TI_enable_exit_profile_output       
    1     0000e5a0  ___TI_cleanup_ptr                      
    1     0000e5a2  ___TI_dtors_ptr                        
    1     0000e5a4  _MLTP_TX_MSG                           
    1     0000e5a9  _ExpiryTime                            
    1     0000e5ad  _Flag_TimerExpired                     
    1     0000e5b1  _HRBState                              
    1     0000e5c4  _TimerEnabled                          
    1     0000e5ec  _cpuTimer0IntCount                     
    1     0000e5ed  _cpuTimer1IntCount                     
    1     0000e5ee  _cpuTimer2IntCount                     
    1     0000e5ef  _timebaseCounter                       
    1     0000e5f0  _testSPIread1                          
    1     0000e5f1  _testSPIread2                          
    1     0000e5f4  _EnablePwm                             
    1     0000e5f5  _RxIndicated                           
    1     0000e5f6  _DiscardCounter                        
    1     0000e5f7  _Task_Load_percent                     
    1     0000e5fb  _PageCounter                           
    1     0000e5ff  _errno                                 
    1     0000e602  __lock                                 
    1     0000e604  __unlock                               
    1     0000e606  _isTxPathLocked                        
    1     0000e607  _ReceivedNmFrame                       
    1     0000e60c  _psavalue                              
    1     0000e60e  _Reset_Trap_Condition                  
    1     0000e60f  _ratioCmp1Period                       
    1     0000e610  _xcpResource                           
    1     0000e611  _length                                
    abs   00000000  _Cla1ConstLoadSize                     
    abs   00000000  _Cla1Prog2LoadSize                     
    abs   00000000  _Cla1ProgLoadSize                      
    abs   00000300  __STACK_SIZE                           
    abs   00001331  _RamfuncsLoadSize                      
    abs   00001331  _RamfuncsRunSize                       
    abs   003eb000  _EST_getState                          
    abs   003eb00a  _EST_updateTrajState                   
    abs   003eb2b3  _EST_updateState                       
    abs   003eb581  _EST_updateId_ref_A                    
    abs   003eb8e1  _EST_setFlag_bypassLockRotor           
    abs   003eb8f6  _EST_setFlag_enableForceAngle          
    abs   003eb8fd  _EST_setFlag_enableRsRecalc            
    abs   003eb915  _EST_setParams                         
    abs   003ebf39  _EST_setIdq_ref_A                      
    abs   003ebfc8  _EST_setFlag_enablePowerWarp           
    abs   003ec9ee  _EST_run                               
    abs   003ecab6  _EST_isTrajError                       
    abs   003ecad7  _EST_isMotorIdentified                 
    abs   003ecaed  _EST_isError                           
    abs   003ecbde  _EST_initEst                           
    abs   003ecc59  _EST_getTrajState                      
    abs   003ecd1c  _EST_getRs_Ohm                         
    abs   003ecd4e  _EST_getRsOnLine_Ohm                   
    abs   003ecdf6  _EST_getRr_Ohm                         
    abs   003ecede  _EST_getLs_q_H                         
    abs   003ecf12  _EST_getLs_d_H                         
    abs   003ecf6b  _EST_getIntValue_Id_A                  
    abs   003ecfae  _EST_getIdRated_A                      
    abs   003ed059  _EST_getFm_lp_Hz                       
    abs   003ed0ad  _EST_getFlux_Wb                        
    abs   003ed127  _EST_getFe_Hz                          
    abs   003ed18c  _EST_enable                            
    abs   003ed1b5  _EST_disableTraj                       
    abs   003ed1be  _EST_disable                           
    abs   003ed1c4  _EST_configureTraj                     
    abs   003ed3e8  _EST_computeTorque_Nm                  
    abs   003ed44c  _EST_getRoverL_rps                     
    abs   003ee13c  _USER_setParams_priv                   
    abs   003ee438  FS$$TOFD                               
    abs   ffffffff  ___TI_pprof_out_hndl                   
    abs   ffffffff  ___TI_prof_data_size                   
    abs   ffffffff  ___TI_prof_data_start                  
    abs   ffffffff  ___binit__                             
    abs   ffffffff  ___c_args__                            
    abs   ffffffff  ___pinit__                             
    abs   ffffffff  binit                                  
    abs   ffffffff  pinit                                  
    
    [833 symbols]
    

  • Kai,

    I will review and get back to you on Tuesday next week (September 7th).  

    Thanks and regards,

    Vamsi

  • okay, thank you.

    Regards
    Kai

  • Kai,

    I will keep this thread in pause until next week.

    Thanks and regards,
    Vamsi

  • Kai, 

    I reviewed your map files.  You are not using the ROM Flash API.  You are embedding the flash API directly in your application and is going to flash.  

    Please take a look at the flash API usage example that I suggested to you previously.  Check the linker cmd file used for that project.  You will notice that flash API is copied to RAM.

    Thanks and regards,
    Vamsi

  • Kai,

    Did it help to clear the ITRAP issue?  Can I close this post now?

    Thanks and regards,

    Vamsi

  • Vamsi,

    thank you for your support and sorry for my late reply. As you said, the problem seems to be that both libraries were included in the project (FLASH and ROM). We have deleted the Flash file and hope to use the ROM application now, right?

    Thanks again and greetings,
    Kai

  • Kai,

    Thank you for the update.

    Sure, you can use the ROM flash API.  

    Can I close this post?  

    Thanks and regards,

    Vamsi

  • Can I close this post? 

    Yes, thanks!