Name:
#no_table
Syntax:

#NO_TABLE

Description:

Do not download table or EEPROM data (X1 and X2 parts only).

This automatically also enables #no_data

Applies To:
20X2, 28X1, 28X2, 40X1, 40X2
See Also:
Related Create:
    Share:
    Print:

    Example of #no_table use

    When #no_table is used no new table data is downloaded to the PICAXE. The debug command will show values as specified by the most recent table downloaded and not the values specified by and 'table' command within this program. The 'debug' command will not show b0=0, b1=1 and b2=2 unless the previous table downloaded had set the table to those values.

    Code Example:
    #no_table
    
    table 0, ( 0, 1, 2 )
    
    readtable 0, b0
    readtable 1, b1
    readtable 2, b2
    
    debug
    
    Copy Code Submit an Example

    Submit Your Own Code!

    You must be logged in to submit code examples. Login now.