set_output_voltage function implemented. output to stdout.

This commit is contained in:
Jan Bader
2021-04-14 10:19:08 +02:00
parent 08cb46a2e8
commit feab9236d1
6 changed files with 86 additions and 9 deletions

View File

@@ -2,8 +2,13 @@
#ifndef MAX_FUNCTIONS_H
#define MAX_FUNCTIONS_H
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <stdbool.h>
#include "eseries.h"
extern void set_output_voltage(double voltage, ESeries E_resistors);
extern int set_output_voltage(double voltage, ESeries E_resistors);
#endif /*MAX_FUNCTIONS_H*/