RE: Serial port sniffing?

2020-07-20 Thread Ronaldo Mercado
Hi, Perhaps the script below works… # set up the baud rate and no parity stty -F /dev/ttyUSB0 9600 -parenb # listen on TCP port 8001 and forward all traffic to the serial port while [ 1 ] ; do nc -l $(hostname -i) 8001 /dev/ttyUSB0; echo reconnecting ...; done Then intercept all network

RE: CPE Weekly: 2020-06-21

2020-06-22 Thread Ronaldo Mercado
Thanks for your message. > See our wiki page here for more > information:https://docs.fedoraproject.org/en-US/cpe/ I am replying because the link in your message reports "403 Forbidden" I copy below the message from firefox. Best wishes, R Mercado Forbidden You don't have permission to

Re: How to deal with large number of bugs related to the, "multiple definition of..." issue

2020-02-17 Thread Ronaldo Mercado
Hello, > The most common fix I used was, using "extern" in all but one place. > Well I guess what I was looking for was for us non-C/C++ programmers. :) > I can grep the source and arbitrarily choose which one not to use extern > with, but is there a right way? I would like to see an example