mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-26 08:10:02 +02:00

* dac WIP * dacs WIP * DACs are working with names * namechanges of vrfsh->vshaper, vrfshnpol->vshaperneg * pattern for MY3, configure MAC for MY3
21 lines
302 B
C
Executable File
21 lines
302 B
C
Executable File
#pragma once
|
|
|
|
#include <inttypes.h>
|
|
|
|
/**
|
|
* Set Defines
|
|
* @param hardMaxV maximum hardware limit
|
|
* @param driverfname driver file name
|
|
*/
|
|
void DAC6571_SetDefines(int hardMaxV, char* driverfname);
|
|
|
|
/**
|
|
* Set value
|
|
* @param val value to set
|
|
* @return OK or FAIL
|
|
*/
|
|
int DAC6571_Set (int val) ;
|
|
|
|
|
|
|