• Bug about tcp_send function .......?
    every time my application runs to tcp_send function, it will run into sys_error() with the error_code: ERR_MEM_FREE(means release non existing memory block) and i don't know why?? any...
  • STM32 JTAG debugging with ULINK-ME acts weird
    I've been using MicroVision IDE and debugging STM32 successfully, until recently. When starting the debugging, after loading the software the debugger gives the following: Cannot access Memory...
  • Define act as function?
    I've been using defines as fucntions like this: sbit DRIVE_PIN05 = P1^3; #define DRIVE_PIN05_HIGH (P1MDOUT |= 0x08);(DRIVE_PIN05 = 0) #define DRIVE_PIN05_LOW (P1MDOUT |= 0x08);(DRIVE_PIN05 ...
  • tcp_send failes to second time
    as said - second call to tcp_send fails. Other side is pretty standard MFC app, so I don't expect problem to be there.... init_TcpNet (); _tcp_soc = tcp_get_socket (TCP_TYPE_SERVER, 0, 30, tcp_callback...
  • Shall the tcp_send function be used on the TCP server?
    Now I'm using RL-TCPnet on an embedded controller which acts as the TCP server. The server returns back different messages according to different messages sent by different clients. To return back the...