hello i'm trying to make a project whit stm32f401ve and Digital Thermometer DS1621 using I2C protocol, and I have a problem whit i2c receive. here is my source code and photos of datasheet and simulation any help will be appreciated
static const uint16_t TEMP_ADRESS = 0x48<<1; int main(void) { HAL_StatusTypeDef RETURN ; uint8_t buffer[1]; uint8_t buffer2[2]; uint16_t Val ; float temp_c ; HAL_Init(); SystemClock_Config(); MX_GPIO_Init(); MX_I2C1_Init(); buffer[0]=0x...