Hi @semiconductor_user
The configuration seems correct, I just have few observations, first you have configured the I2C Asynchronous Method as LPI2C_USING_INTERRUPTS but you have not enabled LPI2C0_IRQn and and therefore there is no handler (LPI2C0_Master_Slave_IRQHandler) assignment in the Interrupt Controler (IntCtrl_Ip).
Also, about Lpi2c_Ip_MasterSendDataBlocking() function when you asiggne "®" as the value of uint8 * TxBuff you are assigning the address of the data instead of the data, so use just "reg" instead of "®".
BR, VaneB