0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

STM32L010と(VSCode+STM32Cube)でI2Cスレーブで遊ぶ(受信)(STM32L010F4P6)HAL

Last updated at Posted at 2021-12-09

x プルアップ抵抗を忘れずに10kΩがおすすめ
x 過去ログを見よ->
x CubeMXは、nucleo-l011
x VSCodeは、nucleo-l011

目的
I2Cスレーブのテスト

参考

I2C_SLAVE_TEST1_010_1内を適当にコピー

o_con140.jpg

o_con141.jpg

o_con147.jpg

o_con148.jpg

o_con149.jpg

o_con150.jpg

o_con151.jpg

main内のwhile内





        uint8_t aRxBuffer[1] = {0};
        char *str1 = 0;
        //aRxBuffer[0] = 0 ;

        if(HAL_I2C_Slave_Receive(&hi2c1,(uint8_t*)aRxBuffer, 1, 1000) == HAL_OK) {
           str1="OK\r\n";
            
        } else {
           str1="NG\r\n";
            
        }
        
        //ステータスの表示
        HAL_UART_Transmit(&huart2, (uint8_t *)str1, 4, 10);
        
        //I2Cスレーブの受信データの表示
        HAL_UART_Transmit(&huart2, (uint8_t *)"\tRead A: ", 9, 10);
        uint8_t n1  = '0' + (aRxBuffer[0] % 10);
        uint8_t n10 = '0' + (aRxBuffer[0] / 10);
        HAL_UART_Transmit(&huart2, &n10, 1, 10);
        HAL_UART_Transmit(&huart2, &n1, 1, 10);
        HAL_UART_Transmit(&huart2, (uint8_t *)"\r\n", 2, 10);

        HAL_Delay(200);//0.2秒待つ







I2C内



  hi2c1.Init.OwnAddress1 = 0x80;



0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?