1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-23 00:05:17 +03:00

[Horus] Compilation fix

This commit is contained in:
Bertrand Songis 2015-11-11 10:12:09 +01:00
parent c4d7feaa9b
commit 86f1363d0a

View file

@ -320,13 +320,14 @@ int cliDisplay(const char ** argv)
int cliDebugVars(const char ** argv)
{
#if defined(PCBHORUS)
extern unsigned int ioMutexReq, ioMutexRel;
extern unsigned int sdReadRetries;
serialPrint("ioMutexReq=%d", ioMutexReq);
serialPrint("ioMutexRel=%d", ioMutexRel);
serialPrint("sdReadRetries=%d", sdReadRetries);
#endif
return 0;
}