Problem with WHILE - WEND


Results 1 to 23 of 23

Threaded View

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


    Did you find this post helpful? Yes | No

    Wink little help

    Try ( to understand ) this ...

    'device: 16F627A master clear is on pin#4 (RA5)
    TRISA = %00010000 ' port A all outputs, except MCLR is input
    TRISB = %00111111 'PORT B ALL INPUT, EXCEPT 6 & 7 OUTPUT
    option_REG = %01111111 'enable weak pullups on port B
    FOOTSW var portb.5 'Foot switch OR CCREADY must be high
    READY var portb.4 'at start

    T var word
    J VAR WORD


    RENCA var portb.7 'FREQUENCY OUTPUT TO J1 PIN 13
    EJECT var portb.6 '100 mS PULSE TO J1 PIN 21
    on interrupt goto poo


    START:
    LOW RENCA : LOW EJECT

    WHILE READY = 0

    'zzzzzzzzzzzzzzzzzzzz ... waiting !!!
    WEND

    GOTO what to do if not ready ???


    DISABLE INTERRUPT
    poo:
    T = 1 '1mS AT 4 mHZ

    freq:

    TOGGLE RENCA
    PAUSE T 'frequency should be 500 Hz (2mS period)

    GOTO freq

    RESUME
    ENABLE INTERRUPT

    end

    NOTE : RESUME and ENABLE INTERRUPT are not compulsory here as program enters an endless loop ...

    Alain
    Last edited by Acetronics2; - 26th May 2006 at 16:57.
    ************************************************** ***********************
    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. Can't read sequential addresses in external EEPROM
    By tjkelly in forum mel PIC BASIC Pro
    Replies: 2
    Last Post: - 18th February 2010, 14:46
  2. HSEROUT and Commas, What? Help Me Understand
    By altech6983 in forum mel PIC BASIC Pro
    Replies: 4
    Last Post: - 20th July 2009, 19:12
  3. USART Problem , but don't know where, in pc? or in PIC?
    By precision in forum mel PIC BASIC Pro
    Replies: 0
    Last Post: - 15th July 2007, 08:12
  4. while wend problem
    By Russ Kincaid in forum mel PIC BASIC Pro
    Replies: 9
    Last Post: - 19th March 2007, 02:53
  5. 1 slave 1 master 1 MAX232 1 problem ?
    By SuB-ZeRo in forum mel PIC BASIC Pro
    Replies: 19
    Last Post: - 31st July 2005, 22:59

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