Giter Club home page Giter Club logo

mw-wingui's People

Contributors

eosbandi avatar

Watchers

 avatar

mw-wingui's Issues

Incoming packet size Error running modified MWC 1.9

What steps will reproduce the problem?
1.see below...
2.note that I am running modified 1.9 
3.

What is the expected output? What do you see instead?

Instead of connecting... I get this message:
"Incoming data packet size does not match with expected packet structure.
It seems version setting in GUI does not match with FC software version."

What version of the product are you using? On what operating system?

Latest release running on Windows 7.

Please provide any additional information below.

The standard MWC GUI works fine on all my Multiwii multicopters.. but Win GUI 
gives the error above.

Original issue reported on code.google.com by [email protected] on 19 Apr 2012 at 7:22

Questions about dbg1-4

Please describe the requested feature and it's importance
I want to try to do some troubleshooting on a problem and I want to use the 
debug dbg1-4 capability.  Can you tell me what data type they are. Also if I 
wanted to use them in a section of code that is looping will they store an 
array?

Original issue reported on code.google.com by [email protected] on 3 Apr 2013 at 4:51

Must start WinGui a second time before it will connect and read the parameters.

What steps will reproduce the problem?
1. Start WinGui and connect.  Does not read parameters.  Disconnect.
2. Start WinGui again and connect.  Parameters are read and all is ok.
3.

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?
WinGui version is 2.1. Operating system is Windows 7 64 bit.

Please provide any additional information below.
There are no errors associated with the problem.

Original issue reported on code.google.com by [email protected] on 27 Mar 2013 at 9:40

Using quadrino FC do not get the four vertical sliding lines representing the four motors on my X quadcopter

What steps will reproduce the problem?
1.Happens every time I am connected
2.
3.

What is the expected output? What do you see instead?
the four vertical sliding graphs as the throttle is increased or decreased

What version of the product are you using? On what operating system?
mw-wingui 2.1 on Windows 7 64bit

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 4 Aug 2012 at 11:53

Way Point implementation - 1 : Set Waypoint Function in WinGUI

based on multiwii 2.2, the protocol was implemented in "Serial.ino", in
\  case MSP_SET_WP:
\  ...
\  if (wp_no == 0) {...}
\  else if (wp_no == 16) {...}
\  ...
\  break;
is a statement judging that wp_no is 0(HOME) or 16(HOLD)

but in WinGUI R53, there's no corresponding function to upload a way-point 
packet except 
\  private void MSPquery(int command) {...}
and
\  private void MSPqueryWP(int wp) {...}
so I used these two function to write a new function 
 for uploading the way-point packet, as below

// ===============================================================
// MSPsetWP    based on WinGUI R53, date: 2013/11/7
private void MSPsetWP(int wp_no, Int32 lat, Int32 lon, Int32 alt, Int16 
heading, Int16 tts, byte flag)
{
    byte c = 0;
    byte[] o;
    o = new byte[25];
    // with checksum 
    o[0] = (byte)'$';
    o[1] = (byte)'M';
    o[2] = (byte)'<';
    o[3] = (byte)18;                c ^= o[3];       //one byte payload
    o[4] = (byte)MSP.MSP_SET_WP;    c ^= o[4];
    o[5] = (byte)wp_no;             c ^= o[5];             // way point number
    o[6] = (byte)( lat        &   0xff);  c ^=    o[6];    // latitude
    o[7] = (byte)( (lat>>8)   &   0xff);  c ^=    o[7];
    o[8] = (byte)( (lat>>16)  &   0xff);  c ^=    o[8];
    o[9] = (byte)( (lat>>24)  &   0xff);  c ^=    o[9];
    o[10] = (byte)(  lon      &   0xff);  c ^=    o[10];   // longitude
    o[11] = (byte)( (lon>>8)  &   0xff);  c ^=    o[11];
    o[12] = (byte)( (lon>>16) &   0xff);  c ^=    o[12];
    o[13] = (byte)( (lon>>24) &   0xff);  c ^=    o[13];
    o[14] = (byte)( alt       &   0xff);  c ^=    o[14];   // altitude
    o[15] = (byte)( (alt>>8)  &   0xff);  c ^=    o[15];
    o[16] = (byte)( (alt>>16) &   0xff);  c ^=    o[16];
    o[17] = (byte)( (alt>>24) &   0xff);  c ^=    o[17];
    //  heading/time_to_stay/flag is future function
    //  so it doesn't work now
    heading = tts = flag = 0;
    o[18] = (byte)( heading   &   0xff);  c ^=    o[18];
    o[19] = (byte)( (heading>>8)& 0xff);  c ^=    o[19];
    o[20] = (byte)( tts       &   0xff);  c ^=    o[20];   // time to stay
    o[21] = (byte)( (tts>>8)  &   0xff);  c ^=    o[21];
    o[22] = (byte)flag;                   c ^=    o[22];   // flag
    o[23] = (byte)c;
    serialPort.Write(o, 0, 24);
 }
