From 49f49288a6af5e2b5a9b6f44a43157633d2bdc61 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sat, 15 Aug 2020 11:00:27 +0200 Subject: [PATCH] no inline --- armsrc/appmain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armsrc/appmain.c b/armsrc/appmain.c index 179cb063f..0b8bc8097 100644 --- a/armsrc/appmain.c +++ b/armsrc/appmain.c @@ -68,7 +68,7 @@ struct common_area common_area __attribute__((section(".commonarea"))); static int button_status = BUTTON_NO_CLICK; static bool allow_send_wtx = false; -inline void send_wtx(uint16_t wtx) { +void send_wtx(uint16_t wtx) { if (allow_send_wtx) { reply_ng(CMD_WTX, PM3_SUCCESS, (uint8_t *)&wtx, sizeof(wtx)); }