Few fixes and remove binaries

This commit is contained in:
f5oeo 2020-11-02 13:10:21 +00:00
parent b90473b76e
commit 692db75eef
6 changed files with 7 additions and 3 deletions

Binary file not shown.

View file

@ -11,9 +11,7 @@
class iqdmasync:public bufferdma,public clkgpio,public pwmgpio,public pcmgpio class iqdmasync:public bufferdma,public clkgpio,public pwmgpio,public pcmgpio
{ {
public:
int ModeIQ=MODE_IQ; //patch (LU7DID-PEC): place ModeIQ as public so it can be changed from a calling program 3-May-2020
protected: protected:
uint64_t tunefreq; uint64_t tunefreq;
bool syncwithpwm; bool syncwithpwm;

Binary file not shown.

View file

@ -7,6 +7,11 @@ void dbg_setlevel(int Level)
debug_level=Level; debug_level=Level;
} }
int dbg_getlevel()
{
return debug_level;
}
void dbg_printf(int Level, const char *fmt, ...) void dbg_printf(int Level, const char *fmt, ...)
{ {
if (Level <= debug_level) if (Level <= debug_level)

View file

@ -5,6 +5,7 @@
#include <stdarg.h> #include <stdarg.h>
void dbg_setlevel(int Level); void dbg_setlevel(int Level);
int dbg_getlevel();
void dbg_printf(int Level, const char *fmt, ...); void dbg_printf(int Level, const char *fmt, ...);
#endif #endif

BIN
src/util.o Normal file

Binary file not shown.