Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
李娜
/
SO664-AssemblyLine
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
作业
提交
问题看板
文件
提交
网络
比较
分支
标签
Commit 47a6baec
由
LN
编写于
2021-08-25 17:27:38 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
升降轴P2点位问题修改。
1 个父辈
d1e28d12
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
5 行增加
和
8 行删除
SO664-AssemblyLine.sln
source/DeviceLibrary/assemblyLine/HY/HY_Coveryor_Partial.cs
source/LoadCVSLibrary/storeConfig/config/FeedingEquip_Config.cs
source/LoadCVSLibrary/storeConfig/config/HYEquip_Config.cs
source/LoadCVSLibrary/storeConfig/config/MoveEquip_Config.cs
SO664-AssemblyLine.sln
查看文件 @
47a6bae
...
...
@@ -22,7 +22,6 @@ Global
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{43CDD09E-FCF3-4960-A01D-3BBFE9933122}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{43CDD09E-FCF3-4960-A01D-3BBFE9933122}.Debug|Any CPU.Build.0 = Debug|Any CPU
{43CDD09E-FCF3-4960-A01D-3BBFE9933122}.Release|Any CPU.ActiveCfg = Release|Any CPU
{43CDD09E-FCF3-4960-A01D-3BBFE9933122}.Release|Any CPU.Build.0 = Release|Any CPU
{513BC1C9-800D-43A6-9499-3700BAEC3554}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
...
...
@@ -38,11 +37,9 @@ Global
{0D2542F5-DD62-4352-82D0-383D9A045E74}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0D2542F5-DD62-4352-82D0-383D9A045E74}.Release|Any CPU.Build.0 = Release|Any CPU
{7DE7A34B-77A5-465B-985B-1219FE0A9615}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7DE7A34B-77A5-465B-985B-1219FE0A9615}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7DE7A34B-77A5-465B-985B-1219FE0A9615}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7DE7A34B-77A5-465B-985B-1219FE0A9615}.Release|Any CPU.Build.0 = Release|Any CPU
{C9575C5E-9D4B-4B4F-BE41-926652B8985F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C9575C5E-9D4B-4B4F-BE41-926652B8985F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C9575C5E-9D4B-4B4F-BE41-926652B8985F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C9575C5E-9D4B-4B4F-BE41-926652B8985F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
...
...
source/DeviceLibrary/assemblyLine/HY/HY_Coveryor_Partial.cs
查看文件 @
47a6bae
...
...
@@ -541,7 +541,7 @@ namespace OnlineStore.DeviceLibrary
}
else
if
(
MoveInfo
.
IsStep
(
LineMoveStep
.
JM_02_CylinderTake
))
{
int
p2
=
Config
.
GetUpdownP2Detial
(
MoveInfo
.
MoveParam
.
PlateH
);
int
p2
=
Config
.
GetUpdownP2Detial
(
MoveInfo
.
MoveParam
.
PlateH
,
MoveInfo
.
MoveParam
.
PlateW
);
MoveInfo
.
NextMoveStep
(
LineMoveStep
.
JM_03_UpdownToP2
);
OutLog
(
logName
+
MoveInfo
.
SLog
+
":升降轴下降到取料点P2 ["
+
p2
+
"]"
);
UpdownAxis
.
AbsMove
(
MoveInfo
,
p2
,
Config
.
UpdownAxis_P2Speed
);
...
...
source/LoadCVSLibrary/storeConfig/config/FeedingEquip_Config.cs
查看文件 @
47a6bae
...
...
@@ -201,7 +201,7 @@ namespace OnlineStore.LoadCSVLibrary
return
UpdownP2DetialMap
;
}
public
int
GetUpdownP2Detial
(
int
trayHeight
,
int
traySize
=
8
)
public
int
GetUpdownP2Detial
(
int
trayHeight
,
int
traySize
)
{
LoadP2DetialMap
();
string
fkey
=
traySize
+
"X"
+
trayHeight
;
...
...
source/LoadCVSLibrary/storeConfig/config/HYEquip_Config.cs
查看文件 @
47a6bae
...
...
@@ -218,7 +218,7 @@ namespace OnlineStore.LoadCSVLibrary
return
UpdownP2DetialMap
;
}
public
int
GetUpdownP2Detial
(
int
trayHeight
,
int
traySize
=
8
)
public
int
GetUpdownP2Detial
(
int
trayHeight
,
int
traySize
)
{
LoadP2DetialMap
();
string
fkey
=
traySize
+
"X"
+
trayHeight
;
...
...
source/LoadCVSLibrary/storeConfig/config/MoveEquip_Config.cs
查看文件 @
47a6bae
...
...
@@ -124,7 +124,7 @@ namespace OnlineStore.LoadCSVLibrary
return
UpdownP2DetialMap
;
}
public
int
GetUpdownP2Detial
(
int
trayHeight
,
int
traySize
=
8
)
public
int
GetUpdownP2Detial
(
int
trayHeight
,
int
traySize
)
{
LoadP2DetialMap
();
string
fkey
=
traySize
+
"X"
+
trayHeight
;
...
...
@@ -198,7 +198,7 @@ namespace OnlineStore.LoadCSVLibrary
return
UpdownP3DetialMap
;
}
public
int
GetUpdownP3Detial
(
int
trayHeight
,
int
traySize
=
8
)
public
int
GetUpdownP3Detial
(
int
trayHeight
,
int
traySize
)
{
LoadP3DetialMap
();
string
fkey
=
traySize
+
"X"
+
trayHeight
;
...
...
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论