/* * Copyright (C) 2017 Kaspar Schleiser * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup tests * @{ * * @file * @brief Scheduler benchmark test application * * @author Kaspar Schleiser * * @} */ #include #include "macros/units.h" #include "clk.h" #include "thread.h" #include "xtimer.h" #ifndef TEST_DURATION #define TEST_DURATION (1000000U) #endif volatile unsigned _flag = 0; static void _timer_callback(void*arg) { (void)arg; _flag = 1; } int main(void) { printf("main starting\n"); xtimer_t timer; timer.callback = _timer_callback; uint32_t n = 0; xtimer_set(&timer, TEST_DURATION); while(!_flag) { thread_yield(); n++; } printf("{ \"result\" : %"PRIu32, n); printf(", \"ticks\" : %"PRIu32, (uint32_t)((TEST_DURATION/US_PER_MS) * (coreclk()/KHZ(1)))/n); puts(" }"); return 0; }