armfly a8ed6fead2 1.GBK->UTF-8
2.TAB -> 4个空格
3.完善高侧电流表功能:电压、电流、功率、放电容量
4.增加二极管测量,和电阻测量同一个界面。
2019-11-03 05:33:32 +08:00

39 lines
1.3 KiB
C
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
*********************************************************************************************************
*
* 模块名称 : 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) *********************************/