-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include softIoc and other executables #14
Comments
Try: python -m epicscorelibs.ioc -h |
Thanks! Indeed, this command could be used to start up an IOC, but got the below timeout error, where I'm
All EPICS-related environment variables have been commented out. |
I can't replicate. I see: $ cat cnt.db
record(calc, "cnt") {
field(CALC, "VAL+1")
field(SCAN, "1 second")
}
$ python -m epicscorelibs.ioc -d cnt.db
IOC Starting w/ [('cnt.db', '')]
IOC dbd loaded
IOC rRDD
IOC db loaded
Starting iocInit
############################################################################
## EPICS 7.0.6.0
## Rev. 7.0.6.99.1.0
############################################################################
iocRun: All initialization complete
IOC Running
Python 3.9.2 (default, Feb 28 2021, 17:03:44)
[GCC 10.2.1 20210110] on linux
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> And concurrently... $ camonitor cnt
cnt 2021-11-02 11:47:41.880930 4
cnt 2021-11-02 11:47:42.880866 5
cnt 2021-11-02 11:47:43.880940 6
cnt 2021-11-02 11:47:44.880948 7
...
cnt 2021-11-02 11:47:45.880953 8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, I'm wondering if it's reasonable to distribute the tools like
softIoc
andsoftIocPVA
with this package.I'm using
epicscorelibs
together withpyepics
andcothread
, and it is great that I don't have to compile epics base, but in some cases,softIoc
is wanted, if this package can provide, that would be wonderful!Or I'm looking forward to a new package which is distributing EPICS tools via PyPI.
The text was updated successfully, but these errors were encountered: