Uploaded firmware ok.
GUI has a hiccup when changing the display property on items (on/off) and it updating in the preview area.
Doesn't seem to work w/ timecops Baseflight.

postaL wrote:Macbook air running 10.7.5.
Uploaded firmware ok.
GUI has a hiccup when changing the display property on items (on/off) and it updating in the preview area.
Doesn't seem to work w/ timecops Baseflight.
howardhb wrote:Just one question:
When using the "callibrate Acc" function from OSD, the acc does callibrate, but the values Acc Roll, Pitch and Z display 0
Should "live" MW values be displayed?
H.
kataventos wrote:Hi,
first of all take a look at the tutorials/Wiki... you don´t even have the correct char map installed.
As for time-cop base-flight!!?? Our software is suppose to work with MW latest developments, we don´t use "private" base-flights to developments.
EDIT: GU´s screen will have a new and dedicated propose in future, don´t mind that for now!
copterrichie wrote:If baseflight serial handler is the same as MW, then there is no reason it should not work. The MWC GUI works with baseflight right?
postaL wrote: Guess i'll try hooking both up and see if that helps.
kataventos wrote:postaL wrote: Guess i'll try hooking both up and see if that helps.
So, definitely that is your problem! on the wiki you have that information. The requests must be answered since start of communication or no communication at all![]()
Probably you read that on AP site.
But, what went wrong with the char map upload?
It must be installed by the GUI and the new .mcm is on the data folder.
KV
copterrichie wrote:For one, you need to reload the fonts.
postaL wrote:(side note: DISARMED doesn't go away when armed).
FYI, this is a RCtimer MinimOSD clone.
http://www.rctimer.com/index.php?gOo=go ... oductname=
copterrichie wrote:Dude, for someone that dishes out a load of crap, you surely are behind.
http://code.google.com/p/rush-osd-development/ Current is R345
kataventos wrote:copterrichie wrote:Dude, for someone that dishes out a load of crap, you surely are behind.
http://code.google.com/p/rush-osd-development/ Current is R345
If he is running the app on a MAC I think that he will have no problem on using r340, but I think that the main problem is that he forgot to power the 12v side for uploading the char map.
copterrichie wrote:kataventos wrote:copterrichie wrote:Dude, for someone that dishes out a load of crap, you surely are behind.
http://code.google.com/p/rush-osd-development/ Current is R345
If he is running the app on a MAC I think that he will have no problem on using r340, but I think that the main problem is that he forgot to power the 12v side for uploading the char map.
Well, he can also make the modification to 5V as I did.
postaL wrote:Ok. I must have missed the whole "power w/ 12v on that side when uploading font" part. My mistake.
It shows everything correctly now. It just doesn't show "ARMED" when armed, nor which flight mode i'm in. (with r345). I will try r340 to see if it has the same issue.
richie, pipe down and go back to the corner. i'm done talking to you.
postaL wrote:Success!
Thank you KV for walking me through it.
It's setup w/ a Pixim Sealwolf camera, NTSC. I Imagine its a 4.3 screen.
Is there a way to reposition where things are on screen?
/me goes and reads wiki again.
copterrichie wrote: !
kataventos wrote:copterrichie wrote: !
kataventos wrote:@PostaL
forgot to ask if you are using RSSI over MW?
Code: Select all
.
.
MAX7456_WriteString_P(configMsg57, LEVT);
xx= pMeterSum / EST_PMSum;
MAX7456_WriteString(itoa(xx,screenBuffer,10),LEVD-3);
.
.
that is a lot of happiness
howardhb wrote:Your wish, is my command, Obi-Wan Kenobi!![]()
![]()
My changes were only an exercise in understanding how the code works and not intended to indicate anything else.that is a lot of happiness![]()
Keep up the good work!
H.
KasparsL wrote:Hi,
I am struggling to get the v345 fw working. i am compiling with Arduino 1.0.1 and uploading the hex with avr-asp.
I do not see anything on screen exept grey background. And the GUI seems not to change anything on the minimOSD board. If I change to minim, hit write, then read - it will show rushduino again. Am i missing something? The v2.1 works for me OK.
kataventos wrote:KasparsL wrote:Hi,
I am struggling to get the v345 fw working. i am compiling with Arduino 1.0.1 and uploading the hex with avr-asp.
I do not see anything on screen exept grey background. And the GUI seems not to change anything on the minimOSD board. If I change to minim, hit write, then read - it will show rushduino again. Am i missing something? The v2.1 works for me OK.
Hi,
http://code.google.com/p/rush-osd-devel ... asic_Setup
kataventos wrote:Hi,
you have to follow all steps carefully, to me you are not making the RESET on GUI! This is the only thing that comes to my mind...
First reset and then program it, why are you using the USBASP? You should use FTDI, honestly I don´t think you can program it with GUI that way.
Your options will programmed on GUI, no need to change config.h.
KV
PS: No hex posted because honestly it will not change a bit on your problem.
power67 wrote:Hi KasparsL,
It sounds like you are not getting proper comunication between the gui and the osd board. lets start by getting some more information.
What version of the code are you uploading to the arduino? what version of the gui?
when you say it reads back default values, what is being shown? Can you post a screen shot of the gui after you click read?
If your osd board is still saying that it is set for the rushduino, it will not show anything on the monitor.
I have the same min board and have done a great deal of development and testing with it.
lets get you fixed up.
Ross
Code: Select all
1, // S_BOARDTYPE
Code: Select all
void MAX7456Configure() {
// todo - automatically recognising card.
if(Settings[S_BOARDTYPE] == 0) { // Rush
MAX7456SELECT = 6; // ss
MAX7456RESET = 10; // RESET
}
if(Settings[S_BOARDTYPE] == 1) { // MinimOSD
MAX7456SELECT = 6; // ss
MAX7456RESET = 10; // RESET
}
}
postaL wrote:If I can add a suggestion,
For the ALT reading, add an option that will allow it to 0 on arm.
ie: Sensor shows 539 ft when disarmed, when you arm and take off, your "home" point is 0 ft, instead of 539.
howardhb wrote:@kasparsL, I see on your screen-shot that your ftdi is connected to com9.
I had "issues" with SiLabs CP2102 com ports above #7 (Win7 64bit)
To change the com port number, in control panel, click on devices, ports: then right click on the com port and then click on advanced.
Change port number to be below 8.
Also, make sure the port is configured for 115200 baud, No parity and One Stop bit
Worked for me.....
carlonb wrote:postaL wrote:If I can add a suggestion,
For the ALT reading, add an option that will allow it to 0 on arm.
ie: Sensor shows 539 ft when disarmed, when you arm and take off, your "home" point is 0 ft, instead of 539.
Which MWii version are you using?
I know that with an old MWii vers. at statup we had the absolute altitude, but with the newest MWii versions at startup we have the relative zero ft at ground.
Ciao, Carlo
dramida wrote:I had several FPV long flights with minim OSD and R345 of KV_Team and i found a serious bug which made me lose orientation several previous flights:
The Home arrow drifts 45 degrees left off target when starts to move back home from long trips.The change of home is at 3:17 when starting twords home from PH stationary position (i knew location visualy)
...but Home arrow heading is off by 45 degrees left
After seeing the home location as i land, you could judge for yourself if you could reach home following home arrow. My two previous atempts failed and i brought the copter home visualy from a few hundreds meters.
I tested RTH and works right on target as i calibrated the mag previously. So the error must be in OSD.
postaL wrote:carlonb wrote:postaL wrote:If I can add a suggestion,
For the ALT reading, add an option that will allow it to 0 on arm.
ie: Sensor shows 539 ft when disarmed, when you arm and take off, your "home" point is 0 ft, instead of 539.
Which MWii version are you using?
I know that with an old MWii vers. at statup we had the absolute altitude, but with the newest MWii versions at startup we have the relative zero ft at ground.
Ciao, Carlo
Ah, that must be it. I'm using a Naze32 board w/ Baseflight. (32 bit multiwii).
howardhb wrote:@KasparsL, just for your tests, attached is a working hex file, compiled and tested working, a few minutes ago.
note: It has a few simple layout changes as described in my posts above....
Code: Select all
void readEEPROM(void)
{
for(int en=0;en<EEPROM_SETTINGS;en++){
Settings[en] = EEPROM_DEFAULT[en];
}
}
Code: Select all
1, // S_BOARDTYPE