onix.h#
ONIX hardware-specific definitions that extend the liboni
and are outside
the scope of the ONI specification. This file is not needed to use the API
(oni.h, onidriver.h, etc.).
ONIX Devices#
Device definitions for ONIX hardware. These definitions are allowances of the ONI specification and are not required to use the API.
Attention
Many of the devices in this enumeration have no ready-made route
to use in high-level software. This is true for a variety of reasons. For
instance, they may be prototype hardware or test fixture that we wish to
maintain for backward compatibility (e.g. ONIX_TESTREG0
). Or, they
may be a low level device (e.g. ONIX_AD7617
) that is used in the
background by other, higher order devices in the list (e.g.
ONIX_FMCANALOG1R3
).
-
enum onix_device_id_t#
-
ONIX_NULL#
(
0
) Placeholder device
-
ONIX_INFO#
(
1
) Virtual device that provides status and error information
-
ONIX_RHD2132#
(
2
) Intan RHD2132 bioamplifier
-
ONIX_RHD2164#
(
3
) Intan RHD2162 bioamplifier
-
ONIX_ESTIM#
(
4
) Electrical stimulation subcircuit
-
ONIX_OSTIM#
(
5
) Optical stimulation subcircuit
-
ONIX_TS4231#
(
6
) Triad semiconductor TS4231 optical to digital converter
-
ONIX_DINPUT32#
(
7
) 32-bit digital input port
-
ONIX_DOUTPUT32#
(
8
) 32-bit digital output port
-
ONIX_BNO055#
(
9
) BNO055 9-DOF IMU
-
ONIX_TEST0#
(
10
) A test device used for debugging
-
ONIX_NEUROPIX1R0#
(
11
) Neuropixels 1.0
-
ONIX_HEARTBEAT#
(
12
) Host heartbeat
-
ONIX_AD51X2#
(
13
) AD51X2 digital potentiometer
-
ONIX_FMCVCTRL#
(
14
) Open Ephys FMC Host Board rev. 1.3 link voltage control subcircuit
-
ONIX_AD7617#
(
15
) AD7617 ADC/DAS
-
ONIX_AD576X#
(
16
) AD576X DAC
-
ONIX_TESTREG0#
(
17
) A test device used for testing remote register programming
-
ONIX_BREAKDIG1R3#
(
18
) Open Ephys Breakout Board rev. 1.3 digital and user IO
-
ONIX_FMCCLKIN1R3#
(
19
) Open Ephys FMC Host Board rev. 1.3 clock input subcircuit
-
ONIX_FMCCLKOUT1R3#
(
20
) Open Ephys FMC Host Board rev. 1.3 clock output subcircuit
-
ONIX_TS4231V2ARR#
(
21
) Triad semiconductor TS4231 optical to digital converter array targeting V2 base-stations
-
ONIX_FMCANALOG1R3#
(
22
) Open Ephys FMC Host Board rev. 1.3 analog IO subcircuit
-
ONIX_FMCLINKCTRL#
(
23
) Open Ephys FMC Host Board coaxial headstage link control circuit
-
ONIX_DS90UB9RAW#
(
24
) Raw DS90UB9x deserializer
-
ONIX_TS4231V1ARR#
(
25
) Triad semiconductor TS4231 optical to digital converter array targeting V1 base-stations
-
ONIX_MAX10ADCCORE#
(
26
) Max10 internal ADC device
-
ONIX_LOADTEST#
(
27
) Variable load testing device
-
ONIX_MEMUSAGE#
(
28
) Acquisition hardware buffer usage reporting device
-
ONIX_HARPSYNCINPUT#
(
30
) Harp synchronization data input device
-
ONIX_RHS2116#
(
31
) Intan RHS2116 bioamplifier and stimulator
-
ONIX_RHS2116TRIGGER#
(
32
) Multi Intan RHS2116 stimulation trigger
-
ONIX_NULL#
Functions#
-
const char *onix_device_str(int dev_id)#
Returns a human-readable description from a given
onix_device_id_t
.- Parameters:
dev_id – The
onix_device_id_t
to get the description of.
- Returns:
A C string containing the device description, which could simply be “Unknown device” if the device is not a member of
onix_device_id_t
.