Search the web
Sign In
New User? Sign Up
basicx · Discussion list for the BasicX family of microcontroller chips
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 17933 - 17962 of 23222   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
17933
You're right Neil -- thought it would be better than nothing, but now that I read it again . . . Maybe this is a bit better: Looks like franc1000br has a 400v,...
Sloan Thrasher
csloanthrasher
Online Now Send Email
Mar 1, 2005
9:44 am
17934
Hi I do not know what a Queue in basicx language means. Could someone help me? Thanks in advance. Kanish...
kanish89
Offline Send Email
Mar 2, 2005
12:27 am
17935
... The general description of a queue, in computer science terms, is a data structure that allows data to be added at one end and removed at the other. The...
Don Kinzer
don_kinzer
Offline Send Email
Mar 2, 2005
3:03 am
17936
I have recently obtained a device that after a specific triggering sets it output in an active high for a short time(about 1 sec). Is it possible by the...
naimead
Offline Send Email
Mar 2, 2005
3:54 am
17937
... If you can guarantee that your program can sample the input at least once during the time that the output from the device is high then it is simple. Just...
Don Kinzer
don_kinzer
Offline Send Email
Mar 2, 2005
6:27 am
17938
I am trying to write code to read the state of a 8 position BCD switch (Digikey GH3075-ND) which has 4 outputs and a common lineconnected to the BX24. I am...
williamclune
Offline Send Email
Mar 2, 2005
12:18 pm
17939
A little more information about what you are trying to do is helpful. What is the device you are talking about? It might be that there is a better way than...
basicx_austin
Offline Send Email
Mar 2, 2005
12:18 pm
17940
William, You can do what you are asking by directly accessing the registers for the port you are using. Check the "Bulk Input" experiment on my website ...
Mike Perks
basicx_austin
Offline Send Email
Mar 2, 2005
3:35 pm
17941
The device is the voice direct II speech recognition development board.And by the way where do i solder the 9V battery clip?The schematic in the manual is...
naimead
Offline Send Email
Mar 2, 2005
4:14 pm
17942
I'm a bit of a newb, so here I go! I'm working on a simple robot that uses sonar to avoid objects. The sonar is mounted on a "turret servo" that looks around...
Michael Kemper
kempermo
Offline Send Email
Mar 2, 2005
4:14 pm
17943
... inputs at a time... You can sample eight bits, as a byte, simultaneously in one instruction. See Special Purpose Registers, page 30, Operating System...
Tom Becker
b19063
Online Now Send Email
Mar 2, 2005
4:42 pm
17944
Given: Dim Step(1 To 4) As Byte Where does Step(5) point? The index is out of range but still addresses something; the dox simply say the result is undefined....
Tom Becker
b19063
Online Now Send Email
Mar 2, 2005
6:07 pm
17945
Tom, The answer is what you expect. There is no range checking in the runtime (or the compiler) so the code simply steps off the end of the array. Give this...
Mike Perks
basicx_austin
Offline Send Email
Mar 2, 2005
6:30 pm
17946
One simple approach... (Look in the code below.) BR Ingvar ... The ... the ... do ... turn ... storing ... dim turnaround as boolean ... turnaround=false ... ...
Ingvar Esk
ingvaresk
Offline Send Email
Mar 2, 2005
6:41 pm
17947
Michael, A couple of thoughts come to mind. You can monitor this input on a separate task although I'm not sure you want your control logic (e.g. backing up)...
Mike Perks
basicx_austin
Offline Send Email
Mar 2, 2005
7:32 pm
17948
... As mentioned in the manual, BasicX does no run-time bounds checking. it assumes that any index expression is valid and will use it as if it were. The...
Don Kinzer
don_kinzer
Offline Send Email
Mar 2, 2005
8:48 pm
17949
... I didn't, deliberately. In effect, I overwrote a four-phase lookup table after I changed code to eight phases but didn't expand the Dim of the table; it...
Tom Becker
b19063
Online Now Send Email
Mar 2, 2005
9:06 pm
17950
naimead, The manual is here: http://www.sensoryinc.com/html/support/docs/80-0240-A.pdf. The PDF page 8 which shows on the right page 5 of the manual. This...
Mike Perks
basicx_austin
Offline Send Email
Mar 2, 2005
9:13 pm
17951
... I've often thought that it would be nice if BasicX had something like SizeOf() which would return the number of bytes of an element. Dim ia(1 to 10) as...
Don Kinzer
don_kinzer
Offline Send Email
Mar 2, 2005
9:24 pm
17952
... A friend facetiously once used to "pray for world peace and more RAM"; I'd settle for more RAM, top of the list. Speed. Inline assembly. Tom Tom Becker ...
Tom Becker
b19063
Online Now Send Email
Mar 2, 2005
9:58 pm
17953
... Now you mention it Don - RAM RAM RAM Even with careful programming it is exceedingly easy to run out of memory. I can't wait for NetMedia's "RAMtastic"...
basicx_austin
Offline Send Email
Mar 2, 2005
10:30 pm
17954
Tom, I agree with the RAM statement. Who wouldn't? We have it better than the OOPic and Stamp folks at least. I think inline assembly is hard. Atmel assembler...
Mike Perks
basicx_austin
Offline Send Email
Mar 2, 2005
10:32 pm
17955
Hi, I haven't been following the list much lately. I've been studying J2ME on the side. I thought it would worth learning an OO embedded language in the long...
w7mjr
Offline Send Email
Mar 3, 2005
8:18 pm
17956
Does anybody know when the new RAMtastic chips are going to be released or at least what are the upgrade specifications?...
automateplc
Offline Send Email
Mar 3, 2005
9:32 pm
17957
Hello, I am using the dual PWM outputs of the BX24 to control two motors. I have this problem where one of the motors (controlled by pin 26) always gets a...
nathanchronister
nathanchroni...
Offline Send Email
Mar 3, 2005
10:52 pm
17958
In the editor go to: Project -> Chip Maybe your "I/O Pins at Startup" were changed. High Input Impedance is typically the best and safest option. Thad ...
Thad Larson
highwayman_3...
Offline Send Email
Mar 3, 2005
11:04 pm
17959
Nathan, I had the same problem a while back, I didn't find a software solution so I ended up using a 2n3904 with a couple of resisters to flip the voltage. Of...
ian
ian_casey03
Offline Send Email
Mar 3, 2005
11:18 pm
17960
As part of my investigation into the BasicX platform (see my "BasicX Internals" series of articles - ...
Mike Perks
basicx_austin
Offline Send Email
Mar 4, 2005
12:23 am
17961
I am a long time Java programmer and really like the language. I'm going to investigate JStamp. Thank you for this information. I too think BasicX is one of...
basicx_austin
Offline Send Email
Mar 4, 2005
12:23 am
17962
Has anyone used voice direct II? I cannot delete the words i have trained and I cannot train extra words also(the memory is not full).I have even tried the...
naimead
Offline Send Email
Mar 4, 2005
12:23 am
Messages 17933 - 17962 of 23222   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help