This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

PPP NULL modem Dial-out

Hello,

I'm trying to setup PPP over NULL modem. Till now i can dial-in to my keil MBD2100 with LPC 2129, over a NULL modem cable in windows and get my http-server to show my index.htm.

When i setup incoming-connection in windows and use the following code, nothing happens:

<snip>
init_TcpNet();

init_modem();

ppp_connect(NULL,user,pass);

while(1)
{ timer_poll(); main_TcpNet();
}

</snip>

Thanks

Akshat

Parents
  • Here is a note from abstract.txt

    NOTE: Serial interface uses only TXD, RXD and GND signals from the
          RS232 line. However in most cases some additional connections
          are required by the PC COM interface. For a 9-PIN standard
          connector you should therefore connect the pin 7 (RTS) to
          pin 8 (CTS) and pin 1 (CD) to pin 4 (DTR) and to pin 6 (DSR).
    

    Windows are not happy with only TXD and RXD. Have you connected also the other pins?

    Franc

Reply
  • Here is a note from abstract.txt

    NOTE: Serial interface uses only TXD, RXD and GND signals from the
          RS232 line. However in most cases some additional connections
          are required by the PC COM interface. For a 9-PIN standard
          connector you should therefore connect the pin 7 (RTS) to
          pin 8 (CTS) and pin 1 (CD) to pin 4 (DTR) and to pin 6 (DSR).
    

    Windows are not happy with only TXD and RXD. Have you connected also the other pins?

    Franc

Children