Few fixes and remove binaries
This commit is contained in:
parent
b90473b76e
commit
692db75eef
6 changed files with 7 additions and 3 deletions
Binary file not shown.
|
@ -11,8 +11,6 @@
|
||||||
|
|
||||||
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;
|
||||||
|
|
BIN
src/librpitx.a
BIN
src/librpitx.a
Binary file not shown.
|
@ -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)
|
||||||
|
|
|
@ -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
BIN
src/util.o
Normal file
Binary file not shown.
Loading…
Reference in a new issue