Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
刘韬
/
1069_MIMO_PlUS
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
作业
提交
问题看板
文件
提交
网络
比较
分支
标签
Commit 1991b45f
由
刘韬
编写于
2023-11-07 14:52:12 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
添加禁止单盘入库的选项
DisableSingleReelIn
1 个父辈
48d5cb2d
显示空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
20 行增加
和
15 行删除
Common/Setting_Init.cs
DLL/AGVLib.dll
DLL/ConfigHelper.dll
DLL/ConfigHelper.xml
DLL/ConfigHelper.zip
DeviceLibrary/DeviceLibrary.csproj
DeviceLibrary/DeviceLibrary/ServerCommunication.cs
Common/Setting_Init.cs
查看文件 @
1991b45
...
@@ -70,5 +70,9 @@ namespace OnlineStore.Common
...
@@ -70,5 +70,9 @@ namespace OnlineStore.Common
public
static
MyConfig
<
int
>
OutstoreHeightCheckUpperDeviation
=
3
;
public
static
MyConfig
<
int
>
OutstoreHeightCheckUpperDeviation
=
3
;
[
MyConfigComment
(
"出库料盘定位信号对射触发位置高度偏差"
)]
[
MyConfigComment
(
"出库料盘定位信号对射触发位置高度偏差"
)]
public
static
MyConfig
<
int
>
ReelCheckTriggerDeviation
=
5
;
public
static
MyConfig
<
int
>
ReelCheckTriggerDeviation
=
5
;
[
MyConfigComment
(
"是否禁止单盘入库"
)]
public
static
MyConfig
<
bool
>
DisableSingleReelIn
=
false
;
}
}
}
}
DLL/AGVLib.dll
0 → 100644
查看文件 @
1991b45
此文件类型无法预览
DLL/ConfigHelper.dll
查看文件 @
1991b45
此文件类型无法预览
DLL/ConfigHelper.xml
查看文件 @
1991b45
...
@@ -57,6 +57,17 @@
...
@@ -57,6 +57,17 @@
the contents of this method with the code editor.
the contents of this method with the code editor.
</summary>
</summary>
</member>
</member>
<member
name=
"P:ConfigHelper.CheckedListBoxEx.DataSource"
>
<summary>
绑定数据源
</summary>
<param
name=
"data"
></param>
</member>
<member
name=
"T:ConfigHelper.CheckItem"
>
<summary>
Represents an item in the checklistbox
</summary>
</member>
<member
name=
"T:ConfigHelper.Config"
>
<member
name=
"T:ConfigHelper.Config"
>
<summary>
<summary>
自定义配置存取
自定义配置存取
...
@@ -250,16 +261,5 @@
...
@@ -250,16 +261,5 @@
</summary>
</summary>
<param
name=
"comment"
></param>
<param
name=
"comment"
></param>
</member>
</member>
<member
name=
"P:ConfigHelper.CheckedListBoxEx.DataSource"
>
<summary>
绑定数据源
</summary>
<param
name=
"data"
></param>
</member>
<member
name=
"T:ConfigHelper.CheckItem"
>
<summary>
Represents an item in the checklistbox
</summary>
</member>
</members>
</members>
</doc>
</doc>
DLL/ConfigHelper.zip
0 → 100644
查看文件 @
1991b45
此文件类型无法预览
DeviceLibrary/DeviceLibrary.csproj
查看文件 @
1991b45
...
@@ -32,9 +32,8 @@
...
@@ -32,9 +32,8 @@
<WarningLevel>4</WarningLevel>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
</PropertyGroup>
<ItemGroup>
<ItemGroup>
<Reference Include="AGVLib, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="AGVLib">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\DLL\AGVLib.dll</HintPath>
<HintPath>..\..\..\DLL\AGVLib\AGVLib\bin\Debug\AGVLib.dll</HintPath>
</Reference>
</Reference>
<Reference Include="CodeLibrary, Version=1.0.8384.25672, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="CodeLibrary, Version=1.0.8384.25672, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<SpecificVersion>False</SpecificVersion>
...
...
DeviceLibrary/DeviceLibrary/ServerCommunication.cs
查看文件 @
1991b45
...
@@ -477,11 +477,13 @@ namespace DeviceLibrary
...
@@ -477,11 +477,13 @@ namespace DeviceLibrary
{
{
map
[
ParamDefine
.
confirmReelOut
]
=
ParamDefine
.
enable
;
map
[
ParamDefine
.
confirmReelOut
]
=
ParamDefine
.
enable
;
}
}
if
(!
Setting_Init
.
DisableSingleReelIn
)
{
if
(
RobotManage
.
mainMachine
.
StringType
==
MainMachine
.
StringTypeE
.
Out
||
RobotManage
.
mainMachine
.
StringMoveInfo
.
MoveStep
==
MoveStep
.
Wait
)
if
(
RobotManage
.
mainMachine
.
StringType
==
MainMachine
.
StringTypeE
.
Out
||
RobotManage
.
mainMachine
.
StringMoveInfo
.
MoveStep
==
MoveStep
.
Wait
)
{
{
map
[
ParamDefine
.
singleReelIn
]
=
ParamDefine
.
enable
;
map
[
ParamDefine
.
singleReelIn
]
=
ParamDefine
.
enable
;
}
}
}
map
[
ParamDefine
.
SendEmptyShelf
]=
ParamDefine
.
disable
;
map
[
ParamDefine
.
SendEmptyShelf
]=
ParamDefine
.
disable
;
map
[
ParamDefine
.
SendFullShelf
]
=
ParamDefine
.
disable
;
map
[
ParamDefine
.
SendFullShelf
]
=
ParamDefine
.
disable
;
map
[
ParamDefine
.
NeedEmptySHelf
]=
ParamDefine
.
disable
;
map
[
ParamDefine
.
NeedEmptySHelf
]=
ParamDefine
.
disable
;
...
...
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论