Re: Simulator - UART

2021-11-04 Thread Tomasz CEDRO
On Thu, Nov 4, 2021 at 11:19 AM Fotis Panagiotopoulos wrote: > > No, The emulated UART is designed to work with the real UART on host. > Oh, now I understand how it works! > > In my case, however, I also wanted a "simulated" UART, not a physical one. > So I run: > > socat PTY,link=/dev/ttySIM0 PTY,

Re: Simulator - UART

2021-11-04 Thread Xiang Xiao
Yes, this case is also in the initial design but we never used this before. Glad to see it work for you. On Thu, Nov 4, 2021 at 6:19 PM Fotis Panagiotopoulos wrote: > > No, The emulated UART is designed to work with the real UART on host. > Oh, now I understand how it works! > > In my case, howe

Re: Simulator - UART

2021-11-04 Thread Fotis Panagiotopoulos
> No, The emulated UART is designed to work with the real UART on host. Oh, now I understand how it works! In my case, however, I also wanted a "simulated" UART, not a physical one. So I run: socat PTY,link=/dev/ttySIM0 PTY,link=/dev/ttyNX and indeed our software was perfectly capable of communi

Re: Simulator - UART

2021-11-03 Thread Alan Carvalho de Assis
On 11/3/21, Xiang Xiao wrote: > On Wed, Nov 3, 2021 at 8:06 PM Tomasz CEDRO wrote: > >> On Wed, Nov 3, 2021 at 11:37 AM Fotis Panagiotopoulos wrote: >> > I am working on a new NuttX-based firmware. >> > On this application a hardware board will be able to communicate >> > through >> > UART with a

Re: Simulator - UART

2021-11-03 Thread Xiang Xiao
On Wed, Nov 3, 2021 at 8:06 PM Tomasz CEDRO wrote: > On Wed, Nov 3, 2021 at 11:37 AM Fotis Panagiotopoulos wrote: > > I am working on a new NuttX-based firmware. > > On this application a hardware board will be able to communicate through > > UART with a Linux system. > > > > There is still some

Re: Simulator - UART

2021-11-03 Thread Xiang Xiao
On Wed, Nov 3, 2021 at 8:14 PM Alan Carvalho de Assis wrote: > Hi Fotis and Tomasz, > > On 11/3/21, Tomasz CEDRO wrote: > > On Wed, Nov 3, 2021 at 11:37 AM Fotis Panagiotopoulos wrote: > >> I am working on a new NuttX-based firmware. > >> On this application a hardware board will be able to comm

Re: Simulator - UART

2021-11-03 Thread Alan Carvalho de Assis
s/look a look/took a look/ On 11/3/21, Alan Carvalho de Assis wrote: > Hi Fotis and Tomasz, > > On 11/3/21, Tomasz CEDRO wrote: >> On Wed, Nov 3, 2021 at 11:37 AM Fotis Panagiotopoulos wrote: >>> I am working on a new NuttX-based firmware. >>> On this application a hardware board will be able to

Re: Simulator - UART

2021-11-03 Thread Alan Carvalho de Assis
Hi Fotis and Tomasz, On 11/3/21, Tomasz CEDRO wrote: > On Wed, Nov 3, 2021 at 11:37 AM Fotis Panagiotopoulos wrote: >> I am working on a new NuttX-based firmware. >> On this application a hardware board will be able to communicate through >> UART with a Linux system. >> >> There is still some tes

Re: Simulator - UART

2021-11-03 Thread Tomasz CEDRO
On Wed, Nov 3, 2021 at 11:37 AM Fotis Panagiotopoulos wrote: > I am working on a new NuttX-based firmware. > On this application a hardware board will be able to communicate through > UART with a Linux system. > > There is still some testing and development to be done on this Linux > program, so I

Simulator - UART

2021-11-03 Thread Fotis Panagiotopoulos
Hello everyone! I am working on a new NuttX-based firmware. On this application a hardware board will be able to communicate through UART with a Linux system. There is still some testing and development to be done on this Linux program, so I thought that this is a great use for the simulator. Ins