Search found 4 matches

by werty
Mon Nov 26, 2012 4:59 pm
Forum: Software development
Topic: New Multiwii Serial Protocol
Replies: 409
Views: 227119

Re: New Multiwii Serial Protocol

i solved. read32 function doesnt work properly in arduino IDE 0.23. Use the functions like this. int read32() { float t=0; t+=(inBuf[p++]&0xff); t+=((inBuf[p++]&0xff)<<8); t+=((inBuf[p++]&0xff)<<16); t+=((inBuf[p++]&0xff)<<24); return t; } int read16() { float t=0; t+=(inBuf[p++]&...
by werty
Tue Nov 20, 2012 12:25 pm
Forum: Software development
Topic: Use serial port 3 in MEGA too...
Replies: 29
Views: 10781

Re: Use serial port 3 in MEGA too...

how did you do it? can you explain for me? I changed the serial0 speed to be 57600 compiled it. changed the MultiwiiGui serial speed to 57600 and compiled it. To compile Gui by Processing, you need some files next to your*.pde file, I putted all files which were next to executable file and it worke...
by werty
Tue Nov 20, 2012 11:33 am
Forum: Software development
Topic: New Multiwii Serial Protocol
Replies: 409
Views: 227119

Re: New Multiwii Serial Protocol

Hi everyone, i have a question. I'm using MW firmware 2.1 and GUI with a y6 configuration. I want to drive MW with arduino 1280, so i wrote my own arduino library(to be honest i copied some parts from GUI code) for communucation with MW, because arduino need some data like heading,altitude etc. But ...
by werty
Wed Oct 17, 2012 1:05 pm
Forum: Software development
Topic: Use serial port 3 in MEGA too...
Replies: 29
Views: 10781

Re: Use serial port 3 in MEGA too...

how did you do it? can you explain for me?