/* * Copyright (c) 2015-2016 Intel Corporation. * * SPDX-License-Identifier: Apache-2.0 */ #ifndef __TEST_MSGQ_H__ #define __TEST_MSGQ_H__ #include #include #include #define TIMEOUT 100 #define STACK_SIZE 512 #define MSG_SIZE 4 #define MSGQ_LEN 2 #define MSG0 0xABCD #define MSG1 0x1234 #endif /* __TEST_MSGQ_H__ */