search for: crtscts

Displaying 20 results from an estimated 35 matches for "crtscts".

2001 Feb 28
1
com port acccess again
...not supported (yet) err:file:CreateFileA Couldn't open device 'com3'! trace:comm:GetCommState handle 132, ptr 0x40596080 trace:comm:GetCommState OK trace:comm:GetCommState bytesize 8 baudrate 110 fParity 0 Parity 0 stopbits 1 trace:comm:GetCommState ~IXON ~IXOFF trace:comm:GetCommState CRTSCTS trace:comm:BuildCommDCBAndTimeoutsA (com2:115200,n,8,1,0x40596080,(nil)) trace:comm:BuildCommDCB16 (com2:115200,n,8,1), ptr 0x40596004 trace:comm:BuildCommDCB16 baudrate (110) trace:comm:BuildCommDCB16 parity (N) trace:comm:BuildCommDCB16 charsize (8) trace:comm:BuildCommDCB16 stopbits (1) trace:co...
2001 Nov 04
5
Wine and the serial port
I have an application that talks to hardware via the serial port. (Actually, it talks to a lot of hardware, banking peripherals). The app runs on both Win32 and OS/2. Of course, the main theme is porting the thing natively to linux (and I'm working on that). But just for fun I tried to get it to work with WINE, and while the "device emulation" works perfectly (much to my
2001 Nov 07
1
WG: Re: Wine and the serial port [LONG]
...--------------------------- trace:file:CreateFileA opening device 'COM1' trace:comm:GetCommState handle 268, ptr 0x421666f8 trace:comm:GetCommState OK trace:comm:GetCommState bytesize 8 baudrate 9600 fParity 1 Parity 0 stopbits 2 trace:comm:GetCommState ~IXON ~IXOFF trace:comm:GetCommState ~CRTSCTS trace:comm:BuildCommDCBAndTimeoutsA (baud=9600 parity=o data=8 stop=2,0x421666f8,(nil)) trace:comm:SetCommState handle 268, ptr 0x421666f8 trace:comm:SetCommState bytesize 8 baudrate 9600 fParity 1 Parity 0 stopbits 2 trace:comm:SetCommState ~IXON ~IXOFF trace:comm:SetCommState CRTSCTS trace:comm:S...
2001 Dec 08
0
Resource temporarily unavailable (fwd)
...tt using som P2P software that a swedish guy called Linus is putting together. in fact it works, but so far We need a windoze box to controll the Thinkboxx. Cool hu? and i did try your patch, though the results here is without it. the patch did not get communication running, but it did remove the crtscts and DSR/DTR and left me with the ~IXON ~IXOFF SetCommState thingie. I hawe left to try your patch with the new cable, but i will try it on monday. The1trex -- Philosophers have tried to interpret the world in different ways; the important thing is to change it. - Karl Marx >From: Mike Mc...
2017 Jan 16
2
^C doesnt work on ssh session
...24; columns 80; line = 0; intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>; eol2 = <undef>; swtch = <undef>; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R; werase = ^W; lnext = ^V; flush = ^O; min = 1; time = 0; -parenb -parodd cs8 -hupcl -cstopb cread -clocal -crtscts -ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl ixon -ixoff -iuclc -ixany -imaxbel -iutf8 opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0 isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt echoctl echoke another query i...
2009 Jun 19
3
Wine and serial port again
...L_SERIAL_GET_CHARS (nil) 0 0x32e8d6 6 0x32e878 trace:comm:GetCommState OK trace:comm:dump_dcb bytesize=8 baudrate=9600 fParity=0 Parity=0 stopbits=1 trace:comm:dump_dcb ~IXON IXOFF trace:comm:dump_dcb fOutxCtsFlow=0 fRtsControl=1 trace:comm:dump_dcb fOutxDsrFlow=0 fDtrControl=1 trace:comm:dump_dcb ~CRTSCTS trace:comm:dump_dcb bytesize=8 baudrate=115200 fParity=0 Parity=0 stopbits=2 trace:comm:dump_dcb ~IXON ~IXOFF trace:comm:dump_dcb fOutxCtsFlow=0 fRtsControl=1 trace:comm:dump_dcb fOutxDsrFlow=0 fDtrControl=1 trace:comm:dump_dcb ~CRTSCTS trace:comm:io_control 0xdc IOCTL_SERIAL_SET_BAUD_RATE 0x32e8e0...
2013 Apr 28
8
[UART] GPS 18-5Hz LVC and COM1 silence, OK on Linux though...
...rows 0; columns 0; line = 0; intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>; eol2 = <undef>; swtch = <undef>; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R; werase = ^W; lnext = ^V; flush = ^O; min = 1; time = 0; -parenb -parodd cs8 hupcl -cstopb cread clocal -crtscts -ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany -imaxbel -iutf8 -opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0 -isig -icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt echoctl echoke $ sudo cat /d...
2011 Apr 13
1
Fwd: Re: Asterisk as a Condo door opener/intercom
...e. */ if ((fd = open(SWDEV, O_RDWR | O_NDELAY))< 0) { fprintf(stderr, "lpswtich: %s: %d\n", SWDEV, strerror(errno)); exit(1);} cfmakeraw(&port_config ); port_config.c_iflag=port_config.c_iflag|IXON; port_config.c_oflag=port_config.c_oflag|CLOCAL|~CRTSCTS; tcsetattr( fd, TCSANOW,&port_config ); ioctl(fd, TIOCMSET,&set_bits ); /* wait for printer to warm up */ sleep(45); /* not say "ready" and release the printer */ set_bits = 6; cfmakeraw(&port_config ); port_config.c_iflag=port_config...
2005 Aug 11
1
Problem connecting a USB modem.
...ding: ATZ Aug 11 17:50:16 c4 wvdial[3034]: Modem not responding. Aug 11 17:50:16 c4 pppd[3019]: Connect script failed Aug 11 17:50:17 c4 pppd[3019]: Exit. /etc/wvdial.conf [Modem0] Modem = /dev/ttyACM0 Baud = 57600 SetVolume = 0 Dial Command = ATDT Init1 = ATZ Init3 = ATM0 FlowControl = Hardware (CRTSCTS) [Dialer mymodem] Username = XXXXXXXXX Password = xxxx Phone = XXXXX Stupid Mode = 1 Inherits = Modem0 ----------------------------------------- Fedora Core 1: /var/log/messages --> Aug 11 09:54:58 c1 kernel: usb.c: USB device not accepting new address=9 (error=-110) Aug 11 09:54:59 c1 kernel...
2003 May 21
6
COM: port problems
Unfortunately, almost all the Windows programs I want to run under Wine need to access the COM: ports, and I cannot get any of them to run. Typically, I get stuff like this ... fixme:comm:EscapeCommFunction16 no cid=0 found! fixme:comm:EscapeCommFunction16 no cid=0 found! err:comm:COMM16_ReadComplete async read failed 000003e3 fixme:comm:EscapeCommFunction16 no cid=3 found!
2006 Aug 18
3
connecting linux console using serial port (NOW PPP)
Alex, thanks for your soon answer, but in case I want to configure PPP on this server, what files do I have to configure? Can I login in this server using SSHD over a PPP conection? Regards; Israel > Just terminal access -> I want to login in my linux server connecting > through the modem connected in /dev/ttyS0 Not sure if this is complete. Install mgetty if not already present on
2004 Aug 19
1
Serial Communication
...andle 0x9c, ptr 0x4132b454 trace:comm:GetCommState OK trace:comm:GetCommState bytesize 8 baudrate 38400 fParity 0 Parity 2 stopbits 1 trace:comm:GetCommState ~IXON ~IXOFF trace:comm:GetCommState fOutxCtsFlow 1 fRtsControl 2 trace:comm:GetCommState fOutxDsrFlow 0 fDtrControl1 trace:comm:GetCommState CRTSCTS trace:comm:GetCommTimeouts (0x9c,0x4132b470) trace:comm:BuildCommDCBAndTimeoutsA (38400,e,8,1,0x4066ef88,(nil)) trace:comm:BuildCommDCBAndTimeoutsW (L"38400,e,8,1",0x4066ef88,(nil)) trace:comm:SetCommState handle 0x9c, ptr 0x4066ef88 trace:comm:SetCommState bytesize 8 baudrate 38400 fPari...
2001 Nov 28
46
Resource temporarily unavailable
Im trying to run this program called Thinkboxx and wen it tryes to comunicate over the comm port it hangs. Here are som output to read. earlier on i get: Call kernel32.VirtualAlloc(43050000,00001000,00001000,00000004) ret=0058557c Ret kernel32.VirtualAlloc() retval=43050000 ret=0058557c thats from vhere the com port gets an virtual memory space, i think. and in the end i have: Call
2016 Apr 20
2
Backspace key does not work in a ssh chroot jail
I setup a ssh chroot jail following this[1] guide. It works for my user to login, use ls and use scp which is all I really want. I do have a problem I cannot solve: when connected and navigating the filesystem, the backspace key actually moves the cursor forward and does not delete what I type. I may have found a hint from some googling that readline will read in /etc/inputrc on login but if
2007 Jun 04
2
APCsmart serial port problem
...ows 0; columns 0; line = 0; intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>; eol2 = <undef>; swtch = <undef>; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R; werase = ^W; lnext = ^V; flush = ^O; min = 1; time = 0; parenb parodd cs7 hupcl -cstopb cread -clocal -crtscts -ignbrk -brkint -ignpar -parmrk inpck istrip -inlcr -igncr icrnl ixon ixoff -iuclc -ixany -imaxbel -iutf8 opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0 isig icanon -iexten -echo echoe echok -echonl -noflsh -xcase -tostop -echoprt -echoctl echoke According to AP...
2005 Mar 21
0
Comport access error
...ndle 0xc8, ptr 0x4069f978 trace:comm:GetCommState OK trace:comm:GetCommState bytesize 8 baudrate 38400 fParity 0 Parity 0 st opbits 1 trace:comm:GetCommState IXON ~IXOFF trace:comm:GetCommState fOutxCtsFlow 0 fRtsControl 1 trace:comm:GetCommState fOutxDsrFlow 0 fDtrControl1 trace:comm:GetCommState ~CRTSCTS trace:comm:SetCommState handle 0xc8, ptr 0x4069f978 trace:comm:SetCommState bytesize 8 baudrate 38400 fParity 0 Parity 0 st opbits 1 trace:comm:SetCommState IXON ~IXOFF trace:comm:SetCommState fOutxCtsFlow 0 fRtsControl 1 trace:comm:SetCommState fOutxDsrFlow 0 fDtrControl1 trace:comm:SetCommMask ha...
2015 Aug 26
0
APC BACK UPS 2200 model BZ2200BI-BR (update)
...-echoprt -altwerase -noflsh -tostop -flusho -pendin -nokerninfo -extproc iflags: -istrip icrnl -inlcr -igncr ixon -ixoff ixany imaxbel -ignbrk brkint -inpck -ignpar -parmrk oflags: opost onlcr -ocrnl tab0 -onocr -onlret cflags: cread cs8 -parenb -parodd hupcl clocal -cstopb -crtscts -dsrflow -dtrflow -mdmbuf cchars: discard = ^O; dsusp = ^Y; eof = ^D; eol = <undef>; eol2 = <undef>; erase = ^?; erase2 = ^H; intr = ^C; kill = ^U; lnext = ^V; min = 1; quit = ^\; reprint = ^R; start = ^Q; status = ^T; stop = ^S; susp = ^Z; time = 0; wera...
2005 Apr 17
1
IPSEC l2tpd and Windows shares problem
...bsdipsec ppp debug = yes pppoptfile = /usr/local/etc/l2tp/options.l2tpd ======================================= /usr/local/etc/l2tp/options.l2tpd ======================================= noauth proxyarp lcp-echo-interval 30 lcp-echo-failure 6 ms-dns 192.168.0.3 ms-dns 192.168.0.4 ms-wins 192.168.0.6 crtscts idle 1800 mtu 1400 mru 1400 lock nodetach debug ==================================== Note: the IP address of the Private Interface is 192.168.0.1/24 -- With regards, Vicky Shrestha
2005 Feb 20
0
Re: Asterisk-Users Digest, Vol 7, Issue 260
...if ((fd = open(SWDEV, O_RDWR | O_NDELAY)) < 0) { fprintf(stderr, "lpswtich: %s: %s\n", SWDEV, sys_errlist[errno]); exit(1);} cfmakeraw( &port_config ); port_config.c_iflag=port_config.c_iflag|IXON; port_config.c_oflag=port_config.c_oflag|CLOCAL|~CRTSCTS; tcsetattr( fd, TCSANOW, &port_config ); ioctl(fd, TIOCMSET, &set_bits ); sleep(5); close(fd); } /* lpswitch.h * include file for lpswitchd configuration * (c) 1994, David Cook <davidc@advan.ca> */ #include<termios.h> #define FILTERDEUG 0 /* filter...
2011 Mar 31
0
reliance netconnect as on a Linux system ( centos5.5 ) Modem not responding.
...USB0 usbcore: registered new driver usbserial_generic drivers/usb/serial/usb-serial.c: USB Serial Driver core i edit the vi /etc/wvdial.conf with the following content [Dialer Defaults] Modem = /dev/ttyUSB0 Baud = 57600 Setvolume = 0 Dial-AT-OK ATDT Command = Init1 = ZTE FlowControl = Hardware (CRTSCTS) Phone = #777 Username = 7228412233 Password = 7228412233 New PPPD = yes Carrier Check = no Stupid Mode = yes wen i try to detect the modem it gives me a failure wvdialconf /etc/wvdial.conf ::::::: Scanning your serial ports for a modem. ttyS0<*1>: ATQ0 V1 E1 -- failed with 2400 baud, ne...