gpio框架化
This commit is contained in:
parent
1524dc3a56
commit
4f953834a8
|
@ -28,12 +28,25 @@ CAN_RxHeaderTypeDef g_canx_rxheader; /*
|
|||
*/
|
||||
/* 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; /* 优先级由报文标识符决定 */
|
||||
|
||||
{
|
||||
g_canx_handler.Instance = CAN1;
|
||||
g_canx_handler.Init.Mode = CAN_MODE_LOOPBACK;
|
||||
|
||||
|
||||
/*设置波特率 */
|
||||
g_canx_handler.Init.Prescaler = 4; /*brp; */ /* 分频系数(Fdiv)为brp+1 */
|
||||
g_canx_handler.Init.TimeSeg1 = CAN_BS1_9TQ ; /*tbs1; */ /* tbs1范围CAN_BS1_1TQ~CAN_BS1_16TQ */
|
||||
g_canx_handler.Init.TimeSeg2 = CAN_BS2_8TQ; /*tbs2; */ /* tbs2范围CAN_BS2_1TQ~CAN_BS2_8TQ */
|
||||
g_canx_handler.Init.SyncJumpWidth = CAN_SJW_1TQ ;/*tsjw; */ /* 重新同步跳跃宽度(Tsjw)为tsjw+1个时间单位 CAN_SJW_1TQ~CAN_SJW_4TQ */
|
||||
|
||||
/*设置CAN功能 */
|
||||
g_canx_handler.Init.AutoBusOff = DISABLE; /* 软件自动离线管理 */
|
||||
g_canx_handler.Init.AutoWakeUp = DISABLE; /* 睡眠模式通过软件唤醒(清除CAN->MCR的SLEEP位) */
|
||||
g_canx_handler.Init.AutoRetransmission = ENABLE; /* 禁止报文自动传送 */
|
||||
g_canx_handler.Init.ReceiveFifoLocked = DISABLE; /* 报文不锁定,新的覆盖旧的 */
|
||||
g_canx_handler.Init.TimeTriggeredMode = DISABLE; /* 非时间触发通信模式 */
|
||||
g_canx_handler.Init.TransmitFifoPriority = DISABLE; /* 优先级由报文标识符决定 */
|
||||
|
||||
if (HAL_CAN_Init(&g_canx_handler) != HAL_OK)
|
||||
{
|
||||
return 1;
|
||||
|
|
|
@ -0,0 +1,58 @@
|
|||
#include "drv_sys.h"
|
||||
#include "drv_gpio.h"
|
||||
|
||||
// 在这个数组中配置所有需要初始化的GPIO引脚
|
||||
GPIOConfig gpio_config[] = {
|
||||
// 高边输出
|
||||
{GPIOG, GPIO_PIN_4, GPIO_MODE_OUTPUT_PP, GPIO_PULLUP, GPIO_SPEED_FREQ_VERY_HIGH, 0},
|
||||
{GPIOG, GPIO_PIN_5, GPIO_MODE_OUTPUT_PP, GPIO_PULLUP, GPIO_SPEED_FREQ_VERY_HIGH, 0},
|
||||
{GPIOG, GPIO_PIN_6, GPIO_MODE_OUTPUT_PP, GPIO_PULLUP, GPIO_SPEED_FREQ_VERY_HIGH, 0},
|
||||
{GPIOG, GPIO_PIN_7, GPIO_MODE_OUTPUT_PP, GPIO_PULLUP, GPIO_SPEED_FREQ_VERY_HIGH, 0},
|
||||
{GPIOD, GPIO_PIN_10, GPIO_MODE_OUTPUT_PP, GPIO_PULLUP, GPIO_SPEED_FREQ_VERY_HIGH, 0},
|
||||
{GPIOD, GPIO_PIN_11, GPIO_MODE_OUTPUT_PP, GPIO_PULLUP, GPIO_SPEED_FREQ_VERY_HIGH, 0},
|
||||
{GPIOD, GPIO_PIN_12, GPIO_MODE_OUTPUT_PP, GPIO_PULLUP, GPIO_SPEED_FREQ_VERY_HIGH, 0},
|
||||
{GPIOD, GPIO_PIN_13, GPIO_MODE_OUTPUT_PP, GPIO_PULLUP, GPIO_SPEED_FREQ_VERY_HIGH, 0},
|
||||
// 低边输出
|
||||
{GPIOG, GPIO_PIN_8, GPIO_MODE_OUTPUT_PP, GPIO_PULLUP, GPIO_SPEED_FREQ_VERY_HIGH, 0},
|
||||
{GPIOA, GPIO_PIN_8, GPIO_MODE_OUTPUT_PP, GPIO_PULLUP, GPIO_SPEED_FREQ_VERY_HIGH, 0},
|
||||
// 高边反馈
|
||||
{GPIOD, GPIO_PIN_14, GPIO_MODE_INPUT, GPIO_NOPULL, GPIO_SPEED_FREQ_VERY_HIGH, 0},
|
||||
{GPIOD, GPIO_PIN_15, GPIO_MODE_INPUT, GPIO_NOPULL, GPIO_SPEED_FREQ_VERY_HIGH, 0},
|
||||
{GPIOG, GPIO_PIN_2, GPIO_MODE_INPUT, GPIO_NOPULL, GPIO_SPEED_FREQ_VERY_HIGH, 0},
|
||||
{GPIOG, GPIO_PIN_3, GPIO_MODE_INPUT, GPIO_NOPULL, GPIO_SPEED_FREQ_VERY_HIGH, 0},
|
||||
// 低边反馈
|
||||
{GPIOC, GPIO_PIN_6, GPIO_MODE_INPUT, GPIO_NOPULL, GPIO_SPEED_FREQ_VERY_HIGH, 0},
|
||||
{GPIOC, GPIO_PIN_7, GPIO_MODE_INPUT, GPIO_NOPULL, GPIO_SPEED_FREQ_VERY_HIGH, 0},
|
||||
};
|
||||
|
||||
|
||||
// 初始化所有配置的GPIO引脚
|
||||
void InitGPIOs(void) {
|
||||
// 启用所需的GPIO时钟
|
||||
__HAL_RCC_GPIOA_CLK_ENABLE();
|
||||
__HAL_RCC_GPIOB_CLK_ENABLE();
|
||||
__HAL_RCC_GPIOC_CLK_ENABLE();
|
||||
__HAL_RCC_GPIOH_CLK_ENABLE();
|
||||
__HAL_RCC_GPIOD_CLK_ENABLE();
|
||||
__HAL_RCC_GPIOE_CLK_ENABLE();
|
||||
__HAL_RCC_GPIOF_CLK_ENABLE();
|
||||
__HAL_RCC_GPIOI_CLK_ENABLE();
|
||||
__HAL_RCC_GPIOG_CLK_ENABLE();
|
||||
// 如果使用其他GPIO端口,需要启用相应的时钟
|
||||
|
||||
GPIO_InitTypeDef GPIO_InitStruct;
|
||||
|
||||
// 遍历配置数组并初始化每个引脚
|
||||
for (int i = 0; i < sizeof(gpio_config) / sizeof(GPIOConfig); i++)
|
||||
{
|
||||
// 配置GPIO初始化结构体
|
||||
GPIO_InitStruct.Pin = gpio_config[i].pin;
|
||||
GPIO_InitStruct.Mode = gpio_config[i].mode;
|
||||
GPIO_InitStruct.Pull = gpio_config[i].pull;
|
||||
GPIO_InitStruct.Speed = gpio_config[i].speed;
|
||||
GPIO_InitStruct.Alternate = gpio_config[i].alternate;
|
||||
|
||||
// 初始化GPIO引脚
|
||||
HAL_GPIO_Init(gpio_config[i].port, &GPIO_InitStruct);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
#ifndef _DRV_GPIO_H
|
||||
#define _DRV_GPIO_H
|
||||
|
||||
#include "stdio.h"
|
||||
#include "drv_sys.h"
|
||||
|
||||
#include "stm32f4xx_hal.h"
|
||||
|
||||
// 定义一个结构体来描述每个GPIO引脚的配置
|
||||
typedef struct {
|
||||
GPIO_TypeDef* port; // GPIO端口
|
||||
uint16_t pin; // GPIO引脚号
|
||||
uint32_t mode; // GPIO模式
|
||||
uint32_t pull; // 上拉/下拉设置
|
||||
uint32_t speed; // 切换速度
|
||||
uint32_t alternate; // 复用功能
|
||||
} GPIOConfig;
|
||||
|
||||
// 声明初始化所有配置的GPIO引脚函数
|
||||
void InitGPIOs(void);
|
||||
|
||||
#endif // GPIO_CONFIG_H
|
|
@ -30,32 +30,33 @@ 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 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
|
||||
compiling drv_gpio.c...
|
||||
..\..\drv\drv_gpio.h(22): warning: #1-D: last line of file ends without a newline
|
||||
#endif // GPIO_CONFIG_H
|
||||
..\..\drv\drv_gpio.c(35): 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
|
||||
".\Objects\HF_BCU_APP.axf" - 5 Error(s), 5 Warning(s).
|
||||
..\..\drv\drv_gpio.c: 2 warnings, 0 errors
|
||||
compiling dsp_can.c...
|
||||
..\..\bsp\dsp_can.c(29): warning: #9-D: nested comment is not allowed
|
||||
/* can_init(CAN_SJW_1TQ, CAN_BS2_8TQ, CAN_BS1_9TQ, 4, CAN_MODE_LOOPBACK); /* CAN初始化, 回环模式, 波特率500Kbps */
|
||||
..\..\bsp\dsp_can.c(101): warning: #223-D: function "CAN_RX_GPIO_CLK_ENABLE" declared implicitly
|
||||
CAN_RX_GPIO_CLK_ENABLE(); /* CAN_RX脚时钟使能 */
|
||||
..\..\bsp\dsp_can.c(102): warning: #223-D: function "CAN_TX_GPIO_CLK_ENABLE" declared implicitly
|
||||
CAN_TX_GPIO_CLK_ENABLE(); /* CAN_TX脚时钟使能 */
|
||||
..\..\bsp\dsp_can.c(107): error: #20: identifier "CAN_TX_GPIO_PIN" is undefined
|
||||
gpio_initure.Pin = CAN_TX_GPIO_PIN;
|
||||
..\..\bsp\dsp_can.c(111): error: #20: identifier "CAN_TX_GPIO_PORT" is undefined
|
||||
HAL_GPIO_Init(CAN_TX_GPIO_PORT, &gpio_initure); /* CAN_TX脚 模式设置 */
|
||||
..\..\bsp\dsp_can.c(113): error: #20: identifier "CAN_RX_GPIO_PIN" is undefined
|
||||
gpio_initure.Pin = CAN_RX_GPIO_PIN;
|
||||
..\..\bsp\dsp_can.c(114): error: #20: identifier "GPIO_MODE_AF_INPUT" is undefined
|
||||
gpio_initure.Mode = GPIO_MODE_AF_INPUT;
|
||||
..\..\bsp\dsp_can.c(115): error: #20: identifier "CAN_RX_GPIO_PORT" is undefined
|
||||
HAL_GPIO_Init(CAN_RX_GPIO_PORT, &gpio_initure); /* CAN_RX脚 必须设置成输入模式 */
|
||||
..\..\bsp\dsp_can.c(203): warning: #1-D: last line of file ends without a newline
|
||||
}
|
||||
..\..\bsp\dsp_can.c: 4 warnings, 5 errors
|
||||
".\Objects\HF_BCU_APP.axf" - 5 Error(s), 6 Warning(s).
|
||||
|
||||
<h2>Software Packages used:</h2>
|
||||
|
||||
|
@ -70,7 +71,7 @@ Package Vendor: Keil
|
|||
|
||||
<h2>Collection of Component Files used:</h2>
|
||||
Target not created.
|
||||
Build Time Elapsed: 00:00:06
|
||||
Build Time Elapsed: 00:00:08
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Binary file not shown.
|
@ -1 +1,71 @@
|
|||
.\objects\drv_gpio.o: ..\..\drv\drv_gpio.c
|
||||
.\objects\drv_gpio.o: ..\..\drv\drv_sys.h
|
||||
.\objects\drv_gpio.o: ..\..\system\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h
|
||||
.\objects\drv_gpio.o: ..\..\system\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h
|
||||
.\objects\drv_gpio.o: ..\..\system\CMSIS\Include\core_cm4.h
|
||||
.\objects\drv_gpio.o: D:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\drv_gpio.o: ..\..\system\CMSIS\Include\cmsis_version.h
|
||||
.\objects\drv_gpio.o: ..\..\system\CMSIS\Include\cmsis_compiler.h
|
||||
.\objects\drv_gpio.o: ..\..\system\CMSIS\Include\cmsis_armcc.h
|
||||
.\objects\drv_gpio.o: ..\..\system\CMSIS\Include\mpu_armv7.h
|
||||
.\objects\drv_gpio.o: ..\..\system\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h
|
||||
.\objects\drv_gpio.o: ..\..\system\stm32f4xx_hal_conf.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h
|
||||
.\objects\drv_gpio.o: ..\..\system\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\Legacy/stm32_hal_legacy.h
|
||||
.\objects\drv_gpio.o: D:\keil5\ARM\ARMCC\Bin\..\include\stddef.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_adc.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_ll_adc.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_adc_ex.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_can.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_crc.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cryp.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dac.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dac_ex.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dcmi.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dcmi_ex.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_sram.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_ll_fsmc.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_nor.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_nand.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pccard.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_hash.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_i2c.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_i2c_ex.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_i2s.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_i2s_ex.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_iwdg.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rng.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rtc.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rtc_ex.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_sd.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_ll_sdmmc.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_usart.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_irda.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_smartcard.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_wwdg.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pcd.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_ll_usb.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pcd_ex.h
|
||||
.\objects\drv_gpio.o: ..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_hcd.h
|
||||
.\objects\drv_gpio.o: ..\..\system\CMSIS\Include\core_cm4.h
|
||||
.\objects\drv_gpio.o: ..\..\drv\drv_gpio.h
|
||||
.\objects\drv_gpio.o: D:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,5 +1,5 @@
|
|||
Dependencies for Project 'stm32f4xx_app', Target 'stm32f407': (DO NOT MODIFY !)
|
||||
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)
|
||||
F (..\..\main\main.c)(0x6733358B)(--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)
|
||||
|
@ -382,8 +382,76 @@ I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pcd_ex.h)(0x67317724)
|
|||
I (..\..\system\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_hcd.h)(0x67317724)
|
||||
I (..\..\bsp\bsp_malloc.h)(0x67317724)
|
||||
I (..\..\drv\drv_sys.h)(0x67317724)
|
||||
F (..\..\drv\drv_gpio.c)(0x67317B58)(--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\drv_gpio.o --omf_browse .\objects\drv_gpio.crf --depend .\objects\drv_gpio.d)
|
||||
F (..\..\drv\drv_gpio.h)(0x67317AF0)()
|
||||
F (..\..\drv\drv_gpio.c)(0x67345DAD)(--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\drv_gpio.o --omf_browse .\objects\drv_gpio.crf --depend .\objects\drv_gpio.d)
|
||||
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 (D:\keil5\ARM\ARMCC\include\stdint.h)(0x588B8344)
|
||||
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 (D:\keil5\ARM\ARMCC\include\stddef.h)(0x588B8344)
|
||||
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)
|
||||
I (..\..\drv\drv_gpio.h)(0x67345DAD)
|
||||
I (D:\keil5\ARM\ARMCC\include\stdio.h)(0x588B8344)
|
||||
F (..\..\drv\drv_gpio.h)(0x67345DAD)()
|
||||
F (..\..\bsp\bsp_delay.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_delay.o --omf_browse .\objects\bsp_delay.crf --depend .\objects\bsp_delay.d)
|
||||
I (..\..\drv\drv_sys.h)(0x67317724)
|
||||
I (..\..\system\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h)(0x67317724)
|
||||
|
@ -859,7 +927,7 @@ 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)
|
||||
F (..\..\bsp\dsp_can.c)(0x673441A2)(--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)
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -146,24 +146,7 @@
|
|||
<Name>d</Name>
|
||||
</SetRegEntry>
|
||||
</TargetDriverDllRegistry>
|
||||
<Breakpoint>
|
||||
<Bp>
|
||||
<Number>0</Number>
|
||||
<Type>0</Type>
|
||||
<LineNumber>196</LineNumber>
|
||||
<EnabledFlag>1</EnabledFlag>
|
||||
<Address>134366102</Address>
|
||||
<ByteObject>0</ByteObject>
|
||||
<HtxType>0</HtxType>
|
||||
<ManyObjects>0</ManyObjects>
|
||||
<SizeOfObject>0</SizeOfObject>
|
||||
<BreakByAccess>0</BreakByAccess>
|
||||
<BreakIfRCount>1</BreakIfRCount>
|
||||
<Filename>..\..\drv\drv_usart.c</Filename>
|
||||
<ExecCommand></ExecCommand>
|
||||
<Expression>\\HF_BCU_APP\../../drv/drv_usart.c\196</Expression>
|
||||
</Bp>
|
||||
</Breakpoint>
|
||||
<Breakpoint/>
|
||||
<Tracepoint>
|
||||
<THDelay>0</THDelay>
|
||||
</Tracepoint>
|
||||
|
|
Loading…
Reference in New Issue