1 Star 1 Fork 0

繁花云/AIR001_i2c_u8g2_test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
air001xx_it.c 796 Bytes
一键复制 编辑 原始数据 按行查看 历史
繁花云 提交于 2023-09-03 21:12 +08:00 . Initial commit
#include "air001xx_it.h"
extern I2C_HandleTypeDef I2cHandle;
extern TIM_HandleTypeDef TimHandle;
void NMI_Handler(void)
{
}
void HardFault_Handler(void)
{
while (1)
{
}
}
void SVC_Handler(void)
{
}
void PendSV_Handler(void)
{
}
void SysTick_Handler(void)
{
HAL_IncTick();
}
/**
* @brief This function handles DMA1 channel1 Interrupt .
*/
void DMA1_Channel1_IRQHandler(void)
{
HAL_DMA_IRQHandler(I2cHandle.hdmatx);
}
/**
* @brief This function handles DMA1 channel2 and channel2 Interrupt .
*/
void DMA1_Channel2_3_IRQHandler(void)
{
HAL_DMA_IRQHandler(I2cHandle.hdmarx);
}
/**
* @brief This function handles I2C1 Interrupt .
*/
void I2C1_IRQHandler(void)
{
HAL_I2C_EV_IRQHandler(&I2cHandle);
}
void TIM16_IRQHandler(void)
{
HAL_TIM_IRQHandler(&TimHandle);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fhcloud/air001_i2c_u8g2_test.git
git@gitee.com:fhcloud/air001_i2c_u8g2_test.git
fhcloud
air001_i2c_u8g2_test
AIR001_i2c_u8g2_test
master

搜索帮助