19 lines
381 B
C
19 lines
381 B
C
/*
|
|
* file_print.h
|
|
*
|
|
* Created on: 13. maj 2025
|
|
* Author: Christian L. V. Madsen (OZ1CM)
|
|
*/
|
|
|
|
#ifndef FILE_PRINT_H_
|
|
#define FILE_PRINT_H_
|
|
|
|
|
|
|
|
void cm_file_open(char *fileName, float vtarget);
|
|
void cm_file_close();
|
|
void cm_file_print(float duty,float Rload, float Vout, float time);
|
|
void showProcentInCmd(float time, float simulate_target_time);
|
|
|
|
#endif /* FILE_PRINT_H_ */
|