Skip to search.
handyboard · Handy Board

Group Information

  • Members: 795
  • Category: Hardware
  • Founded: May 7, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 669 - 699 of 6169   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
669 Dan Gates <topazx2@...>
topazx2 Offline Send Email
Jan 1, 2003
9:42 am
I believe that Randy Sargent maintains IC 4. You can write him at randy @ kipr . org (no spaces) -Dan...
670 philisarussian <phili...
philisarussian Offline Send Email
Jan 1, 2003
6:21 pm
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...
671 Nick <x01101001@...>
x01101001 Offline Send Email
Jan 2, 2003
2:43 am
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...
672 Dan Gates <topazx2@...>
topazx2 Offline Send Email
Jan 2, 2003
6:18 pm
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...
673 philisarussian <phili...
philisarussian Offline Send Email
Jan 2, 2003
6:59 pm
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...
674 Jim Peterson
jcpjimcp Offline Send Email
Jan 3, 2003
2:22 am
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...
675 philisarussian <phili...
philisarussian Offline Send Email
Jan 4, 2003
6:45 am
Almost nailed it. Structs are as follows: struct hiddennode { float netinput; float bias; float activation; float weights[7]; }; struct outputnode { float...
676 Mark Adams <markadams...
markadams1971 Offline Send Email
Jan 4, 2003
9:29 pm
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....
677 Jim Peterson
jcpjimcp Offline Send Email
Jan 4, 2003
11:26 pm
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() { ...
678 Nick <x01101001@...>
x01101001 Offline Send Email
Jan 5, 2003
3:21 am
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...
679 Nick <x01101001@...>
x01101001 Offline Send Email
Jan 5, 2003
5:35 am
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...
680 philisarussian <phili...
philisarussian Offline Send Email
Jan 5, 2003
5:37 am
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...
681 Robert L. Doerr
robotdoctor Offline Send Email
Jan 5, 2003
5:50 am
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....
682 philisarussian <phili...
philisarussian Offline Send Email
Jan 5, 2003
5:58 am
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...
683 Nick <x01101001@...>
x01101001 Offline Send Email
Jan 5, 2003
6:40 am
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...
684 Nick <x01101001@...>
x01101001 Offline Send Email
Jan 5, 2003
7:10 am
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...
685 Nick <x01101001@...>
x01101001 Offline Send Email
Jan 5, 2003
10:17 am
Uploaded: Files\Handy Board Construction Tips\Battery power connection -Nick...
686 halcogilg <BHaberlag@...
halcogilg Offline Send Email
Jan 5, 2003
2:17 pm
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...
687 wa0rse <beckmann@...>
wa0rse Offline Send Email
Jan 5, 2003
3:42 pm
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....
688 Ramesh <choks4@...>
choks4 Offline Send Email
Jan 5, 2003
8:18 pm
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...
689 Robert L. Doerr
robotdoctor Offline Send Email
Jan 5, 2003
9:10 pm
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...
690 Jim Peterson
jcpjimcp Offline Send Email
Jan 5, 2003
11:43 pm
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 ...
691 drait
rider02324 Offline Send Email
Jan 6, 2003
3:19 pm
After downloading the 4.01 IC interpreter you should have ~ 85% of the address space available. That is: about 27K bytes. DRAIT ... From: <choks4@...> ...
692 philisarussian <phili...
philisarussian Offline Send Email
Jan 6, 2003
11:25 pm
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...
693 Nick <x01101001@...>
x01101001 Offline Send Email
Jan 7, 2003
2:38 am
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...
694 Jim Peterson
jcpjimcp Offline Send Email
Jan 7, 2003
3:04 am
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...
695 Jim Peterson
jcpjimcp Offline Send Email
Jan 7, 2003
3:23 am
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...
696 Nick <x01101001@...>
x01101001 Offline Send Email
Jan 7, 2003
4:55 am
Jim, Great suggestion for using persistant variables to avoid run time table initialization!!! Also, if the persistant variables are at the start of the...
697 Nick <x01101001@...>
x01101001 Offline Send Email
Jan 7, 2003
5:45 am
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...
699 Jim Peterson
jcpjimcp Offline Send Email
Jan 7, 2003
12:52 pm
Spell checkers asside, the attribute is "persistent" not "persistant". also, it works equally well for structures and arrays. I use perisitent arrays in...
Messages 669 - 699 of 6169   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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