Search the web
Sign In
New User? Sign Up
handyboard · Handy Board
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? 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 669 - 699 of 5977   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
669
I believe that Randy Sargent maintains IC 4. You can write him at randy @ kipr . org (no spaces) -Dan...
Dan Gates <topazx2@...>
topazx2
Offline Send Email
Jan 1, 2003
9:42 am
670
Wow, thanks. I'm glad I actually know why it does that now. I have some future routines that do some if(char>96) stuff, so looks like I'll want to use an int...
philisarussian <phili...
philisarussian
Offline Send Email
Jan 1, 2003
6:21 pm
671
Hi, I am wondering how (if?) I can use the Handy Board (HB) SPI interface while the Expansion Board (XB) is plugged in. Amoung other things, I am thinking of...
Nick <x01101001@...>
x01101001
Offline Send Email
Jan 2, 2003
2:43 am
672
Nick, As long as you don't use the sonar on the XB then the SPI is free to use for whatever you want. Just don't call any of the sonar routines. -Dan...
Dan Gates <topazx2@...>
topazx2
Offline Send Email
Jan 2, 2003
6:18 pm
673
Hey, I have a few lines of code here (they run through 7 neurons for an ANN (artificial neural network) trained to be a line follower. The problem is, in its...
philisarussian <phili...
philisarussian
Offline Send Email
Jan 2, 2003
6:59 pm
674
Phil, I have always gone by the philosophy that a program is more defined by its data structures than its instructions. Would you mind including the structures...
Jim Peterson
jcpjimcp
Offline Send Email
Jan 3, 2003
2:22 am
675
Almost nailed it. Structs are as follows: struct hiddennode { float netinput; float bias; float activation; float weights[7]; }; struct outputnode { float...
philisarussian <phili...
philisarussian
Offline Send Email
Jan 4, 2003
6:45 am
676
Hi all, does anyone have a pid algorithm that I can ues to controll the position of a motor(n,algorithm_output) using an analog(n) value for position feedback....
Mark Adams <markadams...
markadams1971
Offline Send Email
Jan 4, 2003
9:29 pm
677
I used the following program to atempt to get benchmarks on the HB for float, long and int addition. int x = 10; long y = 20L; float z = 30.0; void main() { ...
Jim Peterson
jcpjimcp
Offline Send Email
Jan 4, 2003
11:26 pm
678
Jim, After looking at the original "ANN" question, I too did a quick test of float versus int, etc. Honestly, I didn't post results because I have yet to...
Nick <x01101001@...>
x01101001
Offline Send Email
Jan 5, 2003
3:21 am
679
I have some questions about the eXpansion Board. Currently, I have 2 HBs and 1 XB. I'll likely get another XB. It's so simple and low cost compared to it's...
Nick <x01101001@...>
x01101001
Offline Send Email
Jan 5, 2003
5:35 am
680
Well, I've figured out what the big time-coster is: exp(). I used your benchmarking code, and tried 100 iterations of exp(x) with various common netinput...
philisarussian <phili...
philisarussian
Offline Send Email
Jan 5, 2003
5:37 am
681
Hello, I thought I had read on one of the old posts that there was a patch to allow a larger 20x4 LCD display to be used instead of the standard 16x2 display....
Robert L. Doerr
robotdoctor
Offline Send Email
Jan 5, 2003
5:50 am
682
I just had an idea. It takes some of the "coolness factor" out of the program, but its a back-propogation ANN (completely static, will not learn from its...
philisarussian <phili...
philisarussian
Offline Send Email
Jan 5, 2003
5:58 am
683
Hello, I suppose my last post to this thread was on the money then. No suprise. Complex math such as exp(), sin(), etc are SLOW. But my reason for this...
Nick <x01101001@...>
x01101001
Offline Send Email
Jan 5, 2003
6:40 am
684
Robert, The LCD module used on the Handy Board uses a fairly common LCD interface which comes in various sizes. You *CAN* adapt the HB circuitry for a...
Nick <x01101001@...>
x01101001
Offline Send Email
Jan 5, 2003
7:10 am
685
Uploaded: Files\Handy Board Construction Tips\Battery power connection -Nick...
Nick <x01101001@...>
x01101001
Offline Send Email
Jan 5, 2003
10:17 am
686
Hi Nick, ... In the Handy Board, the digital input #7-#9 are ports of PA: digital #7 = PA0 digital #8 = PA1 digital #9 = PA7 Port has got 8 pins: -4 of these...
halcogilg <BHaberlag@...
halcogilg
Offline Send Email
Jan 5, 2003
2:17 pm
687
The lookup approach is a good idea, one I used in the old S-100 days, even when memory was expensive! You can use a input to activation table as you suggest....
wa0rse <beckmann@...>
wa0rse
Offline Send Email
Jan 5, 2003
3:42 pm
688
What is the maximum program memory that the handyboard can address? I am trying to figure out if the handy board is suitable for my application that will use...
Ramesh <choks4@...>
choks4
Offline Send Email
Jan 5, 2003
8:18 pm
689
Hello Nick, I have plugged in some of the larger LCD panels and they did work but could not display any extra characters. I seem to recall that someone had...
Robert L. Doerr
robotdoctor
Offline Send Email
Jan 5, 2003
9:10 pm
690
Ramesh, The answer depends on the OS you intend to use. The HC11 Micorprocessor has 32K of ram. When running Interactive C the max size of the resultant Pcode ...
Jim Peterson
jcpjimcp
Offline Send Email
Jan 5, 2003
11:43 pm
691
After downloading the 4.01 IC interpreter you should have ~ 85% of the address space available. That is: about 27K bytes. DRAIT ... From: <choks4@...> ...
drait
rider02324
Offline Send Email
Jan 6, 2003
3:19 pm
692
Even the tiniest of tiny bugs have neural nets...=). They all have weighted connections, a bias, and an activation signal(however, it either activates all the...
philisarussian <phili...
philisarussian
Offline Send Email
Jan 6, 2003
11:25 pm
693
I noticed the following comment in the hb_lib.ic file and I couldn't help but wonder if this is still true (I use IC4). If TRUE, then how does one disable...
Nick <x01101001@...>
x01101001
Offline Send Email
Jan 7, 2003
2:38 am
694
The IC 4.0 compiler for the Handyboard has a great non-standard global attribute for storage called persistent. With it a global variable (or array of...
Jim Peterson
jcpjimcp
Offline Send Email
Jan 7, 2003
3:04 am
695
Nick, I had a copy of the IC 3.2 Pcode. it has the following equates: PRINTBUFFER EQU %00000001 IRDECODE EQU %00000010 PWM EQU %00000100...
Jim Peterson
jcpjimcp
Offline Send Email
Jan 7, 2003
3:23 am
696
Jim, Great suggestion for using persistant variables to avoid run time table initialization!!! Also, if the persistant variables are at the start of the...
Nick <x01101001@...>
x01101001
Offline Send Email
Jan 7, 2003
4:55 am
697
Jim, I tested it but I can't say if it works or not. It didn't crash. I suppose measuring an approx 10% diff is difficult enough but when I try each...
Nick <x01101001@...>
x01101001
Offline Send Email
Jan 7, 2003
5:45 am
699
Spell checkers asside, the attribute is "persistent" not "persistant". also, it works equally well for structures and arrays. I use perisitent arrays in...
Jim Peterson
jcpjimcp
Offline Send Email
Jan 7, 2003
12:52 pm
Messages 669 - 699 of 5977   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