https://github.com/isisneutronmuon/pvaccess-labview
An EPICS PVAccess library for LabVIEW
https://github.com/isisneutronmuon/pvaccess-labview
Last synced: 4 months ago
JSON representation
An EPICS PVAccess library for LabVIEW
- Host: GitHub
- URL: https://github.com/isisneutronmuon/pvaccess-labview
- Owner: ISISNeutronMuon
- License: other
- Created: 2025-04-02T13:05:53.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-27T18:17:22.000Z (5 months ago)
- Last Synced: 2026-01-28T00:53:35.050Z (5 months ago)
- Language: LabVIEW
- Homepage:
- Size: 12.4 MB
- Stars: 5
- Watchers: 8
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PVAccess for LabVIEW
An [EPICS PVAccess](https://docs.epics-controls.org/en/latest/pv-access/protocol.html) library for LabVIEW.
⚠️ This software is in the alpha stage of development and does not have a stable interface.

## Building
- Clone [EPICS Base](https://github.com/epics-base/epics-base/) to `./epics-base` and build it
```sh
git clone https://github.com/epics-base/epics-base.git
make -C epics-base
```
- Clone [PVXS](https://github.com/epics-base/pvxs/) to `./pvxs` and build it
```sh
git clone --recurse-submodules https://github.com/epics-base/pvxs.git
echo 'EPICS_BASE=$(TOP)/../epics-base' > ./pvxs/configure/RELEASE.local
make -C pvxs/bundle libevent
make -C pvxs
```
See the [PVXS docs](https://epics-base.github.io/pvxs/building.html) for more details
- Build this library
- Windows
```
cmake -G "Visual Studio 17 2022" -A x64 -B .\build
cmake --build .\build --config Release
```
- Linux
```sh
cmake -B ./build
cmake --build ./build
```