mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
CHG: the thread comms refactoring from offical pm3 repo
chg: FPC com speed limited to 115200 when compiled with FPC chg: USART remake (@drandreas)
This commit is contained in:
parent
eb0b5116a2
commit
24eaac8681
45 changed files with 915 additions and 949 deletions
11
client/ui.c
11
client/ui.c
|
@ -13,8 +13,7 @@
|
|||
|
||||
double CursorScaleFactor = 1;
|
||||
int PlotGridX=0, PlotGridY=0, PlotGridXdefault= 64, PlotGridYdefault= 64, CursorCPos= 0, CursorDPos= 0;
|
||||
int offline;
|
||||
int g_flushAfterWrite = 0; //buzzy
|
||||
bool flushAfterWrite = 0;
|
||||
int GridOffset = 0;
|
||||
bool GridLocked = false;
|
||||
bool showDemod = true;
|
||||
|
@ -178,7 +177,7 @@ void PrintAndLog(char *fmt, ...) {
|
|||
}
|
||||
va_end(argptr2);
|
||||
|
||||
if (g_flushAfterWrite == 1)
|
||||
if (flushAfterWrite)
|
||||
fflush(NULL);
|
||||
|
||||
//release lock
|
||||
|
@ -189,7 +188,11 @@ void SetLogFilename(char *fn) {
|
|||
logfilename = fn;
|
||||
}
|
||||
|
||||
void iceIIR_Butterworth(int *data, const size_t len){
|
||||
void SetFlushAfterWrite(bool value) {
|
||||
flushAfterWrite = value;
|
||||
}
|
||||
|
||||
void iceIIR_Butterworth(int *data, const size_t len){
|
||||
|
||||
int i,j;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue