Gryphon Utilities: gryphtx

    Usage: gryphtx hostname arg1 arg2...

    Arguments (arg data):
        -p portno    Set server port on hostname (default=7000)
        -c channel    Set channel number (default=1)
        -i iterations    Set number of transmit iterations (default=1)
        -t delay    Set delay between iterations in ms
        -h byte byte ...   Message header bytes
        -d byte byte ...   Message data bytes
        -e byte byte ...   Message extra bytes
        -k id    Kill schedule ID

    gryphtx is a command-line utility that allows message transmission on a Gryphon channel.
    Message transmission may be periodic or one-shot. In the case of one-shot messages, the specified message is sent immediately. In the case of periodic messages (i > 1), gryphtx will return a schedule handle. This handle is used to later kill the transmitting schedule with the -k option.

    Example:

    bash# gryphtx localhost -c 3 -h 01 02 -d 11 22 33 44 -i 1000000 -t 20
    
    Scheduler: Handle = 0x00000055
    
    bash#
    
    
    This command line starts up a periodic transmission schedule with the following characteristics:
    Channel number = 3 (a CAN channel in this example)
    Iterations = 1000000
    Period = 20 mS
    Message header (CAN identifier): 0x0102
    Message data: 0x11 0x22 0x33 0x44 (4 bytes)

    Note: More complex transmission schedules can be started with the gschdtx utility.