• Some other message being sent,
    Hello everyone, I am tryin to program a XC164CM microcontroller for a TWIN CAN application. I tried to operate it in the Normal Gateway mode by receiving a message on one CAN node and transmitting it...
  • C505CA - CAN - reset repetition of transmitted messaged without CAN ACK
    I need an solution to reset the repetition of sending cyclic a message on CAN if no other CAN node (no CAN ACK received) is connected. Example: I send an message to CAN. No other CAN node connected...
  • Getting around delayed ack problem
    Hi, I have an application that sends data via BSD TCP sockets every 50ms to some software on the PC. The problem is, windows uses delayed ack - msdn.microsoft.com/.../aa505957.aspx which means...
  • ACK, SOH , STX ascii format
    Private Function negotiate() As String Dim nego As String = Chr(6) + Chr(48) + Chr(53) + Chr(49) + Chr(13) + Chr(10) sp1.Output(nego) End Function THIS IS A vb FUCTION,i need to send this string...
  • How Can I sent to serial port a float?
    Hi! In my project i sent to serial port a int : unsigned int X; putchar(X); putcahr(X>>8); and everything to work OK!! but if i want change my data type and use float , i cant do ...