mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-23 06:18:54 +00:00
19 lines
313 B
C#
19 lines
313 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()
|
|
{
|
|
}
|
|
}
|
|
}
|