

So, please could help to understand or investigate ?
Bye
urkadurka wrote:Hi, I bougth a clone of minim osd from RCTIMER (http://www.rctimer.com/index.php?gOo=go ... oductname=) but after chars and software download (I followed http://code.google.com/p/rush-osd-devel ... Map_Upload) the screeen isn't like expected, there are a lot of strange chars
.
So, please could help to understand or investigate ?
Bye
dramida wrote:Great news!
I just checked google repository from here http://code.google.com/p/rush-osd-devel ... loads/list and i could't find any downloads. Is it anywere else?
realpastaman wrote:Thanks for you hard work on this kataventos, I'm going to try in the morning weather permitting.
Does this do imperial or just metric?
cswiger wrote:What happened to video system in config.h ? Looks like it's hardwired for PAL now![]()
NikTheGreek wrote:I guess that this one will do the job
http://www.hobbyking.com/hobbyking/store/__36844__Minim_OSD_v1_1.html
Right ?
kataventos wrote:@Realpastaman,
thank you for your reporting your experience, we appreciate that very much.
The font uploading is not working on the released dev r280, that is why you see strange stuff on screen. You can see that is not on the download file description.
When you download any file you do have a board under the link, please read carefully ... I will anyway put the none functional parts in bold!! it may help the next downloaders...
Simulator is too disabled on that dev, that´s why you can not see it mentioned.
We are at this precise moment taking care of all those "problems"![]()
You need to upload the font map like before, all other steps are OK since you were able to get it running!![]()
About mode bits! you do not need to do anything... get it ? (see description again)![]()
About the very slow GUI, it is fixed at this moment, we will upload it ASAP!
Thank you once more for your support.
Cheers,
KV
PS: Don´t forget to report
kataventos wrote:Hi all,
this may help http://www.youtube.com/watch?v=egStpPl9 ... e=youtu.be thanks for watching!
Cheers,
KV
Code: Select all
WARNING: RXTX Version mismatch
Jar version = RXTX-2.2pre1
native lib Version = RXTX-2.2pr
kataventos wrote:Hi all,
please wait for KV Team 2.2 release on the repo (I or someone of this Team will post here when it´s ready) and follow this instructions exactly:
http://www.youtube.com/watch?v=c7y5VCInojA
I have flashed today 3 new Minin OSD´s with no problem at all.
Cheers,
KV
kataventos wrote:please wait for KV Team 2.2 release on the repo (I or someone of this Team will post here when it´s ready) and follow this instructions exactly:
http://www.youtube.com/watch?v=c7y5VCInojA
Lapino wrote:That's the one I'm using too. But when I am using the GUI to change some things being displayed or not and hit write nothing happens...e.g. If I hit read everything is default again. How did you configure your minimosd? Maybe I uncommented or did something wrong though I did just follow the wiki...
one more thing I'm concerned about: as I have the attopilot current and voltage sensor, can i just solder the voltage sensing directly to the pin if the processor it do I have to use a resistor in between?
Thanks in advance
Lapino wrote:Hi,
I solved the problem! I had to clear the EEPROM first, then everything worked like discribed in the wiki...maybe that should be added there
Thank you Woppit for the sensor input, I'll try that and make a report if it works
I'm really glad the other stuff like AH etc works^^
Lapino wrote:I got it working...I activated the Box option but don't get the GPS mode displayed...anyone?^^
Lapino wrote:Yeah that's Ok for me and makes sense but my problem was that the gps mode wasn't displayed (like changing to stable mode).
Another question is if I have to use a resistor in between my current sensor and the arduino pin?
And how do I use the rssi for frsky?
I made the resistor mod and changed the analogreference to default (5v) to have a correct voltage reading (in combination with a correction factor as I don't know why the reading differs from the sparkfun example sketch for attopilot 90A sensor that gives perfect readings for voltage (amps seem too low, that's why I'm asking if the resistor mod for current sensor it's needed ).
Code: Select all
#define AMPDIVISION 3600 // Hardware current sensor division ratio
#define AMPERAGE_CAL 1.1 // Amperage calibration
#define AMPRERAGE_OFFSET 512 // Amperage = AMPRERAGE_OFFSET - analogRead * AMPERAGE_CAL / 10.23
kataventos wrote:Hi,
Question: The ones who are having problems with GPS mode, are you using I2C GPS ?
KV
Edit: And what MW version?
Woppit wrote:
Hi, Crius AIO Pro, MW 2.2 pre.
GPS all works, it's just the little arrow for pos hold that does not show on mine, RTH shows fine.
Code: Select all
#define ATTOPILOT_VI
Code: Select all
#define EST_PMSum 1
#define HARDSENSOR // Uncomment to change from MW_POWERMETER to Hard current sensor on analogue Pin (MW_POWERMETER is DEFAULT and must be defined on MWCode)
#define AMPDIVISION 36 // Hardware current sensor division ratio
#define AMPERAGE_CAL 1.0 // Amperage calibration
#define AMPRERAGE_OFFSET 0//512
Code: Select all
analogReference(INTERNAL);
Code: Select all
#ifdef ATTOPILOT_VI
analogReference(DEFAULT);
#define VREF 5
#else
analogReference(INTERNAL);
#define VREF 1.1
#endif
Code: Select all
if (Settings[S_ENABLEADC]){
temperature=(analogRead(temperaturePin)*VREF)/10.23;
if (!Settings[S_MAINVOLTAGE_VBAT]){
static uint8_t ind = 0;
static uint16_t voltageRawArray[8];
voltageRawArray[(ind++)%8] = analogRead(voltagePin);
uint16_t voltageRaw = 0;
for (uint8_t i=0;i<8;i++)
voltageRaw += voltageRawArray[i];
#ifdef ATTOPILOT_VI
voltage = analogRead(voltagePin)/1.141;
#else
voltage = float(voltageRaw) * Settings[S_DIVIDERRATIO] * (VREF/102.3/4/8);
#endif
}
if (!Settings[S_VIDVOLTAGE_VBAT]) {
vidvoltage = float(analogRead(vidvoltagePin)) * Settings[S_VIDDIVIDERRATIO] * (VREF/102.3/4);
}
if (!Settings[S_MWRSSI]) {
rssiADC = (analogRead(rssiPin)*VREF)/1023;
}
#ifdef ATTOPILOT_VI
amperage = analogRead(amperagePin)/0.649;
#else
amperage = (AMPRERAGE_OFFSET - (analogRead(amperagePin)*AMPERAGE_CAL))/10.23;
#endif
}