master side :uint8_t TMP102_ADDR = 0x08;uint8_t REG_TEMP = 0x01;int result = 0x01;(result is numerical data which i want to transfer to another stm 32 ) HAL_I2C_Master_Transmit(&hi2c3,(TMP102_ADDR<<1),&result,sizeof(result),100);slave side stm 32 pro...