In order to learn .Net Micro Framework, I bought a Fez Panda recently.
I need a completed test since I bought it from the Internet. But I’m not familiar with it, so I wrote a simple program(Shining LED).
To,
SolutionReleaseInfo.solutionVersion: 4.1.3.0
SolutionReleaseInfo.solutionVendorInfo: GHI Electronics, LLC
SoftwareVersion.BuildDate: Oct 15 2010
SoftwareVersion.CompilerVersion: 310739
There is no error in this step.
And the program, so easy.
using System;
using System.Threading;
using Microsoft.SPOT;
using Microsoft.SPOT.Hardware;
using GHIElectronics.NETMF.FEZ;
namespace StartFEZPandaApplication
{
public class Program
{
public static void Main()
{
// Blink board LED
bool ledState = false;
OutputPort led = new OutputPort((Cpu.Pin)FEZ_Pin.Digital.LED, ledState);
Int32 num = 100;
while (true)
{
// Sleep for 500 milliseconds
num = (num + 100) % 1000;
Thread.Sleep(num);
// toggle LED state
ledState = !ledState;
Debug.Print(ledState.ToString() + " " + num.ToString());
led.Write(ledState);
Thread.Sleep(num);
ledState = !ledState;
Debug.Print(ledState.ToString() + " " + num.ToString());
led.Write(ledState);
}
}
}
}
When you received the Panda, did you plug it into the USB port and see the blinking program running? (This is the default application) If yes, then there is no fault with the panda as you can ping it with deploy tool!
Gus has a very good video to deploy programs to the domino
[url]- YouTube part 1
[url]- YouTube part 2
[url]- YouTube part 3
Everything seems to be working correctly.
Now this step “Create Application Deployment”, will not work. I am not sure why you are using it… what are you trying to do?
Device works well, Deploying and debugging with VS2010 is also OK.
But I can’t “Create Application Deployment” in “.Net Micro Framework Deployment Tool”
Though it doesn’t matter so much, I still want to know whether it is my personal problem.
@ Mike
I just watched a video, in the video, the man deploy the program again after upgrading firmware.
I wonder that where is the deployment file(HEX) from And I’m afraid that it may be destoried while mailing.
on USBizi (smaller NETMF product), there is no “create application for deployment”. But we provide a way for you in our bootloader to read/deploy your application without MFDeploy. This is explained in USBizi user manual. Typically, this is only needed when you go into production and cannot use visual studio.