fix build error on kali in new noralsy

This commit is contained in:
marshmellow42 2017-03-28 18:15:43 -04:00
commit 199c74a47f

View file

@ -118,7 +118,7 @@ int CmdNoralsyDemod(const char *Cmd) {
bool st = DetectST_ext(DemodBuffer, &DemodBufferLen, &foundclk, &ststart, &stend);
if (!st) return 0;
if (!ASKDemod_ext("32 0 0", FALSE, FALSE, 1, &st)) {
if (!ASKDemod_ext("32 0 0", false, false, 1, &st)) {
if (g_debugMode) PrintAndLog("DEBUG: Error - Noralsy: ASK/Manchester Demod failed");
return 0;
}
@ -176,7 +176,7 @@ int CmdNoralsyDemod(const char *Cmd) {
int CmdNoralsyRead(const char *Cmd) {
CmdLFRead("s");
getSamples("8000",TRUE);
getSamples("8000",true);
return CmdNoralsyDemod(Cmd);
}