mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-05-12 07:30:03 +02:00
* period and exptime(patternwaittime level 0) * added new regsieterdefs and updated api version and fixedpattern reg * autogenerate commands * formatting * minor * wip resetflow, readout mode, transceiver mask, transceiver enable * acquisition, but streaming done bit and busy (exposing + read chip to fifo) not known yet from fw * programming fpga and device tree done * most configuration done, need to connect configuretransceiver to client * stuck at resetting transciever timed out * minor * fixed virtual, added chip busyto fifo, streaming busy, set/getnext framenumber * configuretransceiver from client, added help in client * make formatt and command generation * tests for xilinx ctb works * command generation * dacs added and tested, power not done * power added * added temp_fpga * binaries in * ctrlreg is 0 to enable chip=fixed, high dac val = min val= fixed, power regulators in weird order=fixed, device tree could be loaded with dacs before adcs=fixed * start works * virtual server sends * receiver works * tests * python function and enum generation, commands generatorn and autocomplete, formatting, tests * tests fail at start(transceiver not aligned) * tests passed * all binaries compiled * eiger binary in * added --nomodule cehck for xilinx
39 lines
1.2 KiB
C
39 lines
1.2 KiB
C
// SPDX-License-Identifier: LGPL-3.0-or-other
|
|
// Copyright (C) 2021 Contributors to the SLS Detector Package
|
|
#pragma once
|
|
|
|
#include <inttypes.h>
|
|
|
|
void LTC2620_D_SetDefines(int hardMinV, int hardMaxV, char *driverfname,
|
|
int numdacs, int numdevices, int startingDeviceIndex,
|
|
char *powerdownDriverfname);
|
|
int LTC2620_D_GetMaxNumSteps();
|
|
int LTC2620_D_GetPowerDownValue();
|
|
|
|
/**
|
|
* Convert voltage to dac units
|
|
* @param voltage value in mv
|
|
* @param dacval pointer to value converted to dac units
|
|
* @returns FAIL when voltage outside limits, OK if conversion successful
|
|
*/
|
|
int LTC2620_D_VoltageToDac(int voltage, int *dacval);
|
|
|
|
/**
|
|
* Convert dac units to voltage
|
|
* @param dacval dac units
|
|
* @param voltage pointer to value converted to mV
|
|
* @returns FAIL when voltage outside limits, OK if conversion successful
|
|
*/
|
|
int LTC2620_D_DacToVoltage(int dacval, int *voltage);
|
|
|
|
/**
|
|
* Set value
|
|
* @param dacnum dac index
|
|
* @param val value to set
|
|
* @param mV 1 for mv, else 0
|
|
* @paam dacname dac name
|
|
* @param dacval pointer to dac value
|
|
* @return OK or FAIL
|
|
*/
|
|
int LTC2620_D_SetDACValue(int dacnum, int val, int mV, char *dacname,
|
|
int *dacval); |