i2c/gpio: hook up open session for sf interface

This commit is contained in:
Michael Scire
2020-10-31 21:50:21 -07:00
parent f27d6f2fd8
commit 48784da42a
15 changed files with 571 additions and 16 deletions

View File

@@ -33,11 +33,20 @@ namespace ams::boot {
/* Initialize the i2c client library with the server manager object. */
i2c::InitializeWith(i2c::server::GetServiceObject(), i2c::server::GetServiceObjectPowerBus());
/* Initialize the board driver without enabling interrupt handlers. */
/* Initialize the board driver. */
i2c::driver::board::Initialize();
/* Initialize the driver library. */
i2c::driver::Initialize();
/* Initialize the pwm client library with the server manager object. */
/* TODO: pwm::InitializeWith(pwm::server::GetServiceObject()); */
/* Initialize the pwm board driver. */
/* TODO: pwm::driver::board::Initialize(); */
/* Initialize the pwm driver library. */
/* TODO: pwm::driver::Initialize();
}
}