using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPASmartClient.SCChip
{
///
/// 命令发送方
///
public enum IC_SENDER:byte
{
///
/// 上位机
///
CONSOLE=0x01,
///
/// 单片机
///
DEVICE=0x02,
}
}