User Activity

uint8_t I2C_ADDRESS = 0x00;I2C_HandleTypeDef hi2c1;int main(void){HAL_StatusTypeDef status = HAL_ERROR; uint8_t buf[3] = {0,};uint32_t temp_data_a; uint32_t temp_data_o; __IO float T; __IO float To;while (1){ HAL_I2C_Mem_Read(&hi2c1, 0x00, 0x06, I2C...
However, I am getting 0x3A(NACK) in stop condition of my logic analyser. Can anyone help me how i can convert this NACK to ACK. I am attaching my code snippet and my logic analyser signal as well . Thanks for help and support.uint8_t I2C_ADDRESS = ...
Hello Everyone, I am trying to interface BMP280 sensor using I2C with STM32F401 Discovery Board. My code gets compiled without any error and i have declared two global variable, Temperature and Pressure . when i debug using ST Link GDB sever I cannot...