// MSPsetWP END
// ===============================================================
if the author EOSbandi agree, it's welcome for everyone to use this code
the receive part in on-board multiwii will also release after I made it

reference:
http://multicopter-make.seesaa.net/article/360526447.html

Original issue reported on code.google.com by [email protected] on 7 Nov 2013 at 5:48

Multiplatform

Why not for linux also? I don't agree with your reasons for not making it cross 
platform. There is GTK and QT and they all work in linux/mac/windows, that 
instead of using this windows .net "stuff". Also inside of QT you can use 
opengl for accelerated graphics if necessary. No excuse.

Original issue reported on code.google.com by [email protected] on 18 Mar 2012 at 6:42

Error after click connect button

I'm currently on Windows7 x64 , WinGUI 2.3pre7 (b4)
with Multiwii 2.3

What steps will reproduce the problem?
1.open WinGUI
2.click Connect

after that error screen appear look like in attachment file


here is debug detail
See the end of this message for details on invoking 
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.ArgumentOutOfRangeException: Value of '0' is not valid for 'Value'. 
'Value' should be between 'Minimum' and 'Maximum'.
Parameter name: Value
   at System.Windows.Forms.NumericUpDown.set_Value(Decimal value)
   at MultiWiiWinGUI.mainGUI.update_gui() in z:\VS-projects\mw-wingui\MultiWiiWinGUI\mainGUI.cs:line 2055
   at MultiWiiWinGUI.mainGUI.b_connect_Click(Object sender, EventArgs e) in z:\VS-projects\mw-wingui\MultiWiiWinGUI\communication.cs:line 220
   at System.Windows.Forms.ToolStripItem.RaiseEvent(Object key, EventArgs e)
   at System.Windows.Forms.ToolStripButton.OnClick(EventArgs e)
   at System.Windows.Forms.ToolStripItem.HandleClick(EventArgs e)
   at System.Windows.Forms.ToolStripItem.HandleMouseUp(MouseEventArgs e)
   at System.Windows.Forms.ToolStripItem.FireEventInteractive(EventArgs e, ToolStripItemEventType met)
   at System.Windows.Forms.ToolStripItem.FireEvent(EventArgs e, ToolStripItemEventType met)
   at System.Windows.Forms.ToolStrip.OnMouseUp(MouseEventArgs mea)
   at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
   at System.Windows.Forms.ToolStrip.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1008 (RTMGDR.030319-1000)
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
MultiWiiWinGUI
    Assembly Version: 2.3.5105.40820
    Win32 Version: 2.3.0.0
    CodeBase: file:///C:/Users/Vivo/Dropbox/WORK/Work/multi_rotor/WinGUI_2.3pre7(b4)-xmas/Release/MultiWiiWinGUI.exe
