Thanks for the help, but I finally got my mistake.
As I tried to call a function written in an .cpp-file in the ReportDefault.c
which is a .c-file, the linker wouldn't accept the reference.
I got around this problem by inserting a
#ifdef __cplusplus
extern "C" {
#endif
extern int Wlan_Logger(u
Hey,
to conveniently analyse the data gathered by Iperf I tried to modify
the "ReportDefault.c" of the Iperf 2.0.4 version by including the
self-written function "int WlanLogger(unsigned int)" which logs the rate with
which the data was send. To do so I included the respective Wlan_Logger.cpp