Search Results - MEL PICBASIC Forum


Search:

Type: Posts; User: HenrikOlsson; Keyword(s):

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    6,933

    Re: Sending multiple serial strings.

    Hi,

    Waste may not have been the best word. What I mean is that the string for each command is static, they don't change, so there's no real need for them to live in RAM - which they'll do if you...
  2. Replies
    5
    Views
    6,933

    Re: Sending multiple serial strings.

    Hi,
    One way to do what you're asking for is something like

    mcuStop VAR BYTE[8] ' Array of 8 bytes
    mcuStop[0] = $55
    mcuStop[1] = $AA
    mcuStop[2] = $01
    mcuStop[3] = $FF
    mcuStop[4] =...
Results 1 to 2 of 2