STM32L010と(VSCode+STM32Cube)でI2Cスレーブで遊ぶ(受信)(STM32L010F4P6)HAL
x プルアップ抵抗を忘れずに10kΩがおすすめ
x 過去ログを見よ->
x CubeMXは、nucleo-l011
x VSCodeは、nucleo-l011
目的
I2Cスレーブのテスト
参考
I2C_SLAVE_TEST1_010_1内を適当にコピー
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;
Author And Source
この問題について(STM32L010と(VSCode+STM32Cube)でI2Cスレーブで遊ぶ(受信)(STM32L010F4P6)HAL), 我々は、より多くの情報をここで見つけました https://qiita.com/caa45040/items/012df828e8f5c2c76eca著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .