ni-visa-bindings 1.0.1

Raw Rust bindings to the NI-VISA library, providing low-level access to the National Instruments Virtual Instrument Software Architecture (VISA) API for instrument control and communication.
1
2
3
4
5
6
7
8
9
#ifdef _WIN32
    #include "C:\\Program Files (x86)\\IVI Foundation\\VISA\\WinNT\\Include\\visa.h" // Windows path
#elif __APPLE__
    #include "/Library/Frameworks/VISA.framework/Headers/visa.h" // macOS path
#elif __linux__
    #include "/usr/include/visa.h" // Linux path
#else
    #error "Unsupported platform"
#endif