diff --git a/bsp/bsp_task.c b/bsp/bsp_task.c index b00921c..43f4bdb 100644 --- a/bsp/bsp_task.c +++ b/bsp/bsp_task.c @@ -99,7 +99,7 @@ KitResult bsp_task_creat(TaskArray* task, uint8_t * name) { OS_ERR err; //CPU_STK *Task2Task_STK = (CPU_STK *)mymalloc(SRAMIN, task->stk_size * sizeof(CPU_STK)); - OSTaskCreate((OS_TCB *)task->task_tcb, + OSTaskCreate((OS_TCB *)task->task_tcb, (CPU_CHAR *)name, (OS_TASK_PTR )task_template, (void *)task, diff --git a/bsp/dsp_can.c b/bsp/dsp_can.c new file mode 100644 index 0000000..2b69d10 --- /dev/null +++ b/bsp/dsp_can.c @@ -0,0 +1,190 @@ +#include "drv_wdog.h" +#include "bsp_task.h" +#include "kit_time.h" +#include "kit_debug.h" +#include "bsp_malloc.h" +#include "os.h" + +CAN_HandleTypeDef g_canx_handler; /* CANx句柄 */ +CAN_TxHeaderTypeDef g_canx_txheader; /* 发送参数句柄 */ +CAN_RxHeaderTypeDef g_canx_rxheader; /* 接收参数句柄 */ + +/** + * @brief CAN初始化 + * @param tsjw : 重新同步跳跃时间单元.范围: 1~3; + * @param tbs2 : 时间段2的时间单元.范围: 1~8; + * @param tbs1 : 时间段1的时间单元.范围: 1~16; + * @param brp : 波特率分频器.范围: 1~1024; + * @note 以上4个参数, 在函数内部会减1, 所以, 任何一个参数都不能等于0 + * CAN挂在APB1上面, 其输入时钟频率为 Fpclk1 = PCLK1 = 36Mhz + * tq = brp * tpclk1; + * 波特率 = Fpclk1 / ((tbs1 + tbs2 + 1) * brp); + * 我们设置 can_init(1, 8, 9, 4, 1), 则CAN波特率为: + * 36M / ((8 + 9 + 1) * 4) = 500Kbps + * + * @param mode : CAN_MODE_NORMAL, 正常模式; + CAN_MODE_LOOPBACK,回环模式; + * @retval 0, 初始化成功; 其他, 初始化失败; + */ + /* can_init(CAN_SJW_1TQ, CAN_BS2_8TQ, CAN_BS1_9TQ, 4, CAN_MODE_LOOPBACK); /* CAN初始化, 回环模式, 波特率500Kbps */ +uint8_t can_init(uint32_t tsjw, uint32_t tbs2, uint32_t tbs1, uint16_t brp, uint32_t mode) +{ + g_canx_handler.Instance = CAN1; + g_canx_handler.Init.Prescaler = 4; /*brp; */ /* 分频系数(Fdiv)为brp+1 */ + g_canx_handler.Init.Mode = CAN_MODE_LOOPBACK; /*mode;*/ /* 模式设置 */ + g_canx_ha`ISABLE; /* 优先级由报文标识符决定 */ + + if (HAL_CAN_Init(&g_canx_handler) != HAL_OK) + { + return 1; + } + +#if CAN_RX0_INT_ENABLE + /* 使用中断接收 */ + __HAL_CAN_ENABLE_IT(&g_canx_handler, CAN_IT_RX_FIFO0_MSG_PENDING); /* FIFO0消息挂号中断允许 */ + HAL_NVIC_EnableIRQ(USB_LP_CAN1_RX0_IRQn); /* 使能CAN中断 */ + HAL_NVIC_SetPriority(USB_LP_CAN1_RX0_IRQn, 1, 0); /* 抢占优先级1,子优先级0 */ +#endif + + CAN_FilterTypeDef sFilterConfig; + + /*配置CAN过滤器*/ + sFilterConfig.FilterBank = 0; /* 过滤器0 */ + sFilterConfig.FilterMode = CAN_FILTERMODE_IDMASK; /* 标识符屏蔽位模式 */ + sFilterConfig.FilterScale = CAN_FILTERSCALE_32BIT; /* 长度32位位宽*/ + sFilterConfig.FilterIdHigh = 0x0000; /* 32位ID */ + sFilterConfig.FilterIdLow = 0x0000; + sFilterConfig.FilterMaskIdHigh = 0x0000; /* 32位MASK */ + sFilterConfig.FilterMaskIdLow = 0x0000; + sFilterConfig.FilterFIFOAssignment = CAN_FILTER_FIFO0; /* 过滤器0关联到FIFO0 */ + sFilterConfig.FilterActivation = CAN_FILTER_ENABLE; /* 激活滤波器0 */ + sFilterConfig.SlaveStartFilterBank = 14; + + /* 过滤器配置 */ + if (HAL_CAN_ConfigFilter(&g_canx_handler, &sFilterConfig) != HAL_OK) + { + return 2; + } + + /* 启动CAN外围设备 */ + if (HAL_CAN_Start(&g_canx_handler) != HAL_OK) + { + return 3; + } + + return 0; +} + +/** + * @brief CAN底层驱动,引脚配置,时钟配置,中断配置 + 此函数会被HAL_CAN_Init()调用 + * @param hcan:CAN句柄 + * @retval 无 + */ +void HAL_CAN_MspInit(CAN_HandleTypeDef *hcan) +{ + if (CAN1 == hcan->Instance) + { + CAN_RX_GPIO_CLK_ENABLE(); /* CAN_RX脚时钟使能 */ + CAN_TX_GPIO_CLK_ENABLE(); /* CAN_TX脚时钟使能 */ + __HAL_RCC_CAN1_CLK_ENABLE(); /* 使能CAN1时钟 */ + + GPIO_InitTypeDef gpio_initure; + + gpio_initure.Pin = CAN_TX_GPIO_PIN; + gpio_initure.Mode = GPIO_MODE_AF_PP; + gpio_initure.Pull = GPIO_PULLUP; + gpio_initure.Speed = GPIO_SPEED_FREQ_HIGH; + HAL_GPIO_Init(CAN_TX_GPIO_PORT, &gpio_initure); /* CAN_TX脚 模式设置 */ + + gpio_initure.Pin = CAN_RX_GPIO_PIN; + gpio_initure.Mode = GPIO_MODE_AF_INPUT; + HAL_GPIO_Init(CAN_RX_GPIO_PORT, &gpio_initure); /* CAN_RX脚 必须设置成输入模式 */ + } +} + +#if CAN_RX0_INT_ENABLE /* 使能RX0中断 */ + +/** + * @brief CAN RX0 中断服务函数 + * @note 处理CAN FIFO0的接收中断 + * @param 无 + * @retval 无 + */ +void USB_LP_CAN1_RX0_IRQHandler(void) +{ + uint8_t rxbuf[8]; + uint32_t id; + uint8_t ide, rtr, len; + + can_receive_msg(id, rxbuf); + printf("id:%d\r\n", g_canx_rxheader.StdId); + printf("ide:%d\r\n", g_canx_rxheader.IDE); + printf("rtr:%d\r\n", g_canx_rxheader.RTR); + printf("len:%d\r\n", g_canx_rxheader.DLC); + printf("rxbuf[0]:%d\r\n", rxbuf[0]); + printf("rxbuf[1]:%d\r\n", rxbuf[1]); + printf("rxbuf[2]:%d\r\n", rxbuf[2]); + printf("rxbuf[3]:%d\r\n", rxbuf[3]); + printf("rxbuf[4]:%d\r\n", rxbuf[4]); + printf("rxbuf[5]:%d\r\n", rxbuf[5]); + printf("rxbuf[6]:%d\r\n", rxbuf[6]); + printf("rxbuf[7]:%d\r\n", rxbuf[7]); +} + +#endif + +/** + * @brief CAN 发送一组数据 + * @note 发送格式固定为: 标准ID, 数据帧 + * @param id : 标准ID(11位) + * @retval 发送状态 0, 成功; 1, 失败; + */ +uint8_t can_send_msg(uint32_t id, uint8_t *msg, uint8_t len) +{ + uint32_t TxMailbox = CAN_TX_MAILBOX0; + + g_canx_txheader.StdId = id; /* 标准标识符 */ + g_canx_txheader.ExtId = id; /* 扩展标识符(29位) 标准标识符情况下,该成员无效*/ + g_canx_txheader.IDE = CAN_ID_STD; /* 使用标准标识符 */ + g_canx_txheader.RTR = CAN_RTR_DATA; /* 数据帧 */ + g_canx_txheader.DLC = len; + + if (HAL_CAN_AddTxMessage(&g_canx_handler, &g_canx_txheader, msg, &TxMailbox) != HAL_OK) /* 发送消息 */ + { + return 1; + } + + while (HAL_CAN_GetTxMailboxesFreeLevel(&g_canx_handler) != 3); /* 等待发送完成,所有邮箱(有三个邮箱)为空 */ + + return 0; +} + +/** + * @brief CAN 接收数据查询 + * @note 接收数据格式固定为: 标准ID, 数据帧 + * @param id : 要查询的 标准ID(11位) + * @param buf : 数据缓存区 + * @retval 接收结果 + * @arg 0 , 无数据被接收到; + * @arg 其他, 接收的数据长度 + */ +uint8_t can_receive_msg(uint32_t id, uint8_t *buf) +{ + if (HAL_CAN_GetRxFifoFillLevel(&g_canx_handler, CAN_RX_FIFO0) == 0) /* 没有接收到数据 */ + { + return 0; + } + + if (HAL_CAN_GetRxMessage(&g_canx_handler, CAN_RX_FIFO0, &g_canx_rxheader, buf) != HAL_OK) /* 读取数据 */ + { + return 0; + } + + if (g_canx_rxheader.StdId!= id || g_canx_rxheader.IDE != CAN_ID_STD || g_canx_rxheader.RTR != CAN_RTR_DATA) /* 接收到的ID不对 / 不是标准帧 / 不是数据帧 */ + { + return 0; + } + + return g_canx_rxheader.DLC; +} \ No newline at end of file diff --git a/bsp/dsp_can.h b/bsp/dsp_can.h new file mode 100644 index 0000000..1620b47 --- /dev/null +++ b/bsp/dsp_can.h @@ -0,0 +1,28 @@ +#ifndef __STMFLASH_H +#define __STMFLASH_H + +#include "drv_sys.h" + +/******************************************************************************************/ +/* CAN 引脚 定义 */ + +#define CAN_RX_GPIO_PORT GPIOA +#define CAN_RX_GPIO_PIN GPIO_PIN_11 +#define CAN_RX_GPIO_CLK_ENABLE() do{ __HAL_RCC_GPIOA_CLK_ENABLE(); }while(0) /* PA口时钟使能 */ + +#define CAN_TX_GPIO_PORT GPIOA +#define CAN_TX_GPIO_PIN GPIO_PIN_12 +#define CAN_TX_GPIO_CLK_ENABLE() do{ __HAL_RCC_GPIOA_CLK_ENABLE(); }while(0) /* PA口时钟使能 */ + +/******************************************************************************************/ + +/* CAN接收RX0中断使能 */ +#define CAN_RX0_INT_ENABLE 0 /* 0,不使能; 1,使能; */ + +/* 对外接口函数 */ +uint8_t can_receive_msg(uint32_t id, uint8_t *buf); /* CAN接收数据, 查询 */ +uint8_t can_send_msg(uint32_t id, uint8_t *msg, uint8_t len); /* CAN发送数据 */ +uint8_t can_init(uint32_t tsjw,uint32_t tbs2,uint32_t tbs1,uint16_t brp,uint32_t mode); /* CAN初始化 */ + +#endif + diff --git a/main/main.c b/main/main.c index 59b1dfd..41e998c 100644 --- a/main/main.c +++ b/main/main.c @@ -55,6 +55,14 @@ TASK_STATIC_INIT_CCM(poll_start_task2, 2, 5, 1000, 2000, NULL, poll_start_task2 int main(void) { +/* */ +/* can_init(CAN_SJW_1TQ, CAN_BS2_8TQ, CAN_BS1_9TQ, 4, CAN_MODE_LOOPBACK); /* CAN鍒濆鍖, 鍥炵幆妯″紡, 娉㈢壒鐜500Kbps */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ OS_ERR err; // KIT_DEBUG_PRINTF("12323 \r\n"); /* 鍏抽棴鎵鏈変腑鏂 */ diff --git a/prj/MDK-ARM/Objects/HF_BCU_APP.axf b/prj/MDK-ARM/Objects/HF_BCU_APP.axf deleted file mode 100644 index 8ba2d92..0000000 Binary files a/prj/MDK-ARM/Objects/HF_BCU_APP.axf and /dev/null differ diff --git a/prj/MDK-ARM/Objects/HF_BCU_APP.build_log.htm b/prj/MDK-ARM/Objects/HF_BCU_APP.build_log.htm index 04dbd52..7166d94 100644 --- a/prj/MDK-ARM/Objects/HF_BCU_APP.build_log.htm +++ b/prj/MDK-ARM/Objects/HF_BCU_APP.build_log.htm @@ -22,7 +22,7 @@ Dialog DLL: TCM.DLL V1.32.0.0

Project:

D:\GitWorkSpace\bs_bcu_app\prj\MDK-ARM\stm32f4xx_app.uvprojx -Project File Date: 11/11/2024 +Project File Date: 11/12/2024

Output:

*** Using Compiler 'V5.06 update 5 (build 528)', folder: 'D:\keil5\ARM\ARMCC\Bin' @@ -30,18 +30,32 @@ Build target 'stm32f407' compiling app_demo.c... "no source": Error: #5: cannot open source input file "..\..\app\app_demo.c": No such file or directory ..\..\app\app_demo.c: 0 warnings, 1 error -compiling drv_usart.c... +compiling dsp_can.c... +..\..\bsp\dsp_can.c(95): warning: #223-D: function "CAN_RX_GPIO_CLK_ENABLE" declared implicitly + CAN_RX_GPIO_CLK_ENABLE(); /* CAN_RX脚时钟使能 */ +..\..\bsp\dsp_can.c(96): warning: #223-D: function "CAN_TX_GPIO_CLK_ENABLE" declared implicitly + CAN_TX_GPIO_CLK_ENABLE(); /* CAN_TX脚时钟使能 */ +..\..\bsp\dsp_can.c(101): error: #20: identifier "CAN_TX_GPIO_PIN" is undefined + gpio_initure.Pin = CAN_TX_GPIO_PIN; +..\..\bsp\dsp_can.c(105): error: #20: identifier "CAN_TX_GPIO_PORT" is undefined + HAL_GPIO_Init(CAN_TX_GPIO_PORT, &gpio_initure); /* CAN_TX脚 模式设置 */ +..\..\bsp\dsp_can.c(107): error: #20: identifier "CAN_RX_GPIO_PIN" is undefined + gpio_initure.Pin = CAN_RX_GPIO_PIN; +..\..\bsp\dsp_can.c(108): error: #20: identifier "GPIO_MODE_AF_INPUT" is undefined + gpio_initure.Mode = GPIO_MODE_AF_INPUT; +..\..\bsp\dsp_can.c(109): error: #20: identifier "CAN_RX_GPIO_PORT" is undefined + HAL_GPIO_Init(CAN_RX_GPIO_PORT, &gpio_initure); /* CAN_RX脚 必须设置成输入模式 */ +..\..\bsp\dsp_can.c(197): warning: #1-D: last line of file ends without a newline + } +..\..\bsp\dsp_can.c: 3 warnings, 5 errors +compiling bsp_task.c... compiling main.c... ..\..\main\main.c(43): warning: #223-D: function "task1" declared implicitly task1(baseTime); ..\..\main\main.c(48): warning: #223-D: function "task2" declared implicitly task2(baseTime); ..\..\main\main.c: 2 warnings, 0 errors -linking... -Program Size: Code=18994 RO-data=962 RW-data=3876 ZI-data=1119436 -FromELF: creating hex file... -After Build - User command #1: fromelf --m32combined --output=HF_BCU_APP.s19 .\Objects\HF_BCU_APP.axf -".\Objects\HF_BCU_APP.axf" - 0 Error(s), 2 Warning(s). +".\Objects\HF_BCU_APP.axf" - 5 Error(s), 5 Warning(s).

Software Packages used:

@@ -55,7 +69,8 @@ Package Vendor: Keil D:\keil5\ARM\PACK\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include

Collection of Component Files used:

-Build Time Elapsed: 00:00:08 +Target not created. +Build Time Elapsed: 00:00:06 diff --git a/prj/MDK-ARM/Objects/bsp_task.crf b/prj/MDK-ARM/Objects/bsp_task.crf index 5f4fb7e..96f415b 100644 Binary files a/prj/MDK-ARM/Objects/bsp_task.crf and b/prj/MDK-ARM/Objects/bsp_task.crf differ diff --git a/prj/MDK-ARM/Objects/bsp_task.o b/prj/MDK-ARM/Objects/bsp_task.o index 09d098c..0cadfaf 100644 Binary files a/prj/MDK-ARM/Objects/bsp_task.o and b/prj/MDK-ARM/Objects/bsp_task.o differ diff --git a/prj/MDK-ARM/Objects/dsp_can.crf b/prj/MDK-ARM/Objects/dsp_can.crf new file mode 100644 index 0000000..00e647b Binary files /dev/null and b/prj/MDK-ARM/Objects/dsp_can.crf differ diff --git a/prj/MDK-ARM/Objects/dsp_can.d b/prj/MDK-ARM/Objects/dsp_can.d new file mode 100644 index 0000000..9c7110b --- /dev/null +++ b/prj/MDK-ARM/Objects/dsp_can.d @@ -0,0 +1,97 @@ +.\objects\dsp_can.o: ..\..\bsp\dsp_can.c +.\objects\dsp_can.o: ..\..\drv\drv_wdog.h +.\objects\dsp_can.o: D:\keil5\ARM\ARMCC\Bin\..\include\stdint.h +.\objects\dsp_can.o: ..\..\bsp\bsp_task.h +.\objects\dsp_can.o: ..\..\kit\kit_macro.h +.\objects\dsp_can.o: D:\keil5\ARM\ARMCC\Bin\..\include\stddef.h +.\objects\dsp_can.o: D:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h +.\objects\dsp_can.o: ..\..\system\uC-OS3\uC-OS3\Source\os.h +.\objects\dsp_can.o: ..\..\system\uC-OS3\uC-OS3\Cfg\Template\os_cfg.h +.\objects\dsp_can.o: ..\..\system\uC-OS3\uC-OS3\Cfg\Template\os_cfg_app.h +.\objects\dsp_can.o: ..\..\system\uC-OS3\uC-CPU\cpu_core.h +.\objects\dsp_can.o: ..\..\system\uC-OS3\uC-CPU\ARM-Cortex-M\ARMv7-M\ARM\cpu.h +.\objects\dsp_can.o: ..\..\system\uC-OS3\uC-CPU\cpu_def.h +.\objects\dsp_can.o: ..\..\system\uC-OS3\uC-CPU\Cfg\Template\cpu_cfg.h +.\objects\dsp_can.o: ..\..\system\uC-OS3\uC-LIB\lib_def.h +.\objects\dsp_can.o: ..\..\system\uC-OS3\uC-LIB\lib_mem.h +.\objects\dsp_can.o: ..\..\system\uC-OS3\uC-CPU\cpu_core.h +.\objects\dsp_can.o: ..\..\system\uC-OS3\uC-LIB\Cfg\Template\lib_cfg.h +.\objects\dsp_can.o: ..\..\system\uC-OS3\uC-LIB\lib_str.h +.\objects\dsp_can.o: ..\..\system\uC-OS3\uC-LIB\lib_ascii.h +.\objects\dsp_can.o: ..\..\system\uC-OS3\uC-OS3\Source\os_type.h +.\objects\dsp_can.o: ..\..\system\uC-OS3\uC-OS3\Ports\ARM-Cortex-M\ARMv7-M\ARM\os_cpu.h +.\objects\dsp_can.o: ..\..\system\uC-OS3\uC-OS3\Source\os_trace.h +.\objects\dsp_can.o: ..\..\kit\kit_time.h +.\objects\dsp_can.o: D:\keil5\ARM\ARMCC\Bin\..\include\time.h +.\objects\dsp_can.o: ..\..\kit\kit_debug.h +.\objects\dsp_can.o: ..\..\system\segger\SEGGER\SEGGER_RTT.h +.\objects\dsp_can.o: ..\..\system\segger\Config\SEGGER_RTT_Conf.h +.\objects\dsp_can.o: D:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h +.\objects\dsp_can.o: D:\keil5\ARM\ARMCC\Bin\..\include\stdarg.h +.\objects\dsp_can.o: ..\..\bsp\bsp_malloc.h +.\objects\dsp_can.o: ..\..\drv\drv_sys.h +.\objects\dsp_can.o: ..\..\system\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h +.\objects\dsp_can.o: ..\..\system\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h +.\objects\dsp_can.o: ..\..\system\CMSIS\Include\core_cm4.h +.\objects\dsp_can.o: ..\..\system\CMSIS\Include\cmsis_version.h +.\objects\dsp_can.o: ..\..\system\CMSIS\Include\cmsis_compiler.h +.\objects\dsp_can.o: ..\..\system\CMSIS\Include\cmsis_armcc.h +.\objects\dsp_can.o: ..\..\system\CMSIS\Include\mpu_armv7.h +.\objects\dsp_can.o: ..\..\system\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h +.\objects\dsp_can.o: ..\..\system\stm32f4xx_hal_conf.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h +.\objects\dsp_can.o: ..\..\system\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\Legacy/stm32_hal_legacy.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_adc.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_ll_adc.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_adc_ex.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_can.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_crc.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cryp.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dac.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dac_ex.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dcmi.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dcmi_ex.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_sram.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_ll_fsmc.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_nor.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_nand.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pccard.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_hash.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_i2c.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_i2c_ex.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_i2s.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_i2s_ex.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_iwdg.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rng.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rtc.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rtc_ex.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_sd.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_ll_sdmmc.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_usart.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_irda.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_smartcard.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_wwdg.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pcd.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_ll_usb.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pcd_ex.h +.\objects\dsp_can.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_hcd.h +.\objects\dsp_can.o: ..\..\system\CMSIS\Include\core_cm4.h diff --git a/prj/MDK-ARM/Objects/main.crf b/prj/MDK-ARM/Objects/main.crf index 892522a..cfd0d88 100644 Binary files a/prj/MDK-ARM/Objects/main.crf and b/prj/MDK-ARM/Objects/main.crf differ diff --git a/prj/MDK-ARM/Objects/main.o b/prj/MDK-ARM/Objects/main.o index 7b34241..ce909fa 100644 Binary files a/prj/MDK-ARM/Objects/main.o and b/prj/MDK-ARM/Objects/main.o differ diff --git a/prj/MDK-ARM/Objects/stm32f4xx_app_stm32f407.dep b/prj/MDK-ARM/Objects/stm32f4xx_app_stm32f407.dep index 98146b1..f5cecbc 100644 --- a/prj/MDK-ARM/Objects/stm32f4xx_app_stm32f407.dep +++ b/prj/MDK-ARM/Objects/stm32f4xx_app_stm32f407.dep @@ -1,5 +1,5 @@ Dependencies for Project 'stm32f4xx_app', Target 'stm32f407': (DO NOT MODIFY !) -F (..\..\main\main.c)(0x6731C308)(--c99 -c --cpu Cortex-M4.fp -g -O0 --apcs=interwork --split_sections -I ..\..\app -I ..\..\bsp -I ..\..\drv -I ..\..\kit -I ..\..\table -I ..\..\logic -I ..\..\system -I ..\..\system\CMSIS\Device\ST\STM32F4xx\Include -I ..\..\system\CMSIS\Include -I ..\..\system\STM32F4xx_HAL_Driver\Inc -I ..\..\system\uC-OS3\uC-CPU\Cfg\Template -I ..\..\system\uC-OS3\uC-CPU\ARM-Cortex-M\ARMv7-M\ARM -I ..\..\system\uC-OS3\uC-CPU -I ..\..\system\uC-OS3\uC-LIB\Cfg\Template -I ..\..\system\uC-OS3\uC-LIB -I ..\..\system\uC-OS3\uC-OS3\Cfg\Template -I ..\..\system\uC-OS3\uC-OS3\Ports\ARM-Cortex-M\ARMv7-M\ARM -I ..\..\system\uC-OS3\uC-OS3\Source -I ..\..\system\segger\SEGGER -I ..\..\system\segger\Config -I.\RTE\_stm32f407 -ID:\keil5\ARM\PACK\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -ID:\keil5\ARM\CMSIS\Include -D__UVISION_VERSION="524" -DSTM32F407xx -DUSE_HAL_DRIVER -DSTM32F407xx -DUCOS3 -DDEBUG_PRINTF_RTT -o .\objects\main.o --omf_browse .\objects\main.crf --depend .\objects\main.d) +F (..\..\main\main.c)(0x6731D51E)(--c99 -c --cpu Cortex-M4.fp -g -O0 --apcs=interwork --split_sections -I ..\..\app -I ..\..\bsp -I ..\..\drv -I ..\..\kit -I ..\..\table -I ..\..\logic -I ..\..\system -I ..\..\system\CMSIS\Device\ST\STM32F4xx\Include -I ..\..\system\CMSIS\Include -I ..\..\system\STM32F4xx_HAL_Driver\Inc -I ..\..\system\uC-OS3\uC-CPU\Cfg\Template -I ..\..\system\uC-OS3\uC-CPU\ARM-Cortex-M\ARMv7-M\ARM -I ..\..\system\uC-OS3\uC-CPU -I ..\..\system\uC-OS3\uC-LIB\Cfg\Template -I ..\..\system\uC-OS3\uC-LIB -I ..\..\system\uC-OS3\uC-OS3\Cfg\Template -I ..\..\system\uC-OS3\uC-OS3\Ports\ARM-Cortex-M\ARMv7-M\ARM -I ..\..\system\uC-OS3\uC-OS3\Source -I ..\..\system\segger\SEGGER -I ..\..\system\segger\Config -I.\RTE\_stm32f407 -ID:\keil5\ARM\PACK\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -ID:\keil5\ARM\CMSIS\Include -D__UVISION_VERSION="524" -DSTM32F407xx -DUSE_HAL_DRIVER -DSTM32F407xx -DUCOS3 -DDEBUG_PRINTF_RTT -o .\objects\main.o --omf_browse .\objects\main.crf --depend .\objects\main.d) I (..\..\kit\kit_debug.h)(0x67317724) I (..\..\kit\kit_time.h)(0x67317724) I (D:\keil5\ARM\ARMCC\include\time.h)(0x588B8344) @@ -627,7 +627,7 @@ I (..\..\system\segger\SEGGER\SEGGER_RTT.h)(0x67317724) I (..\..\system\segger\Config\SEGGER_RTT_Conf.h)(0x67317724) I (D:\keil5\ARM\ARMCC\include\stdlib.h)(0x588B8344) I (D:\keil5\ARM\ARMCC\include\stdarg.h)(0x588B8344) -F (..\..\bsp\bsp_task.c)(0x67317724)(--c99 -c --cpu Cortex-M4.fp -g -O0 --apcs=interwork --split_sections -I ..\..\app -I ..\..\bsp -I ..\..\drv -I ..\..\kit -I ..\..\table -I ..\..\logic -I ..\..\system -I ..\..\system\CMSIS\Device\ST\STM32F4xx\Include -I ..\..\system\CMSIS\Include -I ..\..\system\STM32F4xx_HAL_Driver\Inc -I ..\..\system\uC-OS3\uC-CPU\Cfg\Template -I ..\..\system\uC-OS3\uC-CPU\ARM-Cortex-M\ARMv7-M\ARM -I ..\..\system\uC-OS3\uC-CPU -I ..\..\system\uC-OS3\uC-LIB\Cfg\Template -I ..\..\system\uC-OS3\uC-LIB -I ..\..\system\uC-OS3\uC-OS3\Cfg\Template -I ..\..\system\uC-OS3\uC-OS3\Ports\ARM-Cortex-M\ARMv7-M\ARM -I ..\..\system\uC-OS3\uC-OS3\Source -I ..\..\system\segger\SEGGER -I ..\..\system\segger\Config -I.\RTE\_stm32f407 -ID:\keil5\ARM\PACK\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -ID:\keil5\ARM\CMSIS\Include -D__UVISION_VERSION="524" -DSTM32F407xx -DUSE_HAL_DRIVER -DSTM32F407xx -DUCOS3 -DDEBUG_PRINTF_RTT -o .\objects\bsp_task.o --omf_browse .\objects\bsp_task.crf --depend .\objects\bsp_task.d) +F (..\..\bsp\bsp_task.c)(0x6732BF62)(--c99 -c --cpu Cortex-M4.fp -g -O0 --apcs=interwork --split_sections -I ..\..\app -I ..\..\bsp -I ..\..\drv -I ..\..\kit -I ..\..\table -I ..\..\logic -I ..\..\system -I ..\..\system\CMSIS\Device\ST\STM32F4xx\Include -I ..\..\system\CMSIS\Include -I ..\..\system\STM32F4xx_HAL_Driver\Inc -I ..\..\system\uC-OS3\uC-CPU\Cfg\Template -I ..\..\system\uC-OS3\uC-CPU\ARM-Cortex-M\ARMv7-M\ARM -I ..\..\system\uC-OS3\uC-CPU -I ..\..\system\uC-OS3\uC-LIB\Cfg\Template -I ..\..\system\uC-OS3\uC-LIB -I ..\..\system\uC-OS3\uC-OS3\Cfg\Template -I ..\..\system\uC-OS3\uC-OS3\Ports\ARM-Cortex-M\ARMv7-M\ARM -I ..\..\system\uC-OS3\uC-OS3\Source -I ..\..\system\segger\SEGGER -I ..\..\system\segger\Config -I.\RTE\_stm32f407 -ID:\keil5\ARM\PACK\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -ID:\keil5\ARM\CMSIS\Include -D__UVISION_VERSION="524" -DSTM32F407xx -DUSE_HAL_DRIVER -DSTM32F407xx -DUCOS3 -DDEBUG_PRINTF_RTT -o .\objects\bsp_task.o --omf_browse .\objects\bsp_task.crf --depend .\objects\bsp_task.d) I (..\..\drv\drv_wdog.h)(0x67317724) I (D:\keil5\ARM\ARMCC\include\stdint.h)(0x588B8344) I (..\..\bsp\bsp_task.h)(0x67317724) @@ -859,6 +859,101 @@ I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_ll_usb.h)(0x67317724) I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pcd_ex.h)(0x67317724) I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_hcd.h)(0x67317724) F (..\..\bsp\bsp_spi.h)(0x67317B34)() +F (..\..\bsp\dsp_can.c)(0x67332D47)(--c99 -c --cpu Cortex-M4.fp -g -O0 --apcs=interwork --split_sections -I ..\..\app -I ..\..\bsp -I ..\..\drv -I ..\..\kit -I ..\..\table -I ..\..\logic -I ..\..\system -I ..\..\system\CMSIS\Device\ST\STM32F4xx\Include -I ..\..\system\CMSIS\Include -I ..\..\system\STM32F4xx_HAL_Driver\Inc -I ..\..\system\uC-OS3\uC-CPU\Cfg\Template -I ..\..\system\uC-OS3\uC-CPU\ARM-Cortex-M\ARMv7-M\ARM -I ..\..\system\uC-OS3\uC-CPU -I ..\..\system\uC-OS3\uC-LIB\Cfg\Template -I ..\..\system\uC-OS3\uC-LIB -I ..\..\system\uC-OS3\uC-OS3\Cfg\Template -I ..\..\system\uC-OS3\uC-OS3\Ports\ARM-Cortex-M\ARMv7-M\ARM -I ..\..\system\uC-OS3\uC-OS3\Source -I ..\..\system\segger\SEGGER -I ..\..\system\segger\Config -I.\RTE\_stm32f407 -ID:\keil5\ARM\PACK\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -ID:\keil5\ARM\CMSIS\Include -D__UVISION_VERSION="524" -DSTM32F407xx -DUSE_HAL_DRIVER -DSTM32F407xx -DUCOS3 -DDEBUG_PRINTF_RTT -o .\objects\dsp_can.o --omf_browse .\objects\dsp_can.crf --depend .\objects\dsp_can.d) +I (..\..\drv\drv_wdog.h)(0x67317724) +I (D:\keil5\ARM\ARMCC\include\stdint.h)(0x588B8344) +I (..\..\bsp\bsp_task.h)(0x67317724) +I (..\..\kit\kit_macro.h)(0x67317724) +I (D:\keil5\ARM\ARMCC\include\stddef.h)(0x588B8344) +I (D:\keil5\ARM\ARMCC\include\stdbool.h)(0x588B8344) +I (..\..\system\uC-OS3\uC-OS3\Source\os.h)(0x67317724) +I (..\..\system\uC-OS3\uC-OS3\Cfg\Template\os_cfg.h)(0x67317724) +I (..\..\system\uC-OS3\uC-OS3\Cfg\Template\os_cfg_app.h)(0x67317724) +I (..\..\system\uC-OS3\uC-CPU\cpu_core.h)(0x67317724) +I (..\..\system\uC-OS3\uC-CPU\ARM-Cortex-M\ARMv7-M\ARM\cpu.h)(0x67317724) +I (..\..\system\uC-OS3\uC-CPU\cpu_def.h)(0x67317724) +I (..\..\system\uC-OS3\uC-CPU\Cfg\Template\cpu_cfg.h)(0x67317724) +I (..\..\system\uC-OS3\uC-LIB\lib_def.h)(0x67317724) +I (..\..\system\uC-OS3\uC-LIB\lib_mem.h)(0x67317724) +I (..\..\system\uC-OS3\uC-LIB\Cfg\Template\lib_cfg.h)(0x67317724) +I (..\..\system\uC-OS3\uC-LIB\lib_str.h)(0x67317724) +I (..\..\system\uC-OS3\uC-LIB\lib_ascii.h)(0x67317724) +I (..\..\system\uC-OS3\uC-OS3\Source\os_type.h)(0x67317724) +I (..\..\system\uC-OS3\uC-OS3\Ports\ARM-Cortex-M\ARMv7-M\ARM\os_cpu.h)(0x67317724) +I (..\..\system\uC-OS3\uC-OS3\Source\os_trace.h)(0x67317724) +I (..\..\kit\kit_time.h)(0x67317724) +I (D:\keil5\ARM\ARMCC\include\time.h)(0x588B8344) +I (..\..\kit\kit_debug.h)(0x67317724) +I (..\..\system\segger\SEGGER\SEGGER_RTT.h)(0x67317724) +I (..\..\system\segger\Config\SEGGER_RTT_Conf.h)(0x67317724) +I (D:\keil5\ARM\ARMCC\include\stdlib.h)(0x588B8344) +I (D:\keil5\ARM\ARMCC\include\stdarg.h)(0x588B8344) +I (..\..\bsp\bsp_malloc.h)(0x67317724) +I (..\..\drv\drv_sys.h)(0x67317724) +I (..\..\system\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h)(0x67317724) +I (..\..\system\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h)(0x67317724) +I (..\..\system\CMSIS\Include\core_cm4.h)(0x67317724) +I (..\..\system\CMSIS\Include\cmsis_version.h)(0x67317724) +I (..\..\system\CMSIS\Include\cmsis_compiler.h)(0x67317724) +I (..\..\system\CMSIS\Include\cmsis_armcc.h)(0x67317724) +I (..\..\system\CMSIS\Include\mpu_armv7.h)(0x67317724) +I (..\..\system\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x67317724) +I (..\..\system\stm32f4xx_hal_conf.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\Legacy/stm32_hal_legacy.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_adc.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_ll_adc.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_adc_ex.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_can.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_crc.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cryp.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dac.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dac_ex.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dcmi.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dcmi_ex.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_sram.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_ll_fsmc.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_nor.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_nand.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pccard.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_hash.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_i2c.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_i2c_ex.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_i2s.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_i2s_ex.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_iwdg.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rng.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rtc.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rtc_ex.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_sd.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_ll_sdmmc.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_usart.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_irda.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_smartcard.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_wwdg.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pcd.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_ll_usb.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pcd_ex.h)(0x67317724) +I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_hcd.h)(0x67317724) +F (..\..\bsp\dsp_can.h)(0x67332D47)() F (..\..\system\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c)(0x67317724)(--c99 -c --cpu Cortex-M4.fp -g -O0 --apcs=interwork --split_sections -I ..\..\app -I ..\..\bsp -I ..\..\drv -I ..\..\kit -I ..\..\table -I ..\..\logic -I ..\..\system -I ..\..\system\CMSIS\Device\ST\STM32F4xx\Include -I ..\..\system\CMSIS\Include -I ..\..\system\STM32F4xx_HAL_Driver\Inc -I ..\..\system\uC-OS3\uC-CPU\Cfg\Template -I ..\..\system\uC-OS3\uC-CPU\ARM-Cortex-M\ARMv7-M\ARM -I ..\..\system\uC-OS3\uC-CPU -I ..\..\system\uC-OS3\uC-LIB\Cfg\Template -I ..\..\system\uC-OS3\uC-LIB -I ..\..\system\uC-OS3\uC-OS3\Cfg\Template -I ..\..\system\uC-OS3\uC-OS3\Ports\ARM-Cortex-M\ARMv7-M\ARM -I ..\..\system\uC-OS3\uC-OS3\Source -I ..\..\system\segger\SEGGER -I ..\..\system\segger\Config -I.\RTE\_stm32f407 -ID:\keil5\ARM\PACK\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -ID:\keil5\ARM\CMSIS\Include -D__UVISION_VERSION="524" -DSTM32F407xx -DUSE_HAL_DRIVER -DSTM32F407xx -DUCOS3 -DDEBUG_PRINTF_RTT -o .\objects\stm32f4xx_hal.o --omf_browse .\objects\stm32f4xx_hal.crf --depend .\objects\stm32f4xx_hal.d) I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x67317724) I (..\..\system\stm32f4xx_hal_conf.h)(0x67317724) diff --git a/prj/MDK-ARM/stm32f4xx_app.uvguix.Cola b/prj/MDK-ARM/stm32f4xx_app.uvguix.Cola index 7b17115..7002278 100644 --- a/prj/MDK-ARM/stm32f4xx_app.uvguix.Cola +++ b/prj/MDK-ARM/stm32f4xx_app.uvguix.Cola @@ -11,7 +11,7 @@ 38003 Registers - 115 67 + 115 235 346 @@ -80,28 +80,28 @@ 44 - 0 - 1 + 2 + 3 - -1 - -1 + -32000 + -32000 -1 -1 - 164 - 285 - 1192 - 754 + 84 + 266 + 1349 + 947 0 - 285 - 01000000040000000100000001000000010000000100000000000000020000000000000001000000010000000000000028000000280000000100000001000000000000000100000055443A5C476974576F726B53706163655C62735F6263755F6170705C73797374656D5C75432D4F53335C75432D4F53335C506F7274735C41524D2D436F727465782D4D5C41524D76372D4D5C6F735F6370755F632E63000000000A6F735F6370755F632E6300000000F0A0A100FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD5000100000000000000020000009102000012010000A00400008D020000 + 368 + 01000000040000000100000001000000010000000100000000000000020000000000000001000000010000000000000028000000280000000100000003000000000000000100000026443A5C476974576F726B53706163655C62735F6263755F6170705C6D61696E5C6D61696E2E6300000000066D61696E2E6300000000FFDC7800FFFFFFFF28443A5C476974576F726B53706163655C62735F6263755F6170705C6273705C6473705F63616E2E6300000000096473705F63616E2E6300000000D9ADC200FFFFFFFF28443A5C476974576F726B53706163655C62735F6263755F6170705C6273705C6473705F63616E2E6800000000096473705F63616E2E6800000000BECEA100FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD5000100000000000000020000006F000000660000000006000095020000 @@ -124,7 +124,7 @@ 16 - E70100009000000093050000FE000000 + D6010000C20000008205000030010000 @@ -140,7 +140,7 @@ 0 16 - 030000006600000065010000B1010000 + 03000000660000006800000065020000 16 @@ -160,7 +160,7 @@ 0 16 - 030000006600000065010000B1010000 + 03000000660000006800000065020000 16 @@ -440,7 +440,7 @@ 0 16 - 030000006600000065010000B1010000 + 03000000660000006800000065020000 16 @@ -460,7 +460,7 @@ 0 16 - 030000006600000065010000B1010000 + 03000000660000006800000065020000 16 @@ -480,7 +480,7 @@ 0 16 - 00000000E20100007B03000014020000 + 0300000099020000FD050000F5020000 16 @@ -510,7 +510,7 @@ 199 199 - 0 + 1 0 0 0 @@ -520,7 +520,7 @@ 0 16 - 03000000E5010000FB02000023020000 + 0300000099020000FD050000F5020000 16 @@ -1120,7 +1120,7 @@ 0 16 - 0300000066000000BD0000007A020000 + 0300000066000000650100007C020000 16 @@ -1130,7 +1130,7 @@ 38007 38007 - 0 + 1 0 0 0 @@ -1140,7 +1140,7 @@ 0 16 - 03000000E5010000FB02000023020000 + 0300000099020000FD050000F5020000 16 @@ -1160,7 +1160,7 @@ 0 16 - 03000000E5010000FB02000023020000 + 030000009902000028040000F5020000 16 @@ -1220,7 +1220,7 @@ 0 16 - 03000000E5010000FB02000023020000 + 030000009902000028040000F5020000 16 @@ -1240,7 +1240,7 @@ 0 16 - 03000000E5010000FB02000023020000 + 030000009902000028040000F5020000 16 @@ -1660,7 +1660,7 @@ 0 16 - 00000000000000007B0300001C000000 + 0000000000000000B70300001C000000 16 @@ -1680,7 +1680,7 @@ 0 16 - 00000000140200007B03000027020000 + 000000000E0300000006000021030000 16 @@ -1749,14 +1749,14 @@ 3236 - 000000000B000000000000000020000000000000FFFFFFFFFFFFFFFFC4000000BD00000070040000C1000000000000000100000004000000010000000000000000000000FFFFFFFF06000000CB00000057010000CC000000F08B00005A01000079070000FFFF02000B004354616262656450616E650020000000000000E70100009000000093050000FE000000C40000004F00000070040000BD0000000000000040280046060000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFFAC0300004F000000B0030000A5010000000000000200000004000000010000000000000000000000FFFFFFFF2B000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C3000001800040000000000000D30400009000000093050000E6010000B00300004F00000070040000A501000000000000404100462B0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFF680100004F0000006C010000CA0100000100000002000010040000000100000000000000F5050000FFFFFFFF05000000ED0300006D000000C3000000C400000073940000018000100000010000002301000090000000E3010000D4020000000000004F00000068010000CA0100000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF0000000091010000700400009501000000000000010000000400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0F0000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB0900000180008000000000000023010000D601000093050000580200000000000095010000700400001702000000000000404100460F0000001343616C6C20537461636B202B204C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFF38020000950100003C0200001702000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF00000000CA0100007B030000CE0100000100000001000010040000000100000076FEFFFF2A010000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF010000779400000180008000000100000023010000D8020000210400004603000000000000CE0100007B030000140200000000000040820056060000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0E536F757263652042726F7773657200000000D201000001000000FFFFFFFFFFFFFFFF1346696E6420416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0742726F77736572000000007794000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000 + 000000000B000000000000000020000000000000FFFFFFFFFFFFFFFFC4000000BD00000070040000C1000000000000000100000004000000010000000000000000000000FFFFFFFF06000000CB00000057010000CC000000F08B00005A01000079070000FFFF02000B004354616262656450616E650020000000000000D6010000C20000008205000030010000C40000004F00000070040000BD0000000000000040280046060000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFFAC0300004F000000B0030000A5010000000000000200000004000000010000000000000000000000FFFFFFFF2B000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C3000001800040000000000000C2040000C20000008205000018020000B00300004F00000070040000A501000000000000404100462B0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFF6B0000004F0000006F0000007E020000010000000200001004000000010000009AFEFFFF8F040000FFFFFFFF05000000ED0300006D000000C3000000C4000000739400000180001000000100000012010000C20000007A02000008030000000000004F0000006B0000007E0200000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF0000000091010000700400009501000000000000010000000400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0F0000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB090000018000800000000000001201000008020000820500008A0200000000000095010000700400001702000000000000404100460F0000001343616C6C20537461636B202B204C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFF38020000950100003C0200001702000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF000000007E0200000006000082020000010000000100001004000000010000007AFEFFFF2E010000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF0100007794000001800080000001000000120100000C0300003D050000980300000000000082020000000600000E0300000000000040820056060000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657301000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0E536F757263652042726F7773657200000000D201000001000000FFFFFFFFFFFFFFFF1346696E6420416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0742726F77736572010000007794000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000 59392 File - 2362 - 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000000004000000000000000000000000000000000100000001000000018022E100000000000005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000004000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000000460000000000000000000000000000000001000000010000000180FE880000000000004500000000000000000000000000000000010000000100000001800B810000000000001300000000000000000000000000000000010000000100000001800C810000000000001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050000000001C5F5F48414C5F5243435F4750494F415F434C4B5F454E41424C452829960000000000000014000A307830313030303030300C4F535461736B437265617465064F535461736B094F535461736B53746B064F53496E6974064F535F45525204766F696406637265617465194F53536166657479437269746963616C5374617274466C616712554152545F48616E646C65547970654465660D55534152545F5245435F4C454E001055534152545F52585F4750494F5F41461255534152545F52585F4750494F5F504F5254057573617274145441534B5F5354415449435F494E49545F43434D1C5F5F48414C5F5243435F4750494F415F434C4B5F454E41424C452829065553415254310555534152541355534152545F55585F434C4B5F454E41424C450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020000001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65AC030000 + 2363 + 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000000004000000000000000000000000000000000100000001000000018022E100000000000005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000000000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000000460000000000000000000000000000000001000000010000000180FE880000000000004500000000000000000000000000000000010000000100000001800B810000000000001300000000000000000000000000000000010000000100000001800C810000000000001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE80300000000000000000000000000000000000000000000000100000001000000960000000200205000000000057561727432960000000000000014000575617274320426657272094F5354696D65446C79074F5354696D6544064F5354696D6505656E646966086261736554696D650E67657443757272656E7454696D65105461736B4765745469636B436F756E74145441534B5F5354415449435F494E49545F43434D18706F6C6C5F73746172745F7461736B315F68616E646C65720C4F535461736B43726561746504766F6964154F535F4350555F5379735469636B48616E646C65720F4F535461736B4372656174654578741355534152545F55585F434C4B5F454E41424C450F4750494F5F4D4F44455F41465F50501A5F5F48414C5F5243435F4750494F415F434C4B5F454E41424C4517444D41315F53747265616D305F49525148616E646C6572035243430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020000001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65AC030000 1423 @@ -1805,6 +1805,1707 @@ 864 + + 1 + Debug + + -1 + -1 + 1 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + C40000004F00000000060000BD000000 + + + 16 + C40000006600000070040000D4000000 + + + + 1005 + 1005 + 1 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 0300000066000000BD0000006F020000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 109 + 109 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 0300000066000000BD00000078010000 + + + 16 + 220000003900000005010000F5010000 + + + + 1465 + 1465 + 1 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 07030000A3020000FD050000F5020000 + + + 16 + 22000000390000005A020000A7000000 + + + + 1466 + 1466 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 07030000A302000035050000F5020000 + + + 16 + 22000000390000005A020000A7000000 + + + + 1467 + 1467 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 07030000A302000035050000F5020000 + + + 16 + 22000000390000005A020000A7000000 + + + + 1468 + 1468 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 07030000A302000035050000F5020000 + + + 16 + 22000000390000005A020000A7000000 + + + + 1506 + 1506 + 0 + 0 + 0 + 0 + 32767 + 0 + 16384 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 1913 + 1913 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + C7000000660000006D040000A4000000 + + + 16 + 22000000390000005A020000A7000000 + + + + 1935 + 1935 + 1 + 0 + 0 + 0 + 32767 + 0 + 32768 + 0 + + 16 + 07030000A3020000FD050000F5020000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 1936 + 1936 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 07030000A302000035050000F5020000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 1937 + 1937 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 07030000A302000035050000F5020000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 1939 + 1939 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 07030000A302000035050000F5020000 + + + 16 + 22000000390000005A020000A7000000 + + + + 1940 + 1940 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 07030000A302000035050000F5020000 + + + 16 + 22000000390000005A020000A7000000 + + + + 1941 + 1941 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 07030000A302000035050000F5020000 + + + 16 + 22000000390000005A020000A7000000 + + + + 1942 + 1942 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 07030000A302000035050000F5020000 + + + 16 + 22000000390000005A020000A7000000 + + + + 195 + 195 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 0300000066000000BD00000078010000 + + + 16 + 220000003900000005010000F5010000 + + + + 196 + 196 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 0300000066000000BD00000078010000 + + + 16 + 220000003900000005010000F5010000 + + + + 197 + 197 + 0 + 0 + 0 + 0 + 32767 + 0 + 32768 + 0 + + 16 + 03000000C00100006D040000FE010000 + + + 16 + 22000000390000005A020000A7000000 + + + + 198 + 198 + 1 + 0 + 0 + 0 + 32767 + 0 + 32768 + 0 + + 16 + 000000008C020000000300000E030000 + + + 16 + 22000000390000005A020000A7000000 + + + + 199 + 199 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 03000000C00100006D040000FE010000 + + + 16 + 22000000390000005A020000A7000000 + + + + 203 + 203 + 1 + 0 + 0 + 0 + 32767 + 0 + 8192 + 0 + + 16 + C40000006300000000060000BD000000 + + + 16 + 22000000390000005A020000A7000000 + + + + 204 + 204 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + C7000000660000006D040000A4000000 + + + 16 + 22000000390000005A020000A7000000 + + + + 221 + 221 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 00000000000000000000000000000000 + + + 16 + 0A0000000A0000006E0000006E000000 + + + + 2506 + 2506 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 2507 + 2507 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 07030000A302000035050000F5020000 + + + 16 + 22000000390000005A020000A7000000 + + + + 343 + 343 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + C7000000660000006D040000A4000000 + + + 16 + 22000000390000005A020000A7000000 + + + + 346 + 346 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + C7000000660000006D040000A4000000 + + + 16 + 22000000390000005A020000A7000000 + + + + 35824 + 35824 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + C7000000660000006D040000A4000000 + + + 16 + 22000000390000005A020000A7000000 + + + + 35885 + 35885 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35886 + 35886 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35887 + 35887 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35888 + 35888 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35889 + 35889 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35890 + 35890 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35891 + 35891 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35892 + 35892 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35893 + 35893 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35894 + 35894 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35895 + 35895 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35896 + 35896 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35897 + 35897 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35898 + 35898 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35899 + 35899 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35900 + 35900 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35901 + 35901 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35902 + 35902 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35903 + 35903 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35904 + 35904 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 35905 + 35905 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 38003 + 38003 + 1 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 0300000066000000BD0000006F020000 + + + 16 + 220000003900000005010000F5010000 + + + + 38007 + 38007 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 03000000C00100006D040000FE010000 + + + 16 + 22000000390000005A020000A7000000 + + + + 436 + 436 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 03000000C00100006D040000FE010000 + + + 16 + 220000003900000005010000F5010000 + + + + 437 + 437 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 07030000A302000035050000F5020000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 440 + 440 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 07030000A302000035050000F5020000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 463 + 463 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 03000000C00100006D040000FE010000 + + + 16 + 220000003900000005010000F5010000 + + + + 466 + 466 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 03000000C00100006D040000FE010000 + + + 16 + 220000003900000005010000F5010000 + + + + 50000 + 50000 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50001 + 50001 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50002 + 50002 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50003 + 50003 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50004 + 50004 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50005 + 50005 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50006 + 50006 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50007 + 50007 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50008 + 50008 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50009 + 50009 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50010 + 50010 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50011 + 50011 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50012 + 50012 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50013 + 50013 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50014 + 50014 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50015 + 50015 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50016 + 50016 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50017 + 50017 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50018 + 50018 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 50019 + 50019 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + B3030000660000006D0400008C010000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 59392 + 59392 + 1 + 0 + 0 + 0 + 940 + 0 + 8192 + 0 + + 16 + 0000000000000000B70300001C000000 + + + 16 + 0A0000000A0000006E0000006E000000 + + + + 59393 + 0 + 1 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 000000000E0300000006000021030000 + + + 16 + 0A0000000A0000006E0000006E000000 + + + + 59399 + 59399 + 0 + 0 + 0 + 0 + 463 + 0 + 8192 + 1 + + 16 + 000000001C000000DA01000038000000 + + + 16 + 0A0000000A0000006E0000006E000000 + + + + 59400 + 59400 + 1 + 0 + 0 + 0 + 612 + 0 + 8192 + 2 + + 16 + 000000001C0000006F02000038000000 + + + 16 + 0A0000000A0000006E0000006E000000 + + + + 824 + 824 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 07030000A302000035050000F5020000 + + + 16 + 2200000039000000E2000000D9000000 + + + + 3235 + 000000000B000000000000000020000001000000FFFFFFFFFFFFFFFFC4000000BD00000000060000C1000000010000000100000004000000010000000000000000000000FFFFFFFF06000000CB00000057010000CC000000F08B00005A01000079070000FFFF02000B004354616262656450616E650020000001000000C40000006600000070040000D4000000C40000004F00000000060000BD0000000000000040280056060000000B446973617373656D626C7901000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFFAC0300004F000000B0030000A5010000000000000200000004000000010000000000000000000000FFFFFFFF2B000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C3000001800040000000000000B00300006600000070040000BC010000B00300004F00000070040000A501000000000000404100462B0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFFC00000004F000000C400000088020000010000000200000004000000010000000000000000000000FFFFFFFF05000000ED0300006D000000C3000000C400000073940000018000100000010000000000000066000000C0000000A8010000000000004F000000C0000000880200000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73000000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7300000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657300000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273010000007394000001000000FFFFFFFFFFFFFFFF04000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000001000000FFFFFFFFFFFFFFFF0000000088020000000600008C02000001000000010000000400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0F0000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB090000018000800000010000003C020000AC010000700400002E020000040300008C020000000600000E03000000000000404100560F0000001343616C6C20537461636B202B204C6F63616C73010000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203101000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFF000000000000000001000000000000000100000001000000FFFFFFFF000300008C020000040300000E03000001000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000000000000FFFFFFFFFFFFFFFF00000000A501000070040000A9010000000000000100000004000000010000000000000000000000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF010000779400000180008000000000000000000000C0010000700400002E02000000000000A901000070040000170200000000000040820046060000000C4275696C64204F757470757400000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0E536F757263652042726F7773657200000000D201000001000000FFFFFFFFFFFFFFFF1346696E6420416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0642726F777365000000007794000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000 + + + 59392 + File + + 2363 + 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE80300000000000000000000000000000000000000000000000100000001000000960000000200205000000000057561727432960000000000000014000575617274320426657272094F5354696D65446C79074F5354696D6544064F5354696D6505656E646966086261736554696D650E67657443757272656E7454696D65105461736B4765745469636B436F756E74145441534B5F5354415449435F494E49545F43434D18706F6C6C5F73746172745F7461736B315F68616E646C65720C4F535461736B43726561746504766F6964154F535F4350555F5379735469636B48616E646C65720F4F535461736B4372656174654578741355534152545F55585F434C4B5F454E41424C450F4750494F5F4D4F44455F41465F50501A5F5F48414C5F5243435F4750494F415F434C4B5F454E41424C4517444D41315F53747265616D305F49525148616E646C6572035243430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020001001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000400160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65AC030000 + + + 1423 + 2800FFFF01001100434D4643546F6F6C426172427574746F6E00E1000000000000FFFFFFFF000100000000000000010000000000000001000000018001E1000000000000FFFFFFFF000100000000000000010000000000000001000000018003E1000000000000FFFFFFFF0001000000000000000100000000000000010000000180CD7F000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF000000000000000000010000000000000001000000018023E1000000000000FFFFFFFF000100000000000000010000000000000001000000018022E1000000000000FFFFFFFF000100000000000000010000000000000001000000018025E1000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001802BE1000000000000FFFFFFFF00010000000000000001000000000000000100000001802CE1000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001807A8A000000000000FFFFFFFF00010000000000000001000000000000000100000001807B8A000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180D3B0000000000000FFFFFFFF000100000000000000010000000000000001000000018015B1000000000000FFFFFFFF0001000000000000000100000000000000010000000180F4B0000000000000FFFFFFFF000100000000000000010000000000000001000000018036B1000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180FF88000000000000FFFFFFFF0001000000000000000100000000000000010000000180FE88000000000000FFFFFFFF00010000000000000001000000000000000100000001800B81000000000000FFFFFFFF00010000000000000001000000000000000100000001800C81000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180F088000000000000FFFFFFFF0001000000000000000100000000000000010000000180EE7F000000000000FFFFFFFF000100000000000000010000000000000001000000018024E1000000000000FFFFFFFF00010000000000000001000000000000000100000001800A81000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001802280000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180C488000000000000FFFFFFFF0001000000000000000100000000000000010000000180C988000000000000FFFFFFFF0001000000000000000100000000000000010000000180C788000000000000FFFFFFFF0001000000000000000100000000000000010000000180C888000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180DD88000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180FB7F000000000000FFFFFFFF000100000000000000010000000000000001000000 + + + 1423 + 2800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000000004000000000000000000000000000000000100000001000000018022E100000000000005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000000000700000000000000000000000000000000010000000100000001802CE10000000000000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000000000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000000000C0000000000000000000000000000000001000000010000000180F4B00000000000000D000000000000000000000000000000000100000001000000018036B10000000000000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF880000000000000F0000000000000000000000000000000001000000010000000180FE880000000000001000000000000000000000000000000000010000000100000001800B810000000000001100000000000000000000000000000000010000000100000001800C810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F088000000000000130000000000000000000000000000000001000000010000000180EE7F00000000000014000000000000000000000000000000000100000001000000018024E10000000000001500000000000000000000000000000000010000000100000001800A810000000000001600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000180000000000000000000000000000000001000000010000000180C988000000000000190000000000000000000000000000000001000000010000000180C7880000000000001A0000000000000000000000000000000001000000010000000180C8880000000000001B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180DD880000000000001C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001D000000000000000000000000000000000100000001000000 + + + + 59399 + Build + + 657 + 00200000000000001000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F0000000000001C0000000000000000000000000000000001000000010000000180D07F0000000000001D000000000000000000000000000000000100000001000000018030800000000000001E00000000000000000000000000000000010000000100000001809E8A0000000000001F0000000000000000000000000000000001000000010000000180D17F0000000000002000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000002100000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6EBA00000000000000000000000000000000000000000000000001000000010000009600000003002050FFFFFFFF00960000000000000000000180EB880000000000002200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000230000000000000000000000000000000001000000010000000180B08A000000000000240000000000000000000000000000000001000000010000000180A8010000000000004E00000000000000000000000000000000010000000100000001807202000000000000530000000000000000000000000000000001000000010000000180BE010000000000005000000000000000000000000000000000010000000100000000000000054275696C64CF010000 + + + 583 + 1000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F000000000000FFFFFFFF0001000000000000000100000000000000010000000180D07F000000000000FFFFFFFF00010000000000000001000000000000000100000001803080000000000000FFFFFFFF00010000000000000001000000000000000100000001809E8A000000000000FFFFFFFF0001000000000000000100000000000000010000000180D17F000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001804C8A000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001806680000000000000FFFFFFFF0001000000000000000100000000000000010000000180EB88000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180C07F000000000000FFFFFFFF0001000000000000000100000000000000010000000180B08A000000000000FFFFFFFF0001000000000000000100000000000000010000000180A801000000000000FFFFFFFF00010000000000000001000000000000000100000001807202000000000000FFFFFFFF0001000000000000000100000000000000010000000180BE01000000000000FFFFFFFF000100000000000000010000000000000001000000 + + + 583 + 1000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F000000000000000000000000000000000000000000000001000000010000000180D07F00000000000001000000000000000000000000000000000100000001000000018030800000000000000200000000000000000000000000000000010000000100000001809E8A000000000000030000000000000000000000000000000001000000010000000180D17F0000000000000400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000000500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001806680000000000000060000000000000000000000000000000001000000010000000180EB880000000000000700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000080000000000000000000000000000000001000000010000000180B08A000000000000090000000000000000000000000000000001000000010000000180A8010000000000000A000000000000000000000000000000000100000001000000018072020000000000000B0000000000000000000000000000000001000000010000000180BE010000000000000C000000000000000000000000000000000100000001000000 + + + + 59400 + Debug + + 2362 + 00200000010000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000004002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000020001002D0000000000000000000000000000000001000000010000000180F07F0000020001002E0000000000000000000000000000000001000000010000000180E8880000020000003700000000000000000000000000000000010000000100000001803B010000020001002F0000000000000000000000000000000001000000010000000180BB8A00000200010030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000002000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380D88B00000000000031000000085761746368202631000000000000000000000000010000000100000000000000000000000100000000001380D98B00000000000031000000085761746368202632000000000000000000000000010000000100000000000000000000000100000000001380CE01000000000000FFFFFFFF0C576174636820416E63686F720000000000000000010000000000000001000000000000000000000001000000000013800F0100000200010032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000094D656D6F7279202632000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000094D656D6F7279202633000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000094D656D6F72792026340000000000000000000000000100000001000000000000000000000001000000000013801001000002000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000000013809407000000000000330000000855415254202326320000000000000000000000000100000001000000000000000000000001000000000013809507000000000000330000000855415254202326330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000001626446562756720287072696E746629205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000020000003400000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380658A000000000000340000000F264C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E0000001526506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000E26436F646520436F766572616765000000000000000000000000010000000100000000000000000000000100000000001380CD01000000000000FFFFFFFF0F416E616C7973697320416E63686F7200000000000000000100000000000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720000000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720000000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000013800189000002000000360000000F26546F6F6C626F782057696E646F7700000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730000000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F72000000000000000001000000000000000100000000000000000000000100000000000000000005446562756764020000 + + + 898 + 1900FFFF01001100434D4643546F6F6C426172427574746F6ECC88000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001801780000000000000FFFFFFFF00010000000000000001000000000000000100000001801D80000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001801A80000000000000FFFFFFFF00010000000000000001000000000000000100000001801B80000000000000FFFFFFFF0001000000000000000100000000000000010000000180E57F000000000000FFFFFFFF00010000000000000001000000000000000100000001801C80000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001800089000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180E48B000000000000FFFFFFFF0001000000000000000100000000000000010000000180F07F000000000000FFFFFFFF0001000000000000000100000000000000010000000180E888000000000000FFFFFFFF00010000000000000001000000000000000100000001803B01000000000000FFFFFFFF0001000000000000000100000000000000010000000180BB8A000000000000FFFFFFFF0001000000000000000100000000000000010000000180D88B000000000000FFFFFFFF0001000000000000000100000000000000010000000180D28B000000000000FFFFFFFF00010000000000000001000000000000000100000001809307000000000000FFFFFFFF0001000000000000000100000000000000010000000180658A000000000000FFFFFFFF0001000000000000000100000000000000010000000180C18A000000000000FFFFFFFF0001000000000000000100000000000000010000000180EE8B000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001800189000000000000FFFFFFFF000100000000000000010000000000000001000000 + + + 898 + 1900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000000000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000000100000000000000000000000000000000010000000100000001801D800000000000000200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000000300000000000000000000000000000000010000000100000001801B80000000000000040000000000000000000000000000000001000000010000000180E57F0000000000000500000000000000000000000000000000010000000100000001801C800000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000000700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B000000000000080000000000000000000000000000000001000000010000000180F07F000000000000090000000000000000000000000000000001000000010000000180E8880000000000000A00000000000000000000000000000000010000000100000001803B010000000000000B0000000000000000000000000000000001000000010000000180BB8A0000000000000C0000000000000000000000000000000001000000010000000180D88B0000000000000D0000000000000000000000000000000001000000010000000180D28B0000000000000E000000000000000000000000000000000100000001000000018093070000000000000F0000000000000000000000000000000001000000010000000180658A000000000000100000000000000000000000000000000001000000010000000180C18A000000000000110000000000000000000000000000000001000000010000000180EE8B0000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180018900000000000013000000000000000000000000000000000100000001000000 + + + + 0 + 1536 + 864 + + @@ -1814,10 +3515,28 @@ 100 0 - ..\..\system\uC-OS3\uC-OS3\Ports\ARM-Cortex-M\ARMv7-M\os_cpu_c.c - 36 - 456 - 454 + ..\..\main\main.c + 118 + 45 + 59 + 1 + + 0 + + + ..\..\bsp\dsp_can.c + 50 + 25 + 46 + 1 + + 0 + + + ..\..\bsp\dsp_can.h + 0 + 1 + 8 1 0 diff --git a/prj/MDK-ARM/stm32f4xx_app.uvoptx b/prj/MDK-ARM/stm32f4xx_app.uvoptx index 7e5dbf6..81726f2 100644 --- a/prj/MDK-ARM/stm32f4xx_app.uvoptx +++ b/prj/MDK-ARM/stm32f4xx_app.uvoptx @@ -565,6 +565,30 @@ 0 0 + + 8 + 25 + 1 + 0 + 0 + 0 + ..\..\bsp\dsp_can.c + dsp_can.c + 0 + 0 + + + 8 + 26 + 5 + 0 + 0 + 0 + ..\..\bsp\dsp_can.h + dsp_can.h + 0 + 0 + @@ -575,7 +599,7 @@ 0 9 - 25 + 27 1 0 0 @@ -587,7 +611,7 @@ 9 - 26 + 28 1 0 0 @@ -599,7 +623,7 @@ 9 - 27 + 29 1 0 0 @@ -611,7 +635,7 @@ 9 - 28 + 30 1 0 0 @@ -623,7 +647,7 @@ 9 - 29 + 31 1 0 0 @@ -635,7 +659,7 @@ 9 - 30 + 32 1 0 0 @@ -647,7 +671,7 @@ 9 - 31 + 33 1 0 0 @@ -659,7 +683,7 @@ 9 - 32 + 34 1 0 0 @@ -671,7 +695,7 @@ 9 - 33 + 35 1 0 0 @@ -683,7 +707,7 @@ 9 - 34 + 36 1 0 0 @@ -695,7 +719,7 @@ 9 - 35 + 37 1 0 0 @@ -707,7 +731,7 @@ 9 - 36 + 38 1 0 0 @@ -719,7 +743,7 @@ 9 - 37 + 39 1 0 0 @@ -731,7 +755,7 @@ 9 - 38 + 40 1 0 0 @@ -743,7 +767,7 @@ 9 - 39 + 41 1 0 0 @@ -755,7 +779,7 @@ 9 - 40 + 42 1 0 0 @@ -767,7 +791,7 @@ 9 - 41 + 43 1 0 0 @@ -779,7 +803,7 @@ 9 - 42 + 44 1 0 0 @@ -791,7 +815,7 @@ 9 - 43 + 45 1 0 0 @@ -803,7 +827,7 @@ 9 - 44 + 46 1 0 0 @@ -815,7 +839,7 @@ 9 - 45 + 47 1 0 0 @@ -827,7 +851,7 @@ 9 - 46 + 48 1 0 0 @@ -839,7 +863,7 @@ 9 - 47 + 49 1 0 0 @@ -851,7 +875,7 @@ 9 - 48 + 50 1 0 0 @@ -863,7 +887,7 @@ 9 - 49 + 51 1 0 0 @@ -875,7 +899,7 @@ 9 - 50 + 52 1 0 0 @@ -887,7 +911,7 @@ 9 - 51 + 53 1 0 0 @@ -907,7 +931,7 @@ 0 10 - 52 + 54 1 0 0 @@ -919,7 +943,7 @@ 10 - 53 + 55 1 0 0 @@ -931,7 +955,7 @@ 10 - 54 + 56 2 0 0 @@ -951,7 +975,7 @@ 0 11 - 55 + 57 1 0 0 @@ -963,7 +987,7 @@ 11 - 56 + 58 1 0 0 @@ -975,7 +999,7 @@ 11 - 57 + 59 1 0 0 @@ -987,7 +1011,7 @@ 11 - 58 + 60 1 0 0 @@ -1007,7 +1031,7 @@ 0 12 - 59 + 61 1 0 0 @@ -1019,7 +1043,7 @@ 12 - 60 + 62 1 0 0 @@ -1031,7 +1055,7 @@ 12 - 61 + 63 2 0 0 @@ -1051,7 +1075,7 @@ 0 13 - 62 + 64 1 0 0 @@ -1063,7 +1087,7 @@ 13 - 63 + 65 1 0 0 @@ -1075,7 +1099,7 @@ 13 - 64 + 66 1 0 0 @@ -1087,7 +1111,7 @@ 13 - 65 + 67 1 0 0 @@ -1107,7 +1131,7 @@ 0 14 - 66 + 68 1 0 0 @@ -1119,7 +1143,7 @@ 14 - 67 + 69 1 0 0 @@ -1131,7 +1155,7 @@ 14 - 68 + 70 2 0 0 @@ -1143,7 +1167,7 @@ 14 - 69 + 71 1 0 0 @@ -1155,7 +1179,7 @@ 14 - 70 + 72 1 0 0 @@ -1167,7 +1191,7 @@ 14 - 71 + 73 1 0 0 @@ -1179,7 +1203,7 @@ 14 - 72 + 74 1 0 0 @@ -1191,7 +1215,7 @@ 14 - 73 + 75 1 0 0 @@ -1203,7 +1227,7 @@ 14 - 74 + 76 1 0 0 @@ -1215,7 +1239,7 @@ 14 - 75 + 77 1 0 0 @@ -1227,7 +1251,7 @@ 14 - 76 + 78 1 0 0 @@ -1239,7 +1263,7 @@ 14 - 77 + 79 1 0 0 @@ -1251,7 +1275,7 @@ 14 - 78 + 80 1 0 0 @@ -1263,7 +1287,7 @@ 14 - 79 + 81 1 0 0 @@ -1275,7 +1299,7 @@ 14 - 80 + 82 1 0 0 @@ -1287,7 +1311,7 @@ 14 - 81 + 83 1 0 0 @@ -1299,7 +1323,7 @@ 14 - 82 + 84 1 0 0 @@ -1311,7 +1335,7 @@ 14 - 83 + 85 1 0 0 @@ -1323,7 +1347,7 @@ 14 - 84 + 86 1 0 0 @@ -1343,7 +1367,7 @@ 0 15 - 85 + 87 1 0 0 @@ -1355,7 +1379,7 @@ 15 - 86 + 88 1 0 0 diff --git a/prj/MDK-ARM/stm32f4xx_app.uvprojx b/prj/MDK-ARM/stm32f4xx_app.uvprojx index 3b8cc0e..f6be890 100644 --- a/prj/MDK-ARM/stm32f4xx_app.uvprojx +++ b/prj/MDK-ARM/stm32f4xx_app.uvprojx @@ -529,6 +529,16 @@ 5 ..\..\bsp\bsp_spi.h + + dsp_can.c + 1 + ..\..\bsp\dsp_can.c + + + dsp_can.h + 5 + ..\..\bsp\dsp_can.h +