mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
19 lines
314 B
C#
19 lines
314 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Cosmos.Debug.Hosts
|
|
{
|
|
public class IntelEdison : Host
|
|
{
|
|
public IntelEdison(Dictionary<string, string> aParams, bool aUseGDB) : base(aParams, aUseGDB)
|
|
{
|
|
}
|
|
|
|
public override void Start()
|
|
{
|
|
}
|
|
|
|
public override void Stop()
|
|
{
|
|
}
|
|
}
|
|
}
|