|
| 1 | +/* |
| 2 | + ------------------------------------------------------------------ |
| 3 | +
|
| 4 | + This file is part of the Open Ephys GUI |
| 5 | + Copyright (C) 2023 Allen Institute for Brain Science and Open Ephys |
| 6 | +
|
| 7 | + ------------------------------------------------------------------ |
| 8 | +
|
| 9 | + This program is free software: you can redistribute it and/or modify |
| 10 | + it under the terms of the GNU General Public License as published by |
| 11 | + the Free Software Foundation, either version 3 of the License, or |
| 12 | + (at your option) any later version. |
| 13 | +
|
| 14 | + This program is distributed in the hope that it will be useful, |
| 15 | + but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | + GNU General Public License for more details. |
| 18 | +
|
| 19 | + You should have received a copy of the GNU General Public License |
| 20 | + along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 21 | +
|
| 22 | +*/ |
| 23 | + |
| 24 | +#include "PortController.h" |
| 25 | + |
| 26 | +PortController::PortController(PortName port_, oni_ctx ctx_) : |
| 27 | + OnixDevice(getPortNameString(port_), OnixDeviceType::PORT_CONTROL, (oni_dev_idx_t)port_, ctx_), |
| 28 | + port(port_) |
| 29 | +{ |
| 30 | +} |
| 31 | + |
| 32 | +PortController::~PortController() |
| 33 | +{ |
| 34 | +} |
| 35 | + |
| 36 | +int PortController::configureDevice() |
| 37 | +{ |
| 38 | + ONI_OK_RETURN_INT(oni_write_reg(ctx, deviceIdx, (uint32_t)PortControllerRegister::ENABLE, (uint32_t)1)) |
| 39 | + |
| 40 | + return 0; |
| 41 | +} |
| 42 | + |
| 43 | +void PortController::startAcquisition() |
| 44 | +{ |
| 45 | + errorFlag = false; |
| 46 | +} |
| 47 | + |
| 48 | +void PortController::stopAcquisition() |
| 49 | +{ |
| 50 | + while (!frameArray.isEmpty()) |
| 51 | + { |
| 52 | + const GenericScopedLock<CriticalSection> frameLock(frameArray.getLock()); |
| 53 | + oni_destroy_frame(frameArray.removeAndReturn(0)); |
| 54 | + } |
| 55 | +} |
| 56 | + |
| 57 | +void PortController::addFrame(oni_frame_t* frame) |
| 58 | +{ |
| 59 | + const GenericScopedLock<CriticalSection> frameLock(frameArray.getLock()); |
| 60 | + frameArray.add(frame); |
| 61 | +} |
| 62 | + |
| 63 | +void PortController::processFrames() |
| 64 | +{ |
| 65 | + while (!frameArray.isEmpty()) |
| 66 | + { |
| 67 | + const GenericScopedLock<CriticalSection> frameLock(frameArray.getLock()); |
| 68 | + oni_frame_t* frame = frameArray.removeAndReturn(0); |
| 69 | + |
| 70 | + int8_t* dataPtr = (int8_t*)frame->data; |
| 71 | + |
| 72 | + int dataOffset = 8; |
| 73 | + |
| 74 | + uint32_t code = (uint32_t) *(dataPtr + dataOffset); |
| 75 | + uint32_t data = (uint32_t) *(dataPtr + dataOffset + 1); |
| 76 | + |
| 77 | + errorFlag = errorFlag || ((uint32_t)data & LINKSTATE_SL) == 0; |
| 78 | + |
| 79 | + oni_destroy_frame(frame); |
| 80 | + |
| 81 | + LOGE("Port status changed for " + getName() + "."); |
| 82 | + } |
| 83 | +} |
| 84 | + |
| 85 | +void PortController::updateDiscoveryParameters(DiscoveryParameters parameters) |
| 86 | +{ |
| 87 | + discoveryParameters = parameters; |
| 88 | +} |
| 89 | + |
| 90 | +DiscoveryParameters PortController::getHeadstageDiscoveryParameters(String headstage) |
| 91 | +{ |
| 92 | + if (headstage == "Neuropixels 1.0f") |
| 93 | + { |
| 94 | + return DiscoveryParameters(5.0f, 7.0f, 1.0f, 0.2f); |
| 95 | + } |
| 96 | + |
| 97 | + return DiscoveryParameters(); |
| 98 | +} |
| 99 | + |
| 100 | +bool PortController::configureVoltage(float voltage) |
| 101 | +{ |
| 102 | + if (ctx == NULL) return false; |
| 103 | + |
| 104 | + if (voltage == defaultVoltage) |
| 105 | + { |
| 106 | + if (discoveryParameters == DiscoveryParameters()) return false; |
| 107 | + |
| 108 | + for (voltage = discoveryParameters.minVoltage; voltage <= discoveryParameters.maxVoltage; voltage += discoveryParameters.voltageIncrement) |
| 109 | + { |
| 110 | + setVoltage(voltage); |
| 111 | + |
| 112 | + if (checkLinkState()) |
| 113 | + { |
| 114 | + setVoltage(voltage + discoveryParameters.voltageOffset); |
| 115 | + return checkLinkState(); |
| 116 | + } |
| 117 | + } |
| 118 | + } |
| 119 | + else |
| 120 | + { |
| 121 | + setVoltage(voltage); |
| 122 | + |
| 123 | + return checkLinkState(); |
| 124 | + } |
| 125 | + |
| 126 | + return false; |
| 127 | +} |
| 128 | + |
| 129 | +void PortController::setVoltageOverride(float voltage, bool waitToSettle) |
| 130 | +{ |
| 131 | + if (ctx == NULL) return; |
| 132 | + |
| 133 | + ONI_OK(oni_write_reg(ctx, (oni_dev_idx_t)port, (oni_reg_addr_t)PortControllerRegister::PORTVOLTAGE, (oni_reg_val_t)(voltage * 10))); |
| 134 | + if (waitToSettle) sleep_for(std::chrono::milliseconds(500)); |
| 135 | +} |
| 136 | + |
| 137 | +void PortController::setVoltage(float voltage) |
| 138 | +{ |
| 139 | + if (ctx == NULL) return; |
| 140 | + |
| 141 | + ONI_OK(oni_write_reg(ctx, (oni_dev_idx_t)port, (oni_reg_addr_t)PortControllerRegister::PORTVOLTAGE, 0)); |
| 142 | + sleep_for(std::chrono::milliseconds(300)); |
| 143 | + |
| 144 | + ONI_OK(oni_write_reg(ctx, (oni_dev_idx_t)port, (oni_reg_addr_t)PortControllerRegister::PORTVOLTAGE, (oni_reg_val_t)(voltage * 10))); |
| 145 | + sleep_for(std::chrono::milliseconds(500)); |
| 146 | +} |
| 147 | + |
| 148 | +bool PortController::checkLinkState() const |
| 149 | +{ |
| 150 | + if (ctx == NULL) return false; |
| 151 | + |
| 152 | + oni_reg_val_t linkState; |
| 153 | + int result = oni_read_reg(ctx, (oni_dev_idx_t)port, (oni_reg_addr_t)PortControllerRegister::LINKSTATE, &linkState); |
| 154 | + |
| 155 | + if (result != 0) { LOGE(oni_error_str(result)); return false; } |
| 156 | + else if ((linkState & LINKSTATE_SL) == 0) { LOGE("Unable to acquire communication lock."); return false; } |
| 157 | + else return true; |
| 158 | +} |
| 159 | + |
| 160 | +String PortController::getPortNameString(PortName portName) |
| 161 | +{ |
| 162 | + switch (portName) |
| 163 | + { |
| 164 | + case PortName::PortA: |
| 165 | + return "Port A"; |
| 166 | + case PortName::PortB: |
| 167 | + return "Port B"; |
| 168 | + default: |
| 169 | + break; |
| 170 | + } |
| 171 | +} |
0 commit comments