CONFIG PRINTBIN/de
From MCS Wiki AVR
Contents |
= (**COPIED FROM ENGLISH PAGE**) === Action
Configure PRINTBIN behavior
Syntax
CONFIG PRINTBIN = extended
Remarks
extended |
This mode is the only mode. It allows to send huge arrays(more then 255 elements) to the serial port. Without the CONFIG PRINTBIN option, the maximum number of elements is 255. Because support for big arrays requires more code, it is made optional. |
See also
Example
$regfile = "m103def.dat" ' specify the used micro $crystal = 8000000 ' used crystal frequency $baud = 19200 ' use baud rate $hwstack = 32 ' default use 32 for the hardware stack $swstack = 10 ' default use 10 for the SW stack $framesize = 40 ' default use 40 for the frame space Config Com1 = Dummy , Synchrone = 0 , Parity = None , Stopbits = 1 , Databits = 8 , Clockpol = 0 Config Printbin = Extended Dim A(1000) Printbin A(1) ; 1000
Languages | English • Deutsch |
---|