Hi Jason I am having trouble with updating the board from the ground station program. I have to admit I've changed one thing with the ground station source so it will see COM17 (My Hoverfly board) and because I have multiple Propellers
connected to my system, here is what I changed -
Code:
public
MainForm()
{
InitializeComponent();
tabControl1.TabPages.Remove( tabPage3 );
// (Level Computation) for now....
}
privatevoid MainForm_Load( object sender, EventArgs e )
{
string[] names = SerialPort.GetPortNames();
List<string> Ports = newList<string>();
foreach(string name in names)
{
if(name != "COM1" && name != "COM2" && name != "COM3" && name != "COM4")
Ports.Add( name );
}
if(Ports.Count > 0)
{
// Open the serial port COM8 at 115200 baud, no parity, 8 bits, one stop bit
comm =
newSerialPort( "COM17", 115200, Parity.None, 8, StopBits.One ); //my hover port!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
comm.Open();
Active =
true;
}
tickTimer.Enabled =
true;
statsTimer.Enabled =
true;
}
As you can see from the pixs posted I have a connection. The left front motor seems to be slowly shutting down after a few seconds. What I would like to know is the proper gyro configuration for the Hoverfly board 0?
Edit: I have tried all 3 configurations in the Propeller source and also have reloaded the Hoverfly sport program to verify everything is ok.
Bookmarks