打印
[STM32F0]

STM32F051的I2C程序问题

[复制链接]
4372|13
手机看帖
扫描二维码
随时随地手机跟帖
楼主
我也用过stm32f0的i2c,查询方式

使用特权

评论回复
沙发
Alisa_song| | 2016-4-6 23:21 | 显示全部楼层
板凳
Alisa_song| | 2016-4-7 13:37 | 显示全部楼层

http://www.stmcu.org/module/forum/thread-604877-1-1.html,昨天好像给你分享错了,这个里面的是我在板子上跑过的,之前那个我忘记了。

使用特权

评论回复
地板
Alisa_song| | 2016-4-8 08:44 | 显示全部楼层
feiyinglala 发表于 2016-4-7 23:23
额,我之前写51的用软件模拟I2C基本没遇到bug,现在正在细读stm的手册,我希望能够用硬件配通。如果最后 ...

软件模拟的是好用,但是CPU运行等待时间有点浪费。

使用特权

评论回复
5
Alisa_song| | 2016-4-8 08:46 | 显示全部楼层
feiyinglala 发表于 2016-4-7 13:50
请问可否把I2C配置的代码也分享一下?仿照你的改了以后,还是卡在判断TXIS标志位上了 ...

void I2C_Configuration(void)
{
        GPIO_InitTypeDef  GPIO_InitStruct;
        I2C_InitTypeDef  I2C_InitStruct;
       
        /* Configure the I2C clock source. The clock is derived from the HSI */
        RCC_I2CCLKConfig(RCC_I2C1CLK_SYSCLK);
        /*Enable GPIOB and I2c1 clock*/
        RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOB, ENABLE);       
        RCC_APB1PeriphClockCmd(RCC_APB1Periph_I2C1 , ENABLE);
       
        /* Connect PXx to I2C_SCL*/
        GPIO_PinAFConfig(GPIOB,GPIO_PinSource6,GPIO_AF_1);
        /* Connect PXx to I2C_SDA*/
        GPIO_PinAFConfig(GPIOB,GPIO_PinSource7,GPIO_AF_1);
       
        /*GPIO Configuration*/
        /*Configure I2C1 pins: SCL */
        GPIO_InitStruct.GPIO_Pin = GPIO_Pin_6;
        GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AF;
        GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;       
        GPIO_InitStruct.GPIO_OType = GPIO_OType_OD;
        GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL;
        GPIO_Init(GPIOB,&GPIO_InitStruct);
       
        /*Configure sEE_I2C pins: SDA */
        GPIO_InitStruct.GPIO_Pin = GPIO_Pin_7;
        GPIO_Init(GPIOB , &GPIO_InitStruct);
       
        /*I2C configuration*/
        I2C_InitStruct.I2C_Mode = I2C_Mode_I2C;
        I2C_InitStruct.I2C_AnalogFilter = I2C_AnalogFilter_Enable;
        I2C_InitStruct.I2C_DigitalFilter = 0x00;
        I2C_InitStruct.I2C_OwnAddress1 =0x00;
        I2C_InitStruct.I2C_Ack = I2C_Ack_Enable;
        I2C_InitStruct.I2C_AcknowledgedAddress = I2C_AcknowledgedAddress_7bit;       
        I2C_InitStruct.I2C_Timing = 0x00210507;       
        I2C_Init(I2C1, &I2C_InitStruct);
        I2C_Cmd(I2C1, ENABLE);
}

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则