I am trying to read data from a sensor through I2C which follows below particular sequence attached.

The 1st piece in this sequence is to wakeup the sensor and ends with NACK. The 2nd piece is to send slave address and register before reading data back.
From before I know I should use nrf_drv_twi_tx(&m_twi, Address, tx_buf, 1, false); command to send the 2nd piece, but I dont know how to send the first piece. Meaning how to send just slave address.
Please advise.