* gotthard config file path using readlink

* gotthard2

* eiger

* eieger, mnythen3, moench

* binaries in

* moved readlink to a common function

* binaries in
This commit is contained in:
Dhanya Thattil
2020-07-23 12:17:46 +02:00
committed by GitHub
parent beb6afe101
commit ad297e9c51
15 changed files with 73 additions and 15 deletions

View File

@@ -1,5 +1,8 @@
#pragma once
#include <stdio.h>
/**
* Convert a value from a range to a different range (eg voltage to dac or vice
* versa)
@@ -13,3 +16,7 @@
*/
int ConvertToDifferentRange(int inputMin, int inputMax, int outputMin,
int outputMax, int inputValue, int *outputValue);
int getAbsPath(char* buf, size_t bufSize, char* fname);