-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add ESS ADS driver support (Beckhoff TwinCAT)
- Loading branch information
Showing
4 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,4 +62,8 @@ See `<nixpkgs/maintainers/scripts/check-maintainer-github-handles.sh>` for an ex | |
email = "[email protected]"; | ||
name = "Stéphane Tzvetkov"; | ||
}; | ||
agaget = { | ||
email = "[email protected]"; | ||
name = "Alexis Gaget"; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
lib, | ||
epnixLib, | ||
epnix, | ||
mkEpicsPackage, | ||
fetchFromGitLab, | ||
local_config_site ? {}, | ||
local_release ? {}, | ||
}: | ||
mkEpicsPackage rec { | ||
pname = "ads"; | ||
version = "2023.08.20"; | ||
varname = "ADS"; | ||
|
||
inherit local_config_site local_release; | ||
|
||
src = fetchFromGitLab { | ||
domain = "gitlab.esss.lu.se"; | ||
owner = "epics-modules"; | ||
repo = "epics-twincat-ads"; | ||
rev = "f07f73cd20320e40e908ed281527a81a4799bbce"; | ||
fetchSubmodules = true; | ||
sha256 = "sha256-NCuT2EpEBEVMzQw4cU8l0AUYVXa9fUtEOGpynG5Z85M="; | ||
}; | ||
|
||
patches = [./fixDep.patch]; | ||
|
||
propagatedBuildInputs = with epnix.support; [asyn calc]; | ||
|
||
doCheck = false; | ||
|
||
preBuild = '' | ||
touch configure/RELEASE_PATHS.local | ||
touch configure/RELEASE_LIBS.local | ||
''; | ||
|
||
meta = { | ||
description = "Module providing EPICS support for ADS Protocol (Automation Device Specification)"; | ||
homepage = "https://www.beckhoff.com/en-en/products/automation/twincat/tc1xxx-twincat-3-base/tc1000.html"; | ||
license = epnixLib.licenses.epics; | ||
maintainers = with epnixLib.maintainers; [agaget]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/Makefile.epics b/Makefile.epics | ||
index ef5c909..a709c05 100644 | ||
--- a/Makefile.epics | ||
+++ b/Makefile.epics | ||
@@ -10,6 +10,7 @@ endef | ||
$(foreach dir, $(filter-out configure,$(DIRS)),$(eval $(call DIR_template,$(dir)))) | ||
|
||
iocBoot_DEPEND_DIRS += $(filter %App,$(DIRS)) | ||
+adsExApp_DEPEND_DIRS += adsApp | ||
|
||
include $(TOP)/configure/RULES_TOP | ||
|