mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-08-05 08:32:26 +02:00
10 lines
284 B
C
10 lines
284 B
C
// SPDX-License-Identifier: LGPL-3.0-or-other
|
|
// Copyright (C) 2021 Contributors to the SLS Detector Package
|
|
#pragma once
|
|
|
|
#include <inttypes.h>
|
|
|
|
void DAC6571_SetDefines(int hardMaxV, char *driverfname);
|
|
int DAC6571_Set(int val, char *mess);
|
|
int DAC6571_Get(int *retval, char *mess);
|