Request - Hyperterminal tutorial


Closed Thread
Results 1 to 11 of 11

Hybrid View

  1. #1
    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

  2. #2
    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