Thermometer
A mock I2C temperature sensor (LM75-style) is connected to I2C1 at slave address 0x48. Your job: bring up I2C1 and read the temperature register (0x00), which returns 1 byte in degrees Celsius.
This is a standard I2C register read: write the register address to the sensor, then perform a repeated start and read back the data byte.
The starter code provides register definitions and status bit masks. Everything else is up to you.