Back to the beginning


Results 1 to 40 of 49

Threaded View

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


    Did you find this post helpful? Yes | No

    Default Re: Back to the beginning

    Code:
    '****************************************************************
    '*  Name    : UNTITLED.BAS                                      *
    '*  Author  : [select VIEW...EDITOR OPTIONS]                    *
    '*  Notice  : Copyright (c) 2013 [select VIEW...EDITOR OPTIONS] *
    '*          : All Rights Reserved                               *
    '*  Date    : 06/04/2013                                        *
    '*  Version : 1.0                                               *
    '*  Notes   :                                                   *
    '*          :                                                   *
    '****************************************************************
    ' Name : BLINKXU.pbp
    ' Compiler : PICBASIC PRO Compiler 3.0' Assembler : MPASM
    ' Target PIC : PIC12F509 or similar type
    ' Hardware : LAB-XUSB Experimenter Board
    ' Oscillator : 4MHz external
    ' Keywords : FOR NEXT
    ' Description : PICBASIC PRO program to blink an LED connected 
    ' to PORTD.0 about once a second.
    '
    
    ' Define LOADER_USED to allow use of the boot loader.
    ' This will not affect normal program operation.
    
    
    ' RESET_ORG can be set to move the BASIC program out of the way
    ' of any boot loader running from location 0, such as the
    ' Microchip USB boot loader
    'Define RESET_ORG 800h
    
    #config
        __config _MCLRE_ON & _CP_OFF & _WDT_OFF
    #endconfig
    
    
    mainloop:
    high GPIO.0 ' Turn on LED connected to PORTD.0
    Pause 500 ' Delay for .5 seconds
    Low GPIO.0 ' Turn off LED connected to PORTD.0
    Pause 500 ' Delay for .5 seconds
    Goto mainloop ' Go back to loop and blink LED forever
    
    End
    this one should show 83 Words ...

    just "cut and paste" it ...
    Last edited by Acetronics2; - 6th April 2013 at 17:01.
    ************************************************** ***********************
    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 " !!!
    *****************************************

Similar Threads

  1. Beginning USB How to/Whats needed to use it.
    By wdmagic in forum mel PIC BASIC Pro
    Replies: 9
    Last Post: - 11th April 2013, 21:11
  2. Missing chars at beginning of LCD display
    By jimbostlawrence in forum mel PIC BASIC Pro
    Replies: 3
    Last Post: - 20th November 2009, 00:13
  3. 12F629 beginning
    By Davidpower in forum mel PIC BASIC Pro
    Replies: 11
    Last Post: - 1st October 2007, 22:37
  4. Program returns to beginning at interupt
    By BGreen in forum mel PIC BASIC Pro
    Replies: 5
    Last Post: - 25th April 2005, 11:20

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