blob: df968b5a14c4a373e023bd8bd977b131c0a29197 [file] [log] [blame]
/* sema_r.c */
/*
* Copyright (c) 1997-2010, 2013-2014 Wind River Systems, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "receiver.h"
#include "master.h"
/* semaphore signal speed test */
/**
* @brief Receive task (Wait task)
*/
void waittask(void)
{
int i;
for (i = 0; i < NR_OF_SEMA_RUNS; i++) {
k_sem_take(&SEM1, K_FOREVER);
}
for (i = 0; i < NR_OF_SEMA_RUNS; i++) {
k_sem_take(&SEM1, K_MSEC(SEMA_WAIT_TIME));
}
}