----------------------------------------
System.Windows.Forms
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1002 built by: RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System.Drawing
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1 built by: RTMRel
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1 built by: RTMRel
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
GMap.NET.Core
    Assembly Version: 1.7.0.0
    Win32 Version: 1.7
    CodeBase: file:///C:/Users/Vivo/Dropbox/WORK/Work/multi_rotor/WinGUI_2.3pre7(b4)-xmas/Release/GMap.NET.Core.DLL
----------------------------------------
GMap.NET.WindowsForms
    Assembly Version: 1.7.0.0
    Win32 Version: 1.7
    CodeBase: file:///C:/Users/Vivo/Dropbox/WORK/Work/multi_rotor/WinGUI_2.3pre7(b4)-xmas/Release/GMap.NET.WindowsForms.DLL
----------------------------------------
ZedGraph
    Assembly Version: 5.1.2.878
    Win32 Version: 5.1.2.878
    CodeBase: file:///C:/Users/Vivo/Dropbox/WORK/Work/multi_rotor/WinGUI_2.3pre7(b4)-xmas/Release/ZedGraph.DLL
----------------------------------------
AForge.Controls
    Assembly Version: 2.2.3.0
    Win32 Version: 2.2.3.0
    CodeBase: file:///C:/Users/Vivo/Dropbox/WORK/Work/multi_rotor/WinGUI_2.3pre7(b4)-xmas/Release/AForge.Controls.DLL
----------------------------------------
AForge.Video
    Assembly Version: 2.2.3.0
    Win32 Version: 2.2.3.0
    CodeBase: file:///C:/Users/Vivo/Dropbox/WORK/Work/multi_rotor/WinGUI_2.3pre7(b4)-xmas/Release/AForge.Video.DLL
----------------------------------------
System.Configuration
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1 (RTMRel.030319-0100)
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1 built by: RTMRel
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
System.Data.SQLite
    Assembly Version: 1.0.84.0
    Win32 Version: 1.0.84.0
    CodeBase: file:///C:/Users/Vivo/AppData/Local/GMap.NET/DllCache/SQLite_v84_NET4_x86/System.Data.SQLite.DLL
----------------------------------------
System.Data
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1 (RTMRel.030319-0100)
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll
----------------------------------------
System.Core
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1 built by: RTMRel
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
System.Transactions
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1 (RTMRel.030319-0100)
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Transactions/v4.0_4.0.0.0__b77a5c561934e089/System.Transactions.dll
----------------------------------------
AForge.Video.DirectShow
    Assembly Version: 2.2.3.0
    Win32 Version: 2.2.3.0
    CodeBase: file:///C:/Users/Vivo/Dropbox/WORK/Work/multi_rotor/WinGUI_2.3pre7(b4)-xmas/Release/AForge.Video.DirectShow.DLL
----------------------------------------
System.Speech
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1 built by: RTMRel
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Speech/v4.0_4.0.0.0__31bf3856ad364e35/System.Speech.dll
----------------------------------------
Accessibility
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1 built by: RTMRel
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Accessibility/v4.0_4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
----------------------------------------
System.EnterpriseServices
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1 (RTMRel.030319-0100)
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.EnterpriseServices/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
----------------------------------------

************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
    <system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.

PS.sorry for my bag english


Original issue reported on code.google.com by [email protected] on 28 Dec 2013 at 3:42

Attachments:

Wingui 2.2 and 2.3 do not display correctly in Windows 7. Work ok in Windows XP.

What steps will reproduce the problem?
1.Start Wingui in Windows 7. Two different machines, same results.
2.
3.

What is the expected output? What do you see instead? See attachment


What version of the product are you using? On what operating system?
See above.

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 27 Dec 2013 at 7:37

Attachments:

GPS altitude in GUI and GPS logs is reported incorrectly, with Quadrino and Quadrino GPS, appears to be at least 3300 metres out.

What steps will reproduce the problem?
1. Connect to Quadrino
2. Wait for GPS fix
3. See incorrect altitude

What is the expected output? What do you see instead?
An altitude a lot higher than I expect. Have uploaded example kml file. During 
that log, I wouldn't of flown much higher than 50 metres. And the starting 
altitude would've been at ground level.


