Skip to content

Commit

Permalink
emulation: ComConnector: remove IInterestingType
Browse files Browse the repository at this point in the history
Apparently SPI connectors are no longer interesting. Remove this
designator as it no longer exists.

Signed-off-by: Sean Cross <[email protected]>
  • Loading branch information
xobs committed Dec 29, 2023
1 parent b12c08e commit 9a1191c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions emulation/peripherals/ComConnector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@

namespace Antmicro.Renode.Peripherals.SPI.Betrusted
{
public interface IComPeripheral : IPeripheral, IInterestingType
public interface IComPeripheral : IPeripheral
{
ushort Transmit(ushort data);
bool HasData();
void FinishTransmission();
}
public interface IComController : IPeripheral, IInterestingType, IGPIOReceiver
public interface IComController : IPeripheral, IGPIOReceiver
{
ushort Transmit(ushort data);
void FinishTransmission();
Expand Down

0 comments on commit 9a1191c

Please sign in to comment.