Skip to search.
uMFPU

Group Information

  • Members: 137
  • Category: Microcontrollers
  • Founded: Nov 14, 2006
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

  Messages Help
Advanced
Messages 536 - 566 of 566   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
536 Steven Hodge
smhodge Offline Send Email
Feb 21, 2012
8:03 pm
Cam, there are two VDD pins on the TQFP package, yet only one is shown on the "minimum recommended connections" figure in the data sheet. I assume VDD should...
537 Cam Thompson
camt_micromega Offline Send Email
Feb 21, 2012
8:13 pm
Hi Steve, That's correct. The connections are the same as the ones shown for the uM-FPU64 28-pin device, except that there are two VDD pins and three VSS pins...
538 C. S. Chang
cchang98 Offline Send Email
Feb 21, 2012
11:15 pm
Cam, How do I go about getting an assembler and documentation for the uM-FPU(32 and or 64)? Chang...
539 Cam Thompson
camt_micromega Offline Send Email
Feb 21, 2012
11:24 pm
Hi Chang, Documentation is available on the Micromega downloads page. http://www.micromegacorp.com/downloads.html Application notes show some examples. ...
540 the_mick_lynch Offline Send Email Mar 12, 2012
2:38 pm
I've just started with the FPU 3.1 and IDE so excuse my confusion.. How do I pass parameters to user defined functions? The compiler manual defines #FUNCTION...
541 Cam Thompson
camt_micromega Offline Send Email
Mar 12, 2012
3:02 pm
Hi Michael, Here's an example of a function prototype, function definition, and function call. ;---------- #func 1 sample(float, float) float #function...
542 the_mick_lynch Offline Send Email Mar 12, 2012
7:36 pm
Cam, Thanks for the quick reply - it all makes sense now! By the way, I don't think that type of example where arg1, arg2 etc are used in the function is in...
543 camt@...
camt_micromega Offline Send Email
Mar 21, 2012
11:19 pm
The following items were posted to the Micromega website Mar 21, 2011: Arduino support libraries for uM-FPU64 and uM-FPU V3.1 have been updated for Arduino...
544 el_supremo01 Offline Send Email Mar 26, 2012
3:35 am
I've breadboarded a uM-FPU V3.1 to an Arduino Nano (USB 5V version) using the 3-wire SPI interface connections shown in the datasheet. I'm using the GCdistance...
545 camt@...
camt_micromega Offline Send Email
Mar 26, 2012
3:45 am
Hi Pete, The best way to check the functioning of the chip is to connect the IDE, enable the debugger, and set the "Trace on Reset" function, then observe the...
546 el_supremo01 Offline Send Email Mar 29, 2012
8:30 pm
After a lot of mucking about and having problems with other chips, I discovered that the breadboard is bad. Got a new one this morning, wired it up and...
547 el_supremo01 Offline Send Email Apr 16, 2012
11:32 pm
I'm just playing with the FFT instruction with the uM-FPU connected to an Arduino Nano and I can't get the WRBLK or RDBLK instructions to work properly. I have...
548 Cam Thompson
camt_micromega Offline Send Email
Apr 17, 2012
1:40 pm
Hi Pete, I ran your code example on an Arduino Duemilanove and it works fine here. There are a couple of minor things: 1) the WRBLK instruction uses the X...
549 el_supremo01 Offline Send Email Apr 20, 2012
7:41 pm
Thanks to Cam, I got the WRBLK and RDBLK working on the Arduino. Just in case anyone else is trying this, here's what happened. The basic problem was that I...
550 Thomas
tomdean1939 Offline Send Email
May 13, 2012
10:20 am
Has anyone implemented a Kalman filter in the uMFPU? Source available? Tom Dean...
551 Cam Thompson
camt_micromega Offline Send Email
May 16, 2012
12:49 am
Hi Tom, I was hoping someone else might respond to this. I haven't implemented one, but I know others have. Do a Google search on 'um-fpu kalman' and you'll...
552 Thomas
tomdean1939 Offline Send Email
May 16, 2012
1:38 am
... It appears that many have mentioned kalman and uM-FPU in the same post or web page. I read 9 pages of google results - saw nothing that indicated a kalman...
553 Thomas
tomdean1939 Offline Send Email
May 16, 2012
1:39 am
I am just starting with the uM-FPU code. I use AVR processors. I can write/read via SPI. I want to get the version string and version numbers, The VERSION ...
554 camt@...
camt_micromega Offline Send Email
May 16, 2012
1:55 am
The link I provided in the previous reply is an implementation by Istvan Kövesdi for the Propeller chip. Even if you're not familiar with the Propeller, he...
555 camt@...
camt_micromega Offline Send Email
May 16, 2012
1:56 am
THe version string is loaded into the string buffer by the VERSION instruction, and an integer version code is loaded into register 0. To read the string: ...
556 Thomas
tomdean1939 Offline Send Email
May 16, 2012
6:57 pm
I use AVR. I have OUT1 set as Ready/Busy. My code is: fpu_write2(VERSION,READSTR); //fpu_wait(); timer_wait_ms(1); fpu_readString(&buf[0]); OUT1 changes...
557 Thomas
tomdean1939 Offline Send Email
May 16, 2012
8:26 pm
I changed the uM-FPU to use MISO(SOUT) for Ready/Busy. My uM-FPU is version 3.1.2 This works, somewhat. My code: // Note: TRACE manipulates PORTF of ATmega128...
558 Cam Thompson
camt_micromega Offline Send Email
May 16, 2012
8:52 pm
Hi Tom, The fpu_wait() calls are in the wrong place. They should be done prior to all read instructions (not after). See page 6 of the V3.1 datasheet for...
559 Thomas
tomdean1939 Offline Send Email
May 17, 2012
2:43 am
I have my previous examples working - thanks. Now, I want to get elapsed time. TICKLONG puts the number of ticks in reg[0]. I want to save this in reg[9],...
560 Cam Thompson
camt_micromega Offline Send Email
May 17, 2012
2:48 am
Tom, I don't see anything in the portions of code provided. I'd suggest that you send an email to support@... with a copy of the full program...
561 Thomas
tomdean1939 Offline Send Email
May 17, 2012
11:33 am
... I need to get another power source for the '232 board. I will do that tomorrow. Thanks, Tom Dean...
562 Thomas
tomdean1939 Offline Send Email
May 17, 2012
11:35 am
I am using AVR and fpu_spi.s. The trace output from my code is attached. The uM_FPU is ignoring the TICKLONG at the top of the loop, at least, it does not...
564 gillgeof1 Offline Send Email May 28, 2012
12:38 pm
I have a new uFPU-64. I can use the IDE to print the version, print the checksum, write and store a function. When I hook up a USB-USART CPB2102 serial cable...
565 gillgeof1 Offline Send Email May 28, 2012
12:38 pm
Further investigation shows that when I send a command thru my terminal program such as V, there is no response. However, if I close the port and start the...
566 Cam Thompson
camt_micromega Offline Send Email
May 28, 2012
12:54 pm
Hi Geof, The uM-FPU64 debug monitor doesn't echo a command until it's executed, and only executes commands after a carriage return is received. If you're using...
Messages 536 - 566 of 566   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