mirror of
https://github.com/armfly/H7-TOOL_STM32H7_App.git
synced 2024-08-09 10:05:34 +08:00
a8ed6fead2
2.TAB -> 4个空格 3.完善高侧电流表功能:电压、电流、功率、放电容量 4.增加二极管测量,和电阻测量同一个界面。
39 lines
1.3 KiB
C
Executable File
39 lines
1.3 KiB
C
Executable File
/*
|
||
*********************************************************************************************************
|
||
*
|
||
* 模块名称 : USB device 中断服务程序
|
||
* 文件名称 : usb_it.c
|
||
* 版 本 : V1.0
|
||
* 说 明 : 本文件存放USB device中断服务程序。只需将该文件加入工程即可,无需再到 stm32f4xx_it.c 中添加这些ISR程序
|
||
*
|
||
* 修改记录 :
|
||
* 版本号 日期 作者 说明
|
||
* V1.0 2018-09-08 armfly 正式发布
|
||
*
|
||
* Copyright (C), 2018-2030, 安富莱电子 www.armfly.com
|
||
*
|
||
*********************************************************************************************************
|
||
*/
|
||
|
||
#include "usbd_conf.h"
|
||
#include "usbd_core.h"
|
||
|
||
/*
|
||
*********************************************************************************************************
|
||
* 函 数 名: OTG_FS_IRQHandler, OTG_HS_IRQHandler
|
||
* 功能说明: USB HOST中断服务程序
|
||
* 形 参: 无
|
||
* 返 回 值: 无
|
||
*********************************************************************************************************
|
||
*/
|
||
#ifdef USE_USB_FS
|
||
void OTG_FS_IRQHandler(void)
|
||
#else
|
||
void OTG_HS_IRQHandler(void)
|
||
#endif
|
||
{
|
||
HAL_PCD_IRQHandler(&hpcd);
|
||
}
|
||
|
||
/***************************** 安富莱电子 www.armfly.com (END OF FILE) *********************************/
|