Home
last modified time | relevance | path

Searched defs:uart (Results 1 – 12 of 12) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/
DUartExtensions.cs16 public static string DumpHistoryBuffer(this IUART uart, int limit = 0) in DumpHistoryBuffer()
32 public static void WriteLine(this IUART uart, string text, bool appendCarriageReturn = true) in WriteLine()
37 … public static void WriteLine(this IUART uart, string text, LineEnding lineEnding = LineEnding.CR) in WriteLine()
47 private static void WriteLineEnding(IUART uart, LineEnding lineEnding) in WriteLineEnding()
DUartFileBackend.cs22 … public static void CreateFileBackend(this IUART uart, string path, bool immediateFlush = false) in CreateFileBackend()
36 public static void CloseFileBackend(this IUART uart, string path) in CloseFileBackend()
57 public UartFileBackend(SequencedFilePath path, IUART uart, bool immediateFlush = false) in UartFileBackend()
83 private readonly IUART uart; field in Antmicro.Renode.Extensions.Utilities.UartFileBackend
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Hooks/
DUartHooksExtensions.cs17 … public static void AddCharHook(this IUART uart, Func<byte, bool> predicate, Action<byte> hook) in AddCharHook()
28 … public static void AddLineHook(this IUART uart, Func<string, bool> predicate, Action<string> hook) in AddLineHook()
46 …public static void AddLineHook(this IUART uart, [AutoParameter] IMachine machine, string contains,… in AddLineHook()
DUartPythonEngine.cs22 public UartPythonEngine(IMachine machine, IUART uart, string script) in UartPythonEngine()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Backends/Terminals/
DBackendTerminal.cs41 public virtual void AttachTo(IUART uart) in AttachTo()
60 public virtual void DetachFrom(IUART uart) in DetachFrom()
132 private IUART uart; field in Antmicro.Renode.Backends.Terminals.BackendTerminal
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Test/PeripheralsTests/
DCadence_UARTTests.cs56 private void EnableRx(Cadence_UART uart) in EnableRx()
61 private void WriteInterruptStatus(Cadence_UART uart, InterruptFlag statusFlags) in WriteInterruptStatus()
66 private InterruptFlag ReadInterruptStatus(Cadence_UART uart) in ReadInterruptStatus()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/UART/
DUARTHub.cs41 public virtual void AttachTo(I uart) in AttachTo()
71 public virtual void DetachFrom(I uart) in DetachFrom()
DUARTBase.cs46 public override void Register(IUART uart, NullRegistrationPoint registrationPoint) in Register()
52 public override void Unregister(IUART uart) in Unregister()
DUARTBackend.cs30 public void Attach(IUART uart) in Attach()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Analyzers/
DLoggingUartAnalyzer.cs151 private IUART uart; field in Antmicro.Renode.Analyzers.LoggingUartAnalyzer
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/S32K3XX_FlexIO/
DS32K3XX_FlexIO_UART.cs93 private uint? GetBaudRate(UARTDirectionBase uart) in GetBaudRate()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Testing/
DTerminalTester.cs47 public override void AttachTo(IUART uart) in AttachTo()