Cosmos/source/Cosmos.Debug.Common/DebugConnectorEdison.cs
2014-12-30 18:42:01 +01:00

16 lines
312 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Cosmos.Debug.Common
{
public class DebugConnectorEdison : DebugConnectorSerial
{
public DebugConnectorEdison(string aPort) : base(aPort)
{
}
}
}