What version of the product are you using? On what operating system?
Version 2.1. Windows 7 64bit



Original issue reported on code.google.com by [email protected] on 9 Jan 2013 at 12:05

Attachments:

Disconnect model while MW Gui connected causes fatal error

What steps will reproduce the problem?
1. Connect model
2. Open MW Gui & connect
3. Disconnect model

What is the expected output? What do you see instead?
-Expect note saying that model has been disconnected, and graceful recovery.
-Currently see error


What version of the product are you using? On what operating system?
-Basic connectivity feature on Win7 X65

Please provide any additional information below.
-Please see screenshot attached

Original issue reported on code.google.com by [email protected] on 22 Dec 2013 at 12:28

Attachments:

Crash when connection breaks

What steps will reproduce the problem?
1. connect via bluetooth
2. disable the copter while connected
3. WinGUI crashes and only taskmanager will help

What is the expected output? What do you see instead?
a) Error message that connection is broken.
b) app hangs


What version of the product are you using? On what operating system?
MWii 2.3, MWii2.3pre3 WinGUI, WinXP SP3


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 21 Nov 2013 at 6:44

Four DBG boxes...

Please describe the requested feature and it's importance
What are the four DBG boxes for and how could you use them?

Original issue reported on code.google.com by [email protected] on 28 Mar 2013 at 2:07

Win7x64 MultiWii2.0 Error

What steps will reproduce the problem?
3. Start MultiWiiGUI
4. Try to connect "COM1 115200"
5. Get this error message (on "Parameters" and "RC Control Settings")

What is the expected output? What do you see instead?
see attach

What version of the product are you using? On what operating system?
OS: Windows 7x64 Professional
Firmware: MultiWii v2.0
Software: MulitiWiiGUI v1.04

Please provide any additional information below.
"Realtime Data" works fine.

Original issue reported on code.google.com by [email protected] on 17 Jul 2013 at 1:19

Attachments:

Bug in the log filename

You use "mm" for the month AND for the minute. but "mm" is minute, not month so 
it display somthing like:

mwguilog-12mm10-05mm.log


code:

wLogStream = new StreamWriter(gui_settings.sLogFolder + "\\mwguilog" + 
String.Format("-{0:yymmdd-hhmm}.log", DateTime.Now));

I think it should be MM for month or something like that.

Original issue reported on code.google.com by acemtp on 13 Aug 2012 at 11:15

64 bit Multiwii v2.2 not working

What steps will reproduce the problem?
1.Use 64 bit OS - Multiwii V2.2
2.Does not open the 64 bit version but the 32 bit version opens
3.Even in 32 bit version when I choose the COM port the window hangs.

What is the expected output? What do you see instead?
In the 32 bit version ,when I select the COM port the data should be shown on 
GUI

What version of the product are you using? On what operating system?
V2.2 with Nanowii v01

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 4 Jun 2013 at 3:26

gui_settings.xml

What steps will reproduce the problem?
1.when starting wizard screen appears and freezes
2.
3.

What is the expected output? What do you see instead?
run wingui 2.1

What version of the product are you using? On what operating system?
mw-wingui 2.1 on windows XP

Please provide any additional information below.
I have read/ and copy and pasted the guisettings from your blog but can't find 
the proper way/place to put it.
This gui works fine on my windows 7 operating sys at work!


Original issue reported on code.google.com by [email protected] on 26 Jan 2013 at 1:36

Label-Fields to small

The Label-fields at the PID-Settings for
I and D are to small. The letters are cut.
I'm using a netbook with 1024*600 resolution
and WinXP SP3.

Original issue reported on code.google.com by [email protected] on 18 Nov 2013 at 10:36

DBG1-4 Usage

Please describe the requested feature and it's importance
Please describe how to use the DBG1-4 boxes in the gui.
They might be useful in troubleshooting problems.

Original issue reported on code.google.com by [email protected] on 1 Apr 2013 at 1:16

Offline EEPROM editor

