fix: 修复一系列bug,包括热启动,前端模板,jtag; feat:修改矩阵键盘样式
This commit is contained in:
@@ -190,11 +190,12 @@ public sealed class UDPClientPool
|
||||
/// <returns>是否成功</returns>
|
||||
public async static ValueTask<bool> SendResetSignal(IPEndPoint endPoint)
|
||||
{
|
||||
return await Task.Run(() =>
|
||||
return await Task.Run(async () =>
|
||||
{
|
||||
return SendAddrPack(
|
||||
endPoint,
|
||||
new WebProtocol.SendAddrPackage(BurstType.FixedBurst, 0, true, 0, 0xF0F0F0F0));
|
||||
var ret = SendAddrPack(endPoint,
|
||||
new WebProtocol.SendAddrPackage(BurstType.FixedBurst, 0, true, 0, 0xF0F0F0F0));
|
||||
await Task.Delay(100);
|
||||
return ret;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user