{"id":26404473,"url":"https://github.com/nsls2/f460-ioc","last_synced_at":"2026-02-03T08:32:11.434Z","repository":{"id":277587091,"uuid":"931200194","full_name":"NSLS2/F460-ioc","owner":"NSLS2","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-26T16:39:26.000Z","size":90,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-11T16:54:56.543Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NSLS2.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-11T21:59:22.000Z","updated_at":"2025-02-26T16:39:25.000Z","dependencies_parsed_at":"2025-03-17T22:30:56.219Z","dependency_job_id":null,"html_url":"https://github.com/NSLS2/F460-ioc","commit_stats":null,"previous_names":["nsls2/f460-ioc"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/NSLS2/F460-ioc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NSLS2%2FF460-ioc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NSLS2%2FF460-ioc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NSLS2%2FF460-ioc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NSLS2%2FF460-ioc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NSLS2","download_url":"https://codeload.github.com/NSLS2/F460-ioc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NSLS2%2FF460-ioc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29038561,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T06:39:36.383Z","status":"ssl_error","status_checked_at":"2026-02-03T06:39:32.787Z","response_time":96,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-17T16:35:49.479Z","updated_at":"2026-02-03T08:32:11.418Z","avatar_url":"https://github.com/NSLS2.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"F460 EPICS Driver\n=================\n\nStreamDevice-based EPICS support for the FMB Oxford F460 four-channel \nfast current measurement device.\n\nRequirements\n------------\n\nThough it may work on other versions, the driver was tested on these:\n\n1. EPICS base 3.14.12.3 http://www.aps.anl.gov/epics/\n2. asyn 4-21 http://www.aps.anl.gov/epics/modules/soft/asyn/\n3. StreamDevice 2.6 http://epics.web.psi.ch/software/streamdevice/\n\nA newer StreamDevice may be required than the NSLS-II Debian package has (as of early 2013).\nIf included in $(TOP)/StreamDevice, it will be built automatically.\nThe newer StreamDevice also requires a newer asyn (\u003e= 4-18).\n\nOptional\n--------\n\n1. CSS-NSLS2 download: http://cs-studio.sourceforge.net/nsls2/nsls2.html\n   OPI screens are provided in $TOP/opi for CSS/BOY. \n   Import these into your css-workspace and set the macros to match the\n   IOC settings.\n\nInstallation\n------------\n\n1. Install EPICS\n    1. If using a Debian-based system (e.g., Ubuntu), use the packages here http://epics.nsls2.bnl.gov/debian/\n    2. If no packages are available for your distribution, build from source\n2. Edit configure/RELEASE\n    1. Point the directories listed in there to the appropriate places\n    2. If using the Debian packages, everything can be pointed to /usr/lib/epics\n3. Edit iocBoot/iocf460/st.cmd\n    1. Change the shebang on the top of the script if your architecture is different than linux-x86:\n        #!../../bin/linux-x86/f460\n        (check if the environment variable EPICS_HOST_ARCH is set, or perhaps `uname -a`, or \n        after running `make` see what was built in $TOP/bin)\n    2. The following line sets the prefix to all of your F460 PVs:\n        epicsEnvSet(\"P\", \"E1:F460:\")\n       Set the second quoted string appropriately according to your facility's naming standards.\n    3. The following line sets the IP address of the serial device server communicating with the F460:\n        drvAsynIPPortConfigure(\"$(PORT)\", \"10.0.0.11:4001\")\n       Change the 10.0.0.11 to the IP address, and 4001 to the correct port number.\n    4. Alternatively, if you have the device directly connected to a serial port on the machine,\n       uncomment and modify the drvAsynSerialPortConfigure and asynSetOption lines to, \n       match the device's baud rate and other settings:\n       ```\n       drvAsynSerialPortConfigure(\"$(PORT)\", \"/dev/ttyS0\")\n       asynSetOption(\"$(PORT)\", 0, \"baud\", \"115200\")\n       asynSetOption(\"$(PORT)\", 0, \"bits\", \"8\")\n       asynSetOption(\"$(PORT)\", 0, \"parity\", \"none\")\n       asynSetOption(\"$(PORT)\", 0, \"stop\", \"1\")\n       asynSetOption(\"$(PORT)\", 0, \"clocal\", \"Y\")\n       asynSetOption(\"$(PORT)\", 0, \"crtscts\", \"N\")\n       ```\n\n4. Go to the top directory and run `make`\n5. If all goes well:\n\n    ```\n    cd iocBoot/iocf460\n    chmod +x st.cmd\n    ./st.cmd\n    ```\n\n6. Run Control System Studio and open f460.opi.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnsls2%2Ff460-ioc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnsls2%2Ff460-ioc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnsls2%2Ff460-ioc/lists"}