{"id":20687733,"url":"https://github.com/klauer/f460","last_synced_at":"2026-05-28T06:03:13.655Z","repository":{"id":11773988,"uuid":"14311720","full_name":"klauer/f460","owner":"klauer","description":"FMB Oxford F460 4-channel current monitor (EPICS device support)","archived":false,"fork":false,"pushed_at":"2014-10-24T18:10:56.000Z","size":292,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-10T23:58:30.916Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Shell","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/klauer.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}},"created_at":"2013-11-11T20:03:46.000Z","updated_at":"2015-10-29T14:57:08.000Z","dependencies_parsed_at":"2022-09-23T01:51:23.695Z","dependency_job_id":null,"html_url":"https://github.com/klauer/f460","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/klauer/f460","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klauer%2Ff460","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klauer%2Ff460/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klauer%2Ff460/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klauer%2Ff460/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/klauer","download_url":"https://codeload.github.com/klauer/f460/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klauer%2Ff460/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27760138,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-16T02:00:10.477Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2024-11-16T22:58:06.433Z","updated_at":"2025-12-16T06:01:37.597Z","avatar_url":"https://github.com/klauer.png","language":"Shell","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%2Fklauer%2Ff460","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fklauer%2Ff460","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fklauer%2Ff460/lists"}