Similar to http://code.google.com/p/eepe/ project for Er9x.
Would help in case there are no free serial port for GUI.

Original issue reported on code.google.com by [email protected] on 17 Feb 2012 at 8:36

voltage monitoring

voltage monitoring after programing show an invalid number fix in 25.5 volt for 
12.4 source voltage. 
it happens after loading PID and setting file in wingui



Original issue reported on code.google.com by [email protected] on 21 Nov 2013 at 10:30

FullScreen of the GUI

Hey, im using ure GUI in the Field on my Laptop with wireless connection to the 
Copter, but i cant see all, because i cant fullscreening the GUI. So i hope u 
can change that in the next Version.

Original issue reported on code.google.com by [email protected] on 12 Mar 2012 at 8:48

Delayed graphical data display on 2.1 w/Naze 32 FC/ latest Baseflight/Win xp

What steps will reproduce the problem?
1. Graphical display update is delayed as if the Refresh rate is stuck at 2 or 
5hz 
2.
3.

What is the expected output? What do you see instead?
Expected is faster when set at 20hz.

What version of the product are you using? On what operating system?


Please provide any additional information below.

Thanks

Original issue reported on code.google.com by [email protected] on 5 Aug 2012 at 3:13

Win7 x64 / BT Serial connection / High CPU

Running the latest MW-WinGUI 2.1 under Win7 x64 with a Bluetooth module 
connected to the FTDI port of the Paris MW controller (@115200), the CPU usage 
shoots up to between 50-70% as soon as I connect to the BT serial port.  
Communication is working however some loops/threads in your code are consuming 
so much CPU that the interface is almost unusable.  If I pause the graph I am 
able to navigate around OK, however I never see the CPU go below 50% when 
connected.  As soon as I disconnect it goes back to zero CPU.  Not sure if this 
is specific to just the BT connection method?


Original issue reported on code.google.com by [email protected] on 23 Nov 2012 at 7:13

USB Connection: Error Device Not Responding

What steps will reproduce the problem?
1. Flash the multiwii board (MultiWii SE 2.0 Board)
2. Fly the copter
3. Leave overnight
4. Connect FTDI and USB and GUI won't communicate, BUT the arduino IDE can 
connect and upload fine and you can fly the copter as normal.

When you try to connect you get the error in the image. When you open arduino 
IDE and re-flash it then works fine again. Tried different FTDI and leads etc, 
but like I said any other serial comm program can communicate with board.


What version of the product are you using? On what operating system?
Version 2.1 and 2.2 both same on Win XP Pro

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 12 Apr 2013 at 9:22

Attachments:

add to wingui setting tab

a tab where we can edit thing like cam centering  rc min max etc... it boring 
to when you need to make change you need to upload all from andurino .... 

Original issue reported on code.google.com by [email protected] on 21 Jun 2012 at 10:20

Bluetooth will not connect correctly in version 2.2 GUI

What steps will reproduce the problem?
1.|Set up normal bluetooth connection input passcode and prepare to connect
2.Check the bluetooth com port and that it is set to 115000 connect speed
3.Press conect, bluetooth module connects lights go solid on BT but no data is 
transferred

What is the expected output? What do you see instead?  |Connection times out


What version of the product are you using? On what operating system?  win7 usin 
2.2 GUI


Please provide any additional information below.

If you disconnect and close GUI 2.2 then reload Gui 2.1, press connect using 
same com port, the connection is immediately made.  Hence my belief there is a 
problem using BT on gui ver 2.2


Original issue reported on code.google.com by [email protected] on 22 Apr 2013 at 6:12

On going to Map tab, no map just a system error message about a generic GDI+ error.

What steps will reproduce the problem?
1. Is a new installation on Windows Vista machine. WINGUI for 2.0 works 
perfectly on this machine.
2. Just look through tabs
3. Opened "Map" tab... serious error message (see below) but application 
carried on running.

What is the expected output? ==> Worked beautifully on XP machine. Very cool. 
Expected to see nice maps.

