1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 23:11:19 +01:00

tests/pkg_lora-serialization: fix test 02 on AVR

This commit is contained in:
Alexandre Abadie 2019-11-11 17:31:22 +01:00
parent d6f11a4c3c
commit 7e7c49a109
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -30,10 +30,16 @@
0x1d, 0x4b, 0x7a, 0x57 }
#else
#define TEST_01_EXPECTED { 0x1f, 0x4c, 0x0f, 0x27 }
#if defined(__AVR__)
#define TEST_02_EXPECTED { 0x64, 0xa6, 0xfa, 0xfd, \
0x60, 0x24, 0x04, 0x09, \
0x1d, 0x4b, 0x7a, 0x57 }
#else
#define TEST_02_EXPECTED { 0x64, 0xa6, 0xfa, 0xfd, \
0x6a, 0x24, 0x04, 0x09, \
0x1d, 0x4b, 0x7a, 0x57 }
#endif
#endif
uint8_t test01Expected[] = TEST_01_EXPECTED;
uint8_t test02Expected[] = TEST_02_EXPECTED;