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,9 +11,7 @@
|
|||
|
||||
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:
|
||||
uint64_t tunefreq;
|
||||
bool syncwithpwm;
|
||||
|
|
BIN
src/librpitx.a
BIN
src/librpitx.a
Binary file not shown.
|
@ -7,6 +7,11 @@ void dbg_setlevel(int Level)
|
|||
debug_level=Level;
|
||||
}
|
||||
|
||||
int dbg_getlevel()
|
||||
{
|
||||
return debug_level;
|
||||
}
|
||||
|
||||
void dbg_printf(int Level, const char *fmt, ...)
|
||||
{
|
||||
if (Level <= debug_level)
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
#include <stdarg.h>
|
||||
|
||||
void dbg_setlevel(int Level);
|
||||
int dbg_getlevel();
|
||||
void dbg_printf(int Level, const char *fmt, ...);
|
||||
|
||||
#endif
|
BIN
src/util.o
Normal file
BIN
src/util.o
Normal file
Binary file not shown.
Loading…
Reference in a new issue