From c9b3910f790a1e53b4b887b409d7538f433b5e3d Mon Sep 17 00:00:00 2001 From: Alon Ziv Date: Mon, 3 Apr 2017 08:29:13 +0300 Subject: [PATCH] Fix EID frame size to adhere to the specification --- implementations/mbed/source/EIDFrame.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/implementations/mbed/source/EIDFrame.h b/implementations/mbed/source/EIDFrame.h index b936b06..b6a5731 100644 --- a/implementations/mbed/source/EIDFrame.h +++ b/implementations/mbed/source/EIDFrame.h @@ -198,7 +198,7 @@ class EIDFrame * This is the some of the Eddystone UUID(2 bytes), FrameType, AdvTxPower, * EID Value */ - static const uint8_t EID_FRAME_LEN = 18; + static const uint8_t EID_FRAME_LEN = 10; static const uint8_t FRAME_LEN_OFFSET = 0; static const uint8_t EDDYSTONE_UUID_LEN = 2; static const uint8_t EID_DATA_OFFSET = 3;