I am trying to read temperature, pressure, and humidity data from an Adafruit BME280 sensor using the nRF9160 DK. The communication protocol that I am using is I2C and I am reading the data with the Zephyr RTOS function i2c_burst_read(). The problem that I am running into is that the only data that is being transferred is the first bit in the first byte of each measurement. The screenshot shows the lines of code that I am using to implement the I2C data transfer and the output of the data transfer. On the top right, in the watch window, the variable reg_data is where the transferred data is supposed to go and it can be seen that the value is 0x80080080. Is there any idea what could possibly be going wrong?