What do you see instead? ==> Error message, something about generic GDI+ error. 
Red cross  across graphics part of screen. Error message contents follow.


See the end of this message for details on invoking 
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Runtime.InteropServices.ExternalException (0x80004005): A generic error 
occurred in GDI+.
   at System.Drawing.Graphics.CheckErrorStatus(Int32 status)
   at System.Drawing.Graphics.DrawImage(Image image, Int32 x, Int32 y, Int32 width, Int32 height)
   at GMap.NET.WindowsForms.GMapControl.DrawMapGDIplus(Graphics g)
   at GMap.NET.WindowsForms.GMapControl.OnPaint(PaintEventArgs e)
   at System.Windows.Forms.Control.PaintWithErrorHandling(PaintEventArgs e, Int16 layer)
   at System.Windows.Forms.Control.WmPaint(Message& m)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
   at System.Windows.Forms.UserControl.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.269 (RTMGDR.030319-2600)
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
MultiWiiWinGUI
    Assembly Version: 1.0.4579.34500
    Win32 Version: 1.0.*
    CodeBase: file:///C:/P/Mw-WinGUI-2.1/MultiWiiWinGUI.exe
----------------------------------------
System.Windows.Forms
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.278 built by: RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System.Drawing
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.282 built by: RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.269 built by: RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
GMap.NET.Core
    Assembly Version: 1.6.0.0
    Win32 Version: 1.6.0.0
    CodeBase: file:///C:/P/Mw-WinGUI-2.1/GMap.NET.Core.DLL
----------------------------------------
GMap.NET.WindowsForms
    Assembly Version: 1.6.0.0
    Win32 Version: 1.6.0.0
    CodeBase: file:///C:/P/Mw-WinGUI-2.1/GMap.NET.WindowsForms.DLL
----------------------------------------
ZedGraph
    Assembly Version: 5.1.2.878
    Win32 Version: 5.1.2.878
    CodeBase: file:///C:/P/Mw-WinGUI-2.1/ZedGraph.DLL
----------------------------------------
AForge.Controls
    Assembly Version: 2.2.3.0
    Win32 Version: 2.2.3.0
    CodeBase: file:///C:/P/Mw-WinGUI-2.1/AForge.Controls.DLL
----------------------------------------
AForge.Video
    Assembly Version: 2.2.3.0
    Win32 Version: 2.2.3.0
    CodeBase: file:///C:/P/Mw-WinGUI-2.1/AForge.Video.DLL
----------------------------------------
System.Configuration
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1 (RTMRel.030319-0100)
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.233 built by: RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
System.Data.SQLite
    Assembly Version: 1.0.74.0
    Win32 Version: 1.0.74.0
    CodeBase: file:///C:/Users/Steve/AppData/Local/GMap.NET/DllCache/SQLite_v74_NET4_x86/System.Data.SQLite.DLL
----------------------------------------
System.Data
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.237 (RTMGDR.030319-2300)
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll
----------------------------------------
System.Core
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.233 built by: RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
System.Transactions
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1 (RTMRel.030319-0100)
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Transactions/v4.0_4.0.0.0__b77a5c561934e089/System.Transactions.dll
----------------------------------------
System.Web.Services
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1 (RTMRel.030319-0100)
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Web.Services/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll
----------------------------------------
System.EnterpriseServices
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1 (RTMRel.030319-0100)
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.EnterpriseServices/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
----------------------------------------
AForge.Video.DirectShow
    Assembly Version: 2.2.3.0
    Win32 Version: 2.2.3.0
    CodeBase: file:///C:/P/Mw-WinGUI-2.1/AForge.Video.DirectShow.DLL
----------------------------------------

************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
    <system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.




What version of the product are you using? On what operating system?
1.0.4579.34500 . Vista Home Premium -- latest updates.

Please provide any additional information below.

Tried reinstalling windows software mentioned in GoogleCode. Did repairs but 
not necessary to reinstall .Net 2.0 (part of op system if I remember the 
message). Thanks.

