2 Star 3 Fork 3

Schips/gd32_software_i2c_slave

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.c 760 Bytes
一键复制 编辑 原始数据 按行查看 历史
Schips 提交于 2023-04-12 15:55 . update calling
/*!
\file main.c
\brief Software I2C-Slave Device Demo
\version 2023-04-10, V1.0.0, init version
\version 2023-04-12, V1.0.1, Friendly API
*/
#include "com.h"
#include "delay.h"
#include "i2c_slave_0.h"
#include "gd32f4xx.h"
#include "systick.h"
#include <stdio.h>
#include "main.h"
#include "gd32f450i_eval.h"
int main(void)
{
systick_config();
com_init();
i2c0_sw_slave_init();
printf("I2C SLAVE IS READY.\r\n");
while(1) {
i2c0_reg_update_poll();
}
}
/* retarget the C library printf function to the USART */
int fputc(int ch, FILE *f)
{
usart_data_transmit(COM0, (uint8_t)ch);
while(RESET == usart_flag_get(COM0, USART_FLAG_TBE));
return ch;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/schips/gd32_software_i2c_slave.git
git@gitee.com:schips/gd32_software_i2c_slave.git
schips
gd32_software_i2c_slave
gd32_software_i2c_slave
master

搜索帮助