Don't compile secapplayer if data secure not enabled

This commit is contained in:
nanosonde 2020-07-04 17:07:39 +02:00
parent 318a384532
commit 4a5cab3cc7

View File

@ -1,3 +1,6 @@
#include "config.h"
#ifdef USE_DATASECURE
#include "secure_application_layer.h"
#include "transport_layer.h"
#include "cemi_frame.h"
@ -1279,3 +1282,4 @@ bool SecureApplicationLayer::isSyncService(APDU& secureApdu)
return false;
}
#endif