Original issue reported on code.google.com by [email protected] on 17 Sep 2012 at 3:57

Graph background and line properties

Please describe the requested feature and it's importance

i think graph readablity is a little bit poor side
to improve the situation my suggestions are

1-user selectible graph line colours and line width 
2-user selectible graphbackground colour or type can be applied please see the 
attachment i put as an example

Original issue reported on code.google.com by [email protected] on 15 Mar 2012 at 11:55

Attachments:

interface problem

*What steps will reproduce the problem?
missing check boxes @RC control settings tab

*What is the expected output? What do you see instead?
please check the screenshot

*What version of the product are you using? On what operating system?
MultiWii 1.04--> 1.0.4438.40983
win7 ultimate 64bit 

*Please provide any additional information below.
i could not install .NET framework 2.0 because it is not supported by 64bit 
operating system.

thank for your effort on this application multiwiiconf versions is not working 
by my computer goes gray after 1min(max) ..
this software is a gem for me i hope you go on to develop this app 

Original issue reported on code.google.com by [email protected] on 14 Mar 2012 at 6:13

Attachments:

Way Point implementation - 2 : Get Waypoint Function in WinGUI (R53)

Way Point implementation - 1 : Get Waypoint Function in WinGUI (R53)

based on multiwii 2.2, the protocol was implemented in "Serial.ino", in
\  case MSP_WP:
\  ...
\  if (wp_no == 0) {...}
\  else if (wp_no == 16) {...}
\  serialize8(wp_no);
\  serialize32(lat);
\  serialize32(lon);
\  serialize32(AltHold);           //altitude (cm) 
\  serialize16(0);                //heading  will come here (deg)
\  serialize16(0);                //time to stay (ms) will come here 
\  serialize8(0);                 //nav flag will come here
\  }
\  break;
=====================================================
There was some statement to send current waypoints in flight controller

But in WinGUI R53, there’s to corresponding function to download 
corresponding waypoint.
It’s existing
\  private void MSPquery(int command) {...}
to get a waypoint, but what if we want to download the waypoint-to-go from 
flight controller?
Here’s solution:
In WinGUI R53, mainGUI.cs(line 1441), there’s some statement to get current 
waypoint:
\  private void evaluate_command(byte cmd)
\  {
\    …
\    switch (cmd)
\    {
\      …
\    case MSP.MSP_WP:   //  (1441)
\      ptr = 0;
\      byte wp_no = (byte)inBuf[ptr++];
\      if (wp_no == 0) {…}
\      if (wp_no == 16) {…}
\      break;

Just add codes before the “break”, as below

// ===============================================================
// MSPgetWP WP#1~WP#15 in WinGUI    based on WinGUI R53, date: 2013/11/14
if ( wp_no >= 1 && wp_no <= 15 ){
    //Clean up current mission list
    if (wp_no == 1)
    {
        missionDataGrid.Rows.Clear();
        updateIndex();
        updateMap();
    }
    Int32   lat32 = 0,  lon32   = 0,    alt32 = 0;
    double  lat = 0,    lon = 0;
    int alt = 0,    time2stay= 0;
    byte    nav_flag = 0;
    lat32       =   BitConverter.ToInt32(inBuf, ptr); ptr += 4;
    lon32       =   BitConverter.ToInt32(inBuf, ptr); ptr += 4;
    alt32       =   BitConverter.ToInt32(inBuf, ptr); ptr += 4;
    BitConverter.ToInt16(inBuf, ptr); ptr += 2;             //  for heading, not use now
    time2stay   =   BitConverter.ToInt16(inBuf, ptr); ptr += 2; //  time2stay
    nav_flag    =   (byte)inBuf[ptr];               //  nav-flag  
    lat     =   (double)lat32/(double)10000000;
    lon     =   (double)lon32 / (double)10000000;
    alt     =   alt32;
    addWP("WAYPOINT", time2stay, lat, lon, alt);
}
// MSPgetWP WP#1~WP#15 END
// ===============================================================
then, you can download the waypoints in the flight-controller!
(Of course, some implementation is needed to add in on-board multiwii,
I will add it later)

Original issue reported on code.google.com by [email protected] on 14 Nov 2013 at 3:53

Multilanguage

Dear Andras,

I would like to see your tool in my language ;) (German)
I know mutlingulation is a lot off work!

I have the same problems in my codes. If you want, I can give you same code to 
safe time and have the chance, that users do the translation for you!

Please give me a note.

cu
Carsten
(info at klick-punkte.info)

Original issue reported on code.google.com by [email protected] on 16 Jul 2012 at 8:37

program is not starting

What steps will reproduce the problem?
1.double click to MultiWiiWinGUI.exe


What is the expected output? What do you see instead?
program is stuck on "initializing.." 
for a long time memory used is changing very slowly (from 21.236K
i could not wait until it start .. waited more than 5 minutes 

What version of the product are you using? On what operating system?
multiwii wingui 2.1(1.0.4579.34500)

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 30 Jul 2012 at 3:54

Unhandeled Exception when reading settings

When reading the settings from the copter an
unhandeled exception appears (Value out of Range,
must be between maximum and minimum. The value causing
this error is -252).

There is no parameter with a -252 value in my config




Original issue reported on code.google.com by [email protected] on 18 Nov 2013 at 12:42

voltage monitoring gives the wrong number

What steps will reproduce the problem?
1.change pid setting
2.save the setting to a file
3.load a saved file and want to write

What is the expected output? What do you see instead?
it should show 12.5 but appear 25.5 fixed number 25.5

What version of the product are you using? On what operating system?
multiwii v2.3 - and Windows XP SP3

Please provide any additional information below.
some time when you want to read or write the setting an error appear to re read 
and when doing this the not responding massage appear and computer hanged. 

Original issue reported on code.google.com by [email protected] on 23 Nov 2013 at 7:35

Takes a long time to load or save a file

What steps will reproduce the problem?
1.run win gui and connect
2.Save file or load file
3. Takes a long time to do this

What is the expected output? What do you see instead?
Takes a long time to do this.  If I pause the graph, the operation behaves as 
expected in a normal time frame.  

What version of the product are you using? On what operating system?
I am using WinGui 2.2 and OS is Windows 7.

Please provide any additional information below.
Perhaps you could pause the graph during the load and save operations. Or at 
least put up a message to pause the graph during those operations.

Original issue reported on code.google.com by [email protected] on 29 Apr 2013 at 11:42

[R53] string format error/ AForge x64 support error / realtime tab didn't update

1. String Format ERROR
    cause by:   Format error
    File:   MWGUIControls\heading_indicator.cs(87)
    solution:
        更正為 "{0:000°}"

2. 無法載入檔案或組件 'AForge.Video.FFMPEG ..... 
System.BadImageFormatException
Could not load file or assembly 'AForge.Video.FFMPEG, Version=2.2.3.0, 
Culture=neutral, PublicKeyToken=03563089b1be05dd' or one of its dependencies. 
An attempt was made to load a program with an incorrect format.

    cause by:   該AForge版本不支援x64核心
    reference:  http://www.aforgenet.com/forum/viewtopic.php?f=2&t=2526
    solution:
        第一種: Building target from 'Any CPU' to 'x86'
        第二種: Corresponding x64 library& *.dll

3. realtime tab didn't update
    cause by:   some sentence lose update to enum-type
    File:   mainGUI.cs (1782)
    處理方法:
        private void update_gui()
        {
        ...
        // TAB realtime
        if (tabMain.SelectedIndex == 2)         //  original(wrong)
        if (tabMain.SelectedIndex == GUIPages.Realtime) //  after correction
        ...
        }

What version of the product are you using? On what operating system?
R53/win7 x64

Please provide any additional information below.
Cheers

Original issue reported on code.google.com by [email protected] on 29 Oct 2013 at 11:35

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.