-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
83 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
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 |
---|---|---|
|
@@ -7,6 +7,22 @@ IOC Builder for EPICS and Kubernetes (ibek). | |
The Generic IOC built by CI is published to | ||
[Github Packages](https://github.com/orgs/epics-containers/packages?repo_name=ioc-adsimdetector). | ||
|
||
## How to test this container. | ||
|
||
1. git clone [email protected]:epics-containers/ioc-adsimdetector.git | ||
1. open the folder in vscode | ||
1. open project in container | ||
1. open a terminal and perform the following inside the container | ||
|
||
- (TODO it would be nice to have a single ibek wrapper command for these | ||
or maybe add them in as part of the 'ioc build' wrapper) | ||
- ibek ioc build | ||
- ibek dev instance /epics/ioc-adsimdetector/ioc_examples/bl01t-ea-ioc-02 | ||
- ibek support generate-links ADCore | ||
- ibek support generate-links ADSimDetector | ||
- cd /epics/ioc | ||
- ./start | ||
|
||
|
||
## Related projects | ||
|
||
|
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,59 @@ | ||
# yaml-language-server: $schema=https://github.com/epics-containers/ioc-adsimdetector/releases/download/2023.11.2/ibek.ioc.schema.json | ||
|
||
ioc_name: bl01t-ea-ioc-02 | ||
description: Example simulated camera for BL01T | ||
|
||
entities: | ||
- type: ADSimDetector.simDetector | ||
PORT: det.cam | ||
P: BL01T-EA-TST-02 | ||
R: ":CAM:" | ||
|
||
- type: ADCore.NDPvaPlugin | ||
PORT: det.pva | ||
PVNAME: BL01T-EA-TST-02:PVA:OUTPUT | ||
P: BL01T-EA-TST-02 | ||
R: ":PVA:" | ||
NDARRAY_PORT: det.cam | ||
|
||
- type: ADCore.NDROI | ||
NDARRAY_PORT: det.cam | ||
P: BL01T-EA-TST-02 | ||
PORT: det.roi | ||
R: ":ROI:" | ||
|
||
- type: ADCore.NDStdArrays | ||
FTVL: UCHAR | ||
NDARRAY_PORT: det.roi | ||
NELEMENTS: 1200000 | ||
P: BL01T-EA-TST-02 | ||
PORT: det.arr | ||
R: ":ARR:" | ||
TYPE: Int8 | ||
|
||
- type: ADCore.NDStats | ||
HIST_SIZE: 256 | ||
NDARRAY_PORT: det.cam | ||
P: BL01T-EA-TST-02 | ||
PORT: det.stat | ||
R: ":STAT:" | ||
XSIZE: 1292 | ||
YSIZE: 964 | ||
|
||
- type: ADCore.NDProcess | ||
NDARRAY_PORT: det.cam | ||
P: BL01T-EA-TST-02 | ||
PORT: det.proc | ||
R: ":PROC:" | ||
|
||
- type: ADCore.NDFileTIFF | ||
NDARRAY_PORT: det.cam | ||
P: BL01T-EA-TST-02 | ||
PORT: det.tiff | ||
R: ":TIFF:" | ||
|
||
- type: ADCore.NDFileHDF5 | ||
NDARRAY_PORT: det.cam | ||
P: BL01T-EA-TST-02 | ||
PORT: det.hdf | ||
R: ":HDF5:" |
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 @@ | ||
image: ghcr.io/epics-containers/ioc-adsimdetector-linux-runtime:2023.10.7 |
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,3 @@ | ||
ibek==1.5.2 | ||
# to install direct from github during development in the dev branch: | ||
#git+https://github.com/epics-containers/ibek.git@dev |