PicPuter

  Home
  Products
  Contact

Using

  Download
  Manual
  Examples
  UserGroup

Development

  Revision
  Future
  Bugs

Other

  DLHexRec
  Modd Audio
  Veracity
  DSP
  Blinky

Miscellaneous

  Links
  Search
  Obsolete
  Site Design
  Disclaimer

 
.
PicPuter 2.0 : Chapter 6 : Variables


6.0 Variable Reference


  • 6.01 A-Z
  • 6.02 ADC0
  • 6.03 ADC1
  • 6.04 ADC2
  • 6.05 ADC3
  • 6.06 ADC4
  • 6.07 ASPEED
  • 6.08 ASTEP
  • 6.09 BSPEED
  • 6.10 BSTEP
  • 6.11 CONFIGURATOR
  • 6.12 FUTZ
  • 6.13 EVENTS
  • 6.14 HOUR
  • 6.15 HUND
  • 6.16 MIN
  • 6.17 MSB
  • 6.18 PC
  • 6.19 PP0
  • 6.20 PP1
  • 6.21 PP2
  • 6.22 PP3
  • 6.23 PW0
  • 6.24 PW1
  • 6.25 PW2
  • 6.26 PW3
  • 6.27 RESET
  • 6.28 RND
  • 6.29 SEC
  • 6.30 SP
  • 6.31 TPH
  • 6.32 USAGE

    6.01 A B C ... X Y ZGeneral Purpose Variables

    Memory Locations: (uppercase ascii value)
    A = (*$C1<<8) + *$41
    Z = (*$DA<<8) + *$5A


    Twenty six general purpose variables available. Each is a signed 16 bit value which can represent any number between 32767 to -32786. A variable may also be used as an 8.8 fixed point value.

    ;Adding some Numbers
    70 a = 10
    71 b = 20
    72 c = a + b
    73 PRINT C

    Output:
    30

     
    The upper eight bits can be accessed as an unsigned 8 bit value by appending h to the end of any variable.

    ;Using the 'h' modifier
    70 A = $0100
    71 B = 20
    72 C = Ah + B
    73 PRINT Ah
    73 PRINT C

    Output:
    1
    21

     


    [ index | memory | math | statements | variables | registers | assembler ]

    6.02 ADC0Analog to Digital Converter

    Analog to Digital Converter 0 Value

    This variable contains the 10 bit output of the internal ADC converter. The ADC convertor runs in the background whenever CONFIGURATOR bit 2 is set. (SETCON 2) The 10 bit value may be either right or left justified depending on the state ADCON1 bit 7. (SET ADCON1 7) See the __HARDWARE__ Chapter for information on which pin is for input.

    ;Print ADC0
    70 pause 1 ADC ; Wait for new data
    71 print ADC0 CRLF
    72 print "\13" ; print CR only
    73 goto 70

     

    Warning: PicPuter does not use any semaphores, read after pause statement.

    Also See : [ ADC1 | ADC2 | ADC3 | ADC4 ]

    6.03 ADC1Analog to Digital Converter

    Analog to Digital Converter 1 Value

    This variable contains the 10 bit output of the internal ADC converter. The ADC convertor runs in the background whenever CONFIGURATOR bit 2 is set. (SETCON 2) The 10 bit value may be either right or left justified depending on the state ADCON1 bit 7. (SET ADCON1 7) See the __HARDWARE__ Chapter for information on which pin is for input.

    ;Print ADC1
    70 pause 1 ADC ; Wait for new data
    71 print ADC1 CRLF
    72 goto 70

     

    Warning: PicPuter does not use any semaphores, read after pause statement.

    Also See : [ ADC0 | ADC2 | ADC3 | ADC4 ]

    6.04 ADC2Analog to Digital Converter

    Analog to Digital Converter 2 Value

    This variable contains the 10 bit output of the internal ADC converter. The ADC convertor runs in the background whenever CONFIGURATOR bit 2 is set. (SETCON 2) The 10 bit value may be either right or left justified depending on the state ADCON1 bit 7. (SET ADCON1 7) See the __HARDWARE__ Chapter for information on which pin is for input.

    ;Print ADC2
    70 pause 1 ADC ; Wait for new data
    71 print ADC2 CRLF
    72 print "\13" ; print CR only
    73 goto 70

     

    Warning: PicPuter does not use any semaphores, read after pause statement.

    Also See : [ ADC0 | ADC1 | ADC3 | ADC4 ]

    6.05 ADC3Analog to Digital Converter

    Analog to Digital Converter 3 Value

    This variable contains the 10 bit output of the internal ADC converter. The ADC convertor runs in the background whenever CONFIGURATOR bit 2 is set. (SETCON 2) The 10 bit value may be either right or left justified depending on the state ADCON1 bit 7. (SET ADCON1 7) See the __HARDWARE__ Chapter for information on which pin is for input.

    ;Print ADC3
    70 pause 1 ADC ; Wait for new data
    71 print ADC3 CRLF
    72 goto 70

     

    Warning: PicPuter does not use any semaphores, read after pause statement.

    Also See : [ ADC0 | ADC1 | ADC2 | ADC4 ]

    6.06 ADC4Analog to Digital Converter

    Analog to Digital Converter 4 Value

    This variable contains the 10 bit output of the internal ADC converter. The ADC convertor runs in the background whenever CONFIGURATOR bit 2 is set. (SETCON 2) The 10 bit value may be either right or left justified depending on the state ADCON1 bit 7. (SET ADCON1 7) See the __HARDWARE__ Chapter for information on which pin is for input.

    ;Print ADC4
    70 pause 1 ADC ; Wait for new data
    71 print ADC4
    72 print "\13" ; print CR only
    73 goto 70

     

    Warning: PicPuter does not use any semaphores, read after pause statement.

    Also See : [ ADC0 | ADC1 | ADC2 | ADC3 ]

    6.07 ASPEEDSpeed for Stepper Motor A

    Speed for Stepper Motor A

    This 8 bit unsigned variable contains the speed for stepper motor A. Since PicPuter switches so fast, you may find that you need to put a pretty large value to get the motor to work. The speed that the motor will pulse by default will be equal to 1uS per pulse is ASPEED=1. If ASPEED = 0 then the delay is 256 uS by default.

    ;Move in a circle
    69 SETCON 3
    70 ASPEED=255 ;
    71 BSPEED=220
    72 ASTEP=ASTEP OR 64
    73 BSTEP=BSTEP OR 64
    74 goto 72

     
    The signals to drive the stepper are at PORTD.0 and PORTD.1. The stepper motor output only appears if CONFIGURATOR bit 2 is set. (SETCON 2) See the stepper motor Chapter for additional information and the __HARDWARE__ Chapter for information on which pin is used for output.

    Also See : [ ASPEED | ASTEP | BSPEED | BSTEP ]

    6.08 ASTEPStep Control for Stepper Motor A

    Step Control for Speed for Stepper Motor A

    This 8 bit signed variable contains the step for stepper motor A.

    To move a motor 100 steps forward use a statement like 'ASTEP = 100'. This variable will slowly return to zero as the motor steps. To step in the reverse direction use a statement like 'ASTEP = -100'.

    Once the value reaches zero, the motor stops. If you want the motor to run continuously, you need to update the variable before it reaches zero. Since the variable is only 8 bits, only values between 127 to -128 are valid.

    ;Move in a circle
    69 SETCON 3 
    70 ASPEED=255 ;
    71 BSPEED=220
    72 ASTEP=ASTEP OR 64
    73 BSTEP=BSTEP OR 64
    74 goto 72

     
    The signals to drive the stepper are at PORTD.0 and PORTD.1. The stepper motor output only appears if CONFIGURATOR bit 2 is set. (SETCON 2) See the stepper motor Chapter for additional information and the __HARDWARE__ Chapter for information on which pin is used for output.

    Also See : [ ASPEED | ASTEP | BSPEED | BSTEP ]

    6.09 BSPEEDSpeed for Stepper Motor B

    Speed for Stepper Motor A

    This 8 bit unsigned variable contains the speed for stepper motor B. Since PicPuter switches so fast, you may find that you need to put a pretty large value to get the motor to work. The speed that the motor will pulse by default will be equal to 1uS per pulse is BSPEED=1. If BSPEED = 0 then the delay is 256 uS.

    ;Move in a circle
    69 SETCON 3
    70 ASPEED=255 ;
    71 BSPEED=220
    72 ASTEP=ASTEP OR 64
    73 BSTEP=BSTEP OR 64
    74 goto 72

     
    The signals to drive the stepper are at PORTD.2 and PORTD.3. The stepper motor output only appears if CONFIGURATOR bit 2 is set. (SETCON 2) See the stepper motor Chapter for additional information and the __HARDWARE__ Chapter for information on which pin is used for output.

    Also See : [ ASPEED | ASTEP | BSPEED | BSTEP ]

    6.10 BSTEPStep Control for Stepper Motor B

    Step Control for Speed for Stepper Motor B

    This 8 bit signed variable contains the step for stepper motor B.

    To move a motor 100 steps forward use a statement like 'BSTEP = 100'. This variable will slowly return to zero as the motor steps. To step in the reverse direction use a statement like 'BSTEP = -100'.

    Once the value reaches zero, the motor stops. If you want the motor to run continuously, you need to update the variable before it reaches zero. Since the variable is only 8 bits, only values between 127 to -128 are valid.

    ;Move in a circle
    69 SETCON 3 
    70 ASPEED=255 ;
    71 BSPEED=220
    72 ASTEP=ASTEP OR 64
    73 BSTEP=BSTEP OR 64
    74 goto 72

     
    The signals to drive the stepper are at PORTD.0 and PORTD.1. The stepper motor output only appears if CONFIGURATOR bit 2 is set. (SETCON 2) See the stepper motor Chapter for additional information and the __HARDWARE__ Chapter for information on which pin is used for output.

    Also See : [ ASPEED | ASTEP | BSPEED | BSTEP ]

    6.11 CONfiguratorConfiguration Variable

    The CONFIGURATOR variable is used to turn on and off individual PicPuter features.

    PicPuter was designed to be highly configurable, some pins on the chip have a dual purpose. For instance six bits of PORTB can be used to drive an LCD Character Display. If the LCD bit is set then PORTB generates the signals for the display. When the LCD bit is Cleared then PORTB remains untouched.
    15141312111098
    MEMORY PROTECTSERVICE VECTORSCONTR -ACTIONFLASH SIGNEDPROMPT TIME PROMPT SECONDUSAGE LEDUSAGE


    76543210
    LCD MIRRORLCD FOUR LINESLCDFUTUREADCROBOT PORTRANDOMTIME


    15  MEMORY PROTECTThe memory used by the PicPuter Kenel $0000-$0FFF is protected from being overwritten when this bit is clear.
    14 SERVICE VECTORSCall the user interupt vector $1000 each tick or when another irq occurs.
    13 CONTRATIONPrints contractions for all keywords and variables. Useful when debugging on the LCD Display.
    12 FLASH SIGNEDReads from 14 bit flash ram are sign extended if set otherwise the upper bits are always clear.
    11 PROMPT TIMEActivates the time in prompt
    11 PROMPT TIMEActivates the time in prompt
    10  PROMPT SECTurns on the second display in the prompt. PROMPT TIME must also be set.
    9 USAGE LEDEnables the USAGE LED. The USAGE bit must also be set.
    8 USAGETurn on/off MPU Usage Variable and LED.
    7 LCD MIRROR [buggy in V 1.80] When this bit is set everything printed to the UART is also mirrored to the LCD display.
    5 LCD FOUR LINESPicPuter Assumes the LCD DISPLAY is 4 lines by setting this bit. If this bit is cleared then the LCD is assumed to be 2 lines
    5 LCDThe LCD DISPLAY Port is activated by setting this bit. If this bit is cleared then any prints to the LCD will be ignored and PORTB will remain unchanged.
    4 FUTUREresevered for future use.
    3 ADCTurn ON/OFF the analog to digital converters.
    2 ROBOT PORTTurn ON/OFF the pulse width modulators and stepper motor ports
    1  TIMEThe real time clock can be suspended by clearing this bit.
    0 RANDOMThe Random Number Generator may be turned off by clearing this bit. This will save a few cycles of the MPU.


    Individual bits can be set in the configurator with the commands such as;
    set configurator , 2
    clr configurator ,2
    or one of its many contractions like 'SETCON2' or 'CLRCON2'

    [ index | memory | math | statements | variables | registers | assembler ]

    6.12 FUTzReal Time Clock Fine Adjustment
    Power On Reset: $0000 Other Resets:Unchanged

    A fine adjustment for the real time clock. (16 bit)

    Because most crystals are slightly off in frequency, the internal clock may run a little fast or slow. The frequency also drifts with age. This variable acts as a fine adjustment for the clock. A course adjustment is available in the PICs PR2 register.

    The lower 8 bits are treated as a signed 8 bit value added to the HUND register every minute except minute 0.
    The upper 8 bits are added to HUND every hour.


    [ index | memory | math | statements | variables | registers | assembler ]

    6.13 EVEntsEvent Flags

    Event Flags (16 bit)

    1514 1312111098
    ---------------NEW LINENEW USAGECTRL C

    76543210
    USERRX CHAR ADCHOURMINSECHUNDTICK

    Each bit is set whenever the event occurs. They are only cleared manually, ei the pause command. The lower 8 bits are used by the PAUSE command.

    [ index | memory | math | statements | variables | registers | assembler ]

    6.14 HOUrHour of the Week

    Hour of the Week (8 bit)

    Contains the current Hour of the week.

    Also See : [ HOUR | MIN | SEC | HUND ]

    6.15 HUNDHundredths of a Second

    Hundredths of a Second (8 bit)

    Contains the current hundredths of a second.

    Also See : [ HOUR | MIN | SEC | HUND ]

    6.16 MINMinute

    Minute (8 bit)

    Contains the current Minute.

    Also See : [ HOUR | MIN | SEC | HUND ]

    6.17  MSBMultiply Most Significant Bit

    Multiply Most Significant Bit (8 bit)

    Contains the upper eight bits of a multiply. This value is invalid if the first number of the multiply is negative. This is due to the optimization technique used. If you are going to need to use this variable, be positive the first value of a multiply is positive, it is negatory to use a negative.

    [ index | memory | math | statements | variables | registers | assembler ]

    6.18 PCProgram Counter

    Program Counter (16 bit)
    Program Counter, fully modifiable. This variable is the line number for the current running statement. If you modify this value, a goto statement is done. You can even use a statement like 'PC += RND AND 3' to randomly jump to one of the next 4 statements.

    ;Using the PC Register
    70 PRINT PC 

    Output:
    70

     
    [ index | memory | math | statements | variables | registers | assembler ]

    6.19 PP0Pulse Period 0

    Pulse Width Modulator 0 Period Register (8 bit)

    This 8 bit variable sets the period for PWM0. The period register sets the frequency for the PWM output. The default tick for picputer is 1/12 of one micro second, but it may be altered. If the default tick is used, the frequency can be determined by the equation freq=1/(PP0*(1/12000)).

    The CONFIGURATOR variable bit 2 must be set in order to see any output.
    See the PWM Chapter for additional information.

    Also See : [ PP0 | PP1 | PP2 | PP3 | PW0 | PW1 | PW2 | PW3 ]

    6.20 PP1 Pulse Period 1

    Pulse Width Modulator 1 Period Register (8 bit)

    This 8 bit variable sets the period for PWM1. The period register sets the frequency for the PWM output. The default tick for picputer is 1/12 of one micro second, but it may be altered. If the default tick is used, the frequency can be determined by the equation freq=1/(PP1*(1/12000)).

    The CONFIGURATOR variable bit 2 must be set in order to see any output.
    See the PWM Chapter for additional information.

    Also See : [ PP0 | PP1 | PP2 | PP3 | PW0 | PW1 | PW2 | PW3 ]

    6.21 PP2Pulse Period 2

    Pulse Width Modulator 2 Period Register (8 bit)

    This 8 bit variable sets the period for PWM2. The period register sets the frequency for the PWM output. The default tick for picputer is 1/12 of one micro second, but it may be altered. If the default tick is used, the frequency can be determined by the equation freq=1/(PP2*(1/12000)).

    The CONFIGURATOR variable bit 2 must be set in order to see any output.
    See the PWM Chapter for additional information.

    Also See : [ PP0 | PP1 | PP2 | PP3 | PW0 | PW1 | PW2 | PW3 ]

    6.22 PP3Pulse Period 3

    Pulse Width Modulator 3 Period Register (8 bit)

    This 8 bit variable sets the period for PWM3. The period register sets the frequency for the PWM output. The default tick for picputer is 1/12 of one micro second, but it may be altered. If the default tick is used, the frequency can be determined by the equation freq=1/(PP3*(1/12000)).

    The CONFIGURATOR variable bit 2 must be set in order to see any output.
    See the PWM Chapter for additional information.

    Also See : [ PP0 | PP1 | PP2 | PP3 | PW0 | PW1 | PW2 | PW3 ]

    6.23 PW0 Pulse Width for channel 0

    Pulse Width Modulator 0 Width Register (8 bit)

    This 8 bit variable sets the width for PWM0 Unit.

    If the value is zero the pin will always be low.
    If the value is less than PP0 the pin will be high for PW0 TICKS.
    If this value is greater than PP0 the pin will always be high.

    The CONFIGURATOR variable bit 2 must be set in order to see any output.
    See the PWM Chapter for additional information.

    Also See : [ PP0 | PP1 | PP2 | PP3 | PW0 | PW1 | PW2 | PW3 ]

    6.24 PW1Pulse Width for channel 1

    Pulse Width Modulator 1 Width Register (8 bit)

    This 8 bit variable sets the width for PWM1 Unit.

    If the value is zero the pin will always be low.
    If the value is less than PP1 the pin will be high for PW1 TICKS.
    If this value is greater than PP1 the pin will always be high.

    The CONFIGURATOR variable bit 2 must be set in order to see any output.
    See the PWM Chapter for additional information.

    Also See : [ PP0 | PP1 | PP2 | PP3 | PW0 | PW1 | PW2 | PW3 ]

    6.25 PW2Pulse Width for channel 2

    Pulse Width Modulator 2 Width Register (8 bit)

    This 8 bit variable sets the width for PWM2 Unit.

    If the value is zero the pin will always be low.
    If the value is less than PP2 the pin will be high for PW2 TICKS.
    If this value is greater than PP2 the pin will always be high.

    The CONFIGURATOR variable bit 2 must be set in order to see any output.
    See the PWM Chapter for additional information.

    Also See : [ PP0 | PP1 | PP2 | PP3 | PW0 | PW1 | PW2 | PW3 ]

    6.26 PW3Pulse Width for channel 3

    Pulse Width Modulator 3 Width Register (8 bit)

    This 8 bit variable sets the width for PWM3 Unit.

    If the value is zero the pin will always be low.
    If the value is less than PP3 the pin will be high for PW3 TICKS.
    If this value is greater than PP3 the pin will always be high.

    The CONFIGURATOR variable bit 2 must be set in order to see any output.
    See the PWM Chapter for additional information.

    Also See : [ PP0 | PP1 | PP2 | PP3 | PW0 | PW1 | PW2 | PW3 ]

    6.27 RESETReset Counter

    Reset Count (16 bit)

    Increments whenever a reset occurs. Cleared at Power On reset.

    [ index | memory | math | statements | variables | registers | assembler ]

    6.28 RNDRandom Number

    Random Number (16 bit)

    The random number generator is a free running random number generator based on a random bit-stream algorithm. The state of the carry flag and the W register is also used to increase the randomness.

    The random number is changed about 2 times per microsecond provided the CONFIGURATOR RANDOM bit (1) is set. If this bit is cleared the random number will not change unless the RANDOMIZE statement is executed. This is usefully to create a specific sequence of random numbers.

    [ index | memory | math | statements | variables | registers | assembler ]

    6.29 SECSecond

    Current Second (8 bit)

    Contains the Second for the real time clock.

    Also See : [ HOUR | MIN | SEC | HUND ]

    6.30 SPStack Pointer

    Stack Pointer (8 bit)

    The stack pointer is an address pointer for the basic stack. The basic stack is used to store temporary data during a for-next or do while loop and the return address whenever a GOSUB is called. The statements PUSH and POP also modify the stack pointer. The stack is 78 bytes deep.

    [ index | memory | math | statements | variables | registers | assembler ]

    6.31 TPHTicks Per Hundredth
    Defaults to:120 (modified in autoconfig script)

    Ticks Per Hundredth (8 bit)

    This variable is used to keep the real time clock accurate. Its value represents the number of timer2 IRQs that occurs per hundredth of a second.
    Note:This value must be a factor of 8 if ADC or LCD is used.

    Also See : [ PR2 | FUTZ | TPH ]

    6.32 USAGEMPU Usage

    MPU Usage (16 bit)

    Contains the mpu usage for the last ?? mS. The larger the value the more MPU cycles went unused.

    The CONFIGURATOR USAGE bit (8) must be set for the variable to update. This value may be represented as a pulse width modulated signal, by setting the CONFIGURATOR USAGE_PIN bit (9).

    [ index | memory | math | statements | variables | registers | assembler ]

  • This webpage is © Copyright 2001,2002,2003 by Todd Modjeski - All Rights Reserved - built Mon Jan 26 22:48:28 2004