Request - Hyperterminal tutorial


Closed Thread
Results 1 to 11 of 11

Hybrid View

  1. #1
    Join Date
    May 2004
    Location
    NW France
    Posts
    3,653


    Did you find this post helpful? Yes | No

    Wink

    Hi, Steve

    Did you try this one ???

    http://www.synthmodules.com/other/VBHexTerm-Setup.exe

    Alain
    ************************************************** ***********************
    Why insist on using 32 Bits when you're not even able to deal with the first 8 ones ??? ehhhhhh ...
    ************************************************** ***********************
    IF there is the word "Problem" in your question ...
    certainly the answer is " RTFM " or " RTFDataSheet " !!!
    *****************************************

  2. #2
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    Not bad, but i prefer the one i begun some times ago. AND i can access the whole COM PORT range 1-256

    MicroCode Studio Serial Communicator is nice too. For simple test and ease of use, it's perfect.
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  3. #3
    Join Date
    Jun 2005
    Posts
    37


    Did you find this post helpful? Yes | No

    Default Presentation of data

    I have a question I hope someone can help me with; When using Hyperterminal or RealTerm, is the presentation of the data shown limited to carraige returns and linefeeds (13,10)? Is there anyway to show columns of data for example? I am assuming I would need to build a VB application for anything more elaborate?

    Thanks.

  4. #4
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    Still possible to do it on the PIC side, just insert some spaces between your data and you should be able to have some decent results.

    Still possible to insert a , in between each data, then dump it to the pc, save the file, import in excel/access
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  5. #5
    Join Date
    Jul 2003
    Location
    Colorado Springs
    Posts
    4,959


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by penelopepug View Post
    ... is the presentation of the data shown limited to carraige returns and linefeeds (13,10)? Is there anyway to show columns of data for example
    Yes, you can do all kinds of stuff with HyperTerminal, and ANSI.

    Here's a couple of the basics ...
    Code:
    ClearScreen:
        HSEROUT [27,"[2J"]
    RETURN
    <hr>
    Line    VAR BYTE
    Column  VAR BYTE
    
    Line = 14
    Column = 32
    GOSUB MoveCursor
    
    MoveCursor:
        HSEROUT [27,"[",DEC2 Line,";",DEC2 Column,"H"]
    RETURN
    DT

  6. #6
    Join Date
    Jun 2005
    Posts
    37


    Did you find this post helpful? Yes | No

    Default Presentation of data

    Thanks Steve and Darrel for your help!

Similar Threads

  1. Reading PIC serout in hyperterminal
    By financecatalyst in forum Schematics
    Replies: 5
    Last Post: - 22nd October 2009, 15:13
  2. interactive menu with hyperterminal
    By jamied in forum mel PIC BASIC Pro
    Replies: 12
    Last Post: - 5th January 2009, 11:13
  3. Hyperterminal problem
    By DR.Larq in forum Serial
    Replies: 2
    Last Post: - 9th May 2008, 18:40
  4. Replies: 1
    Last Post: - 30th March 2008, 15:53
  5. Failure Serial Connection with Hyperterminal
    By guanerrr in forum Serial
    Replies: 2
    Last Post: - 5th August 2007, 07:49

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts