FIX: travisCI complains. dummy -> dummy_sgc.

This commit is contained in:
iceman1001 2017-03-03 12:24:02 +01:00
parent 9833360b25
commit 88e7a6bfa7
2 changed files with 4 additions and 4 deletions

View file

@ -22,10 +22,10 @@ void dummy_sgc (int clock, int startidx) {}
#else
uint8_t g_debugMode=0;
# define prnt dummy
# define sgc dummy
# define sgc dummy_sgc
#endif
void SetGraphClock( int clock, int startidx){
void SetGraphClock(int clock, int startidx){
PlotClock = clock;
PlockClockStartIndex = startidx;
}

View file

@ -17,9 +17,9 @@
#include <stdbool.h> // for bool
#include <string.h> // for strcmp
#include <stdlib.h> // for
#include "ui.h" // plotclock, plotclockstartindex
//generic
void SetGraphClock( int clock, int startidx);
void SetGraphClock(int clock, int startidx);
uint8_t justNoise(uint8_t *bits, size_t size);
size_t addParity(uint8_t *BitSource, uint8_t *dest, uint8_t sourceLen, uint8_t pLen, uint8_t pType);
int askdemod(uint8_t *BinStream, size_t *size, int *clk, int *invert, int maxErr, uint8_t amp, uint8_t askType);