blob: 1ce76341df1fe07024f2c67aa54d9a58674b0fc0 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#include "os_test_priv.h"
/* Test case to test case for speak and listen */
TEST_CASE(callout_test_speak)
{
/* Initialize the sending task */
os_task_init(&callout_task_struct_speak, "callout_task_speak",
callout_task_stop_speak, NULL, SPEAK_CALLOUT_TASK_PRIO,
OS_WAIT_FOREVER, callout_task_stack_speak, CALLOUT_STACK_SIZE);
/* Initialize the receive task */
os_task_init(&callout_task_struct_listen, "callout_task_listen",
callout_task_stop_listen, NULL, LISTEN_CALLOUT_TASK_PRIO,
OS_WAIT_FOREVER, callout_task_stack_listen, CALLOUT_STACK_SIZE);
os_eventq_init(&callout_evq);
/* Initialize the callout function */
os_callout_init(&callout_speak, &callout_evq,
my_callout_speak_func, NULL);
}