Search found 1086 matches

by basicchip
Wed Jan 16, 2013 11:54 pm
Forum: Software issues
Topic: reserved words
Replies: 3
Views: 7402

Re: reserved words

> SUB sendData(data)
> str$(0) = data
> SPIOUT (CS, SCLK, SDATA, LSBfirst, 1, str$)
> END SUB
>

data is a reserved word

don't worry, a second set of eyes is often useful

change the name to something else
by basicchip
Wed Jan 16, 2013 11:54 pm
Forum: Software issues
Topic: reserved words
Replies: 3
Views: 7402

reserved words

> > Hello everyone! I just purchased an ARMexpress LITE, and have a project going with it already. > > I am trying to interface with an SPI device, and I cannot get the simplest of things to work in the compiler. > > For instance, here is my program: > > > #include > > SUB sendData(data) > str$(0) =...
by basicchip
Wed Jan 16, 2013 11:52 pm
Forum: Software issues
Topic: BASIC run command
Replies: 0
Views: 5261

BASIC run command

>from the help line >With the ARMmite Pro, when I use the RUN statement, I won\'t compile, just crashes. Is there a work around? Basically no The reason is the ARMbasic compiler does double duty, it is a compiler and an interpreter on the PC So RUN tells the interpreter to run on the code ON THE PC ...
by basicchip
Wed Jan 16, 2013 11:50 pm
Forum: Serial Communication
Topic: ARMweb dongle
Replies: 1
Views: 6350

Re: ARMweb dongle

> (the one which has the correct pin locations)? The sparkfun one I > bought a few months > ago didn't fit. We designed the ARMweb to use the SparkFun board, then SparkFun went and redesigned it and moved the holes 0.05" The USB dongle we built for the ARMmite PRO can be stuffed with connections for...
by basicchip
Wed Jan 16, 2013 11:50 pm
Forum: Serial Communication
Topic: ARMweb dongle
Replies: 1
Views: 6350

ARMweb dongle

Hi Bruce, I'm doing an ARMweb interface pcb for a friend and we need to know which usb daughter board to get that will directly mate with the armweb serial pins. (the one which has the correct pin locations)? The sparkfun one I bought a few months ago didn't fit. If there isn't one with an exact fit...
by basicchip
Wed Jan 16, 2013 11:48 pm
Forum: Kitchen sink
Topic: Maker Faire
Replies: 3
Views: 8626

Re: Maker Faire

> Ah thanks for the heads up Tod. I got it working! > > I dug in my spare parts box and found the header. I will go ahead and solder the pins in then I can just push the jumper on when programming etc. I just got back from the Maker Faire, never been to one before, pretty impressive. If you use the ...
by basicchip
Wed Jan 16, 2013 11:48 pm
Forum: Kitchen sink
Topic: Maker Faire
Replies: 3
Views: 8626

Re: Maker Faire

Ah thanks for the heads up Tod. I got it working!

I dug in my spare parts box and found the header. I will go ahead and solder
the pins in then I can just push the jumper on when programming etc.

Cheers,
Shane
by basicchip
Wed Jan 16, 2013 11:47 pm
Forum: Kitchen sink
Topic: Maker Faire
Replies: 3
Views: 8626

Re: Maker Faire

> According to the documentation it appears that I need to install a two pin jumper [C Jumper]. Is this correct? I have a two pin but no jumper block. Is it a big deal if I go solder this on? I.E what functionality do I stand to loose? Hey Shane. Congrats on the purchase. Welcome to the group. Bruce...
by basicchip
Wed Jan 16, 2013 11:46 pm
Forum: Kitchen sink
Topic: Maker Faire
Replies: 3
Views: 8626

Maker Faire

> > Hey all, > > Just got back from the maker faire and I picked up a ARMmite pro. Where can I find the documentation for this board? From the look on the package, it contains a mini USB connector but now that i've opened it, it seems that I was mistaken. Just curious on how to wire it up to get sta...
by basicchip
Wed Jan 16, 2013 11:44 pm
Forum: Software issues
Topic: Strings and 0
Replies: 7
Views: 10563

Re: Strings and 0

> > My concern is that I don't know how to programmatically arrive > > at the dimmed length of the string without passing it as a variable > > to the sub. > > You'll have to pass the length to the subroutine, or keep them all > the same length. Understood. Last night as I was trying to fall asleep, ...