mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-01-19 01:34:10 +01:00
boot: i2c driver fixes
This commit is contained in:
parent
4ea6ce3156
commit
fe0d41623c
@ -500,7 +500,7 @@ void I2cBusAccessor::WriteTransferHeader(TransferMode transfer_mode, I2cTransact
|
|||||||
hdr_val |= ((transfer_mode == TransferMode_Receive) & 1) << 19;
|
hdr_val |= ((transfer_mode == TransferMode_Receive) & 1) << 19;
|
||||||
hdr_val |= ((addressing_mode != AddressingMode_7Bit) & 1) << 18;
|
hdr_val |= ((addressing_mode != AddressingMode_7Bit) & 1) << 18;
|
||||||
hdr_val |= (1 << 17);
|
hdr_val |= (1 << 17);
|
||||||
hdr_val |= (((option & I2cTransactionOption_Stop) != 0) & 1) << 18;
|
hdr_val |= (((option & I2cTransactionOption_Stop) == 0) & 1) << 16;
|
||||||
hdr_val |= slave_addr_val;
|
hdr_val |= slave_addr_val;
|
||||||
|
|
||||||
WriteRegister(&this->i2c_registers->I2C_I2C_TX_PACKET_FIFO_0, hdr_val);
|
WriteRegister(&this->i2c_registers->I2C_I2C_TX_PACKET_FIFO_0, hdr_val);
|
||||||
|
@ -51,6 +51,7 @@ void I2cDriverSession::Close(){
|
|||||||
if (this->open) {
|
if (this->open) {
|
||||||
this->bus_accessor->Close();
|
this->bus_accessor->Close();
|
||||||
this->bus_accessor = nullptr;
|
this->bus_accessor = nullptr;
|
||||||
|
this->open = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user