picbasic +12c508a+soft_stack error


Closed Thread
Results 1 to 37 of 37

Hybrid View

  1. #1
    Join Date
    Jul 2003
    Posts
    2,405


    Did you find this post helpful? Yes | No

    Default

    Nice work DT.

    Here's one at 13 words.
    Code:
      list      p=16F628A
      #include "P16F628A.inc"
      errorlevel  -302
      __CONFIG _CP_OFF & _BODEN_ON & _MCLRE_OFF & _WDT_ON & _PWRTE_ON & _LVP_OFF & _INTOSC_OSC_NOCLKOUT
    
       clrf  PORTB        ; clear port
       bsf   STATUS,RP0   ; Bank 1
       bcf   TRISB,0      ; RB0 = output
       bcf   OPTION_REG,0 ; 1:64 prescaler to WDT
    
    Left
       sleep             ; go to sleep for 64 * 18mS ~1 second
       rlf   TRISB,F     ; rotate bit across portb from lsb to msb
       btfsc TRISB,7    
       goto  Left
    	
    Right
       sleep          ; go to sleep for 64 * 18mS ~1 second
       rrf   TRISB,F  ; rotate bit across Portb from msb to lsb
       btfsc TRISB,0
       goto  Right
       goto  Left     ; now rotate back to the left.
    	
       End
    Last edited by Bruce; - 19th December 2007 at 18:17.
    Regards,

    -Bruce
    tech at rentron.com
    http://www.rentron.com

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


    Did you find this post helpful? Yes | No

    Default

    Oh Yeah! Very nice Bruce.

    Now that's going to be hard to beat.
    If you don't hear from me for a month.
    You'll know what happened.
    DT

  3. #3
    skimask's Avatar
    skimask Guest


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Darrel Taylor View Post
    Oh Yeah! Very nice Bruce.

    Now that's going to be hard to beat.
    If you don't hear from me for a month.
    You'll know what happened.
    I just checked on my '628A on my breadboard...about a ba-zillion times...
    I set up code/hardware to do nothing but RESET, and put Port B onto a bank of LEDs, Vdd on the other side of the LED.
    EACH time, Port B came up ZERO...no LEDs lit up, until I set a TRIS bit for output.
    So, my submission...
    Coming in at 12 bytes...

    Code:
      list      p=16F628A
      #include "P16F628A.inc"
      errorlevel  -302
      __CONFIG _CP_OFF & _BODEN_ON & _MCLRE_OFF & _WDT_ON & _PWRTE_ON & _LVP_OFF & _INTOSC_OSC_NOCLKOUT
    
    ;   clrf  PORTB        ; clear port - not required on my breadboard, might be different on others
       bsf   STATUS,RP0   ; Bank 1
       bcf   TRISB,0      ; RB0 = output
       bcf   OPTION_REG,0 ; 1:64 prescaler to WDT
    
    Left
       sleep             ; go to sleep for 64 * 18mS ~1 second
       rlf   TRISB,F     ; rotate bit across portb from lsb to msb
       btfsc TRISB,7    
       goto  Left
    	
    Right
       sleep          ; go to sleep for 64 * 18mS ~1 second
       rrf   TRISB,F  ; rotate bit across Portb from msb to lsb
       btfsc TRISB,0
       goto  Right
       goto  Left     ; now rotate back to the left.
    	
       End

    Somebody else check this out and see what happens.
    As I stated, maybe it's my breadboard, maybe it's my 628A (I've only got 1 left), maybe it's the rise time on my PSU.

    EDIT: Datasheet says that the port registers come up in an unknown state. Apparently, in this case, I now know my state...
    Last edited by skimask; - 19th December 2007 at 20:23.

  4. #4
    Join Date
    Jul 2003
    Posts
    2,405


    Did you find this post helpful? Yes | No

    Default

    It might work on one series, but I wouldn't count on it as being reliable across the board.
    I have seen various PICs come up with totally random values in port latches at POR, so
    you really do need to clear portb latches first if it's to be reliable.
    Regards,

    -Bruce
    tech at rentron.com
    http://www.rentron.com

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


    Did you find this post helpful? Yes | No

    Default

    i'm thinking of something using interrupt.. not sure if it could reduce things to 8-10 words... mmm..
    Steve

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

  6. #6
    Join Date
    Jul 2003
    Posts
    2,405


    Did you find this post helpful? Yes | No

    Default

    I had considered that approach too, but more than half of your code space (or more) would
    be eaten up with interrupt configuration setup.

    Making it "reliable" with less than 13 words is going to be a real task.
    Regards,

    -Bruce
    tech at rentron.com
    http://www.rentron.com

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


    Did you find this post helpful? Yes | No

    Default

    yup, but where is it stated that it has to be reliable, where it is stated that we need to use the same PIC and hardware ?

    i still believe it's doable... but with some hair lost
    Steve

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

  8. #8
    skimask's Avatar
    skimask Guest


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Bruce View Post
    It might work on one series, but I wouldn't count on it as being reliable across the board.
    I have seen various PICs come up with totally random values in port latches at POR, so
    you really do need to clear portb latches first if it's to be reliable.
    I don't doubt that at all...
    I just checked the CARRY bit, datasheet says unknown on POR, mine come's up cleared every time (at least every time I've check anyways). That shoots that idea down...

Similar Threads

  1. Loop with two motor and 2 sensors
    By MrRoboto in forum mel PIC BASIC
    Replies: 4
    Last Post: - 8th December 2008, 23:40
  2. Optimizing DIV
    By skimask in forum mel PIC BASIC Pro
    Replies: 41
    Last Post: - 22nd September 2008, 04:58
  3. pbp245 compliation error
    By Woodzy in forum mel PIC BASIC Pro
    Replies: 9
    Last Post: - 25th July 2006, 05:59
  4. 16F88 Compile error
    By Toley00 in forum mel PIC BASIC Pro
    Replies: 6
    Last Post: - 2nd November 2005, 00:22
  5. Compiler/Assembler Error
    By LT_Pic in forum General
    Replies: 7
    Last Post: - 21st July 2005, 09:47

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