Add first lot of AVRStudio project files for some of the library projects.

This commit is contained in:
Dean Camera 2010-07-13 04:32:33 +00:00
parent d3e00ce1ec
commit ac61b81a0b
41 changed files with 11 additions and 4 deletions

View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace Project1HostApp
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmDataloggerSettings());
}
}
}