X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=boards%2Fek-lm3s1968%2Fbenchmarck%2Fcontext_switch%2Fmain.c;fp=boards%2Fek-lm3s1968%2Fbenchmarck%2Fcontext_switch%2Fmain.c;h=0000000000000000000000000000000000000000;hb=5c610c526235fef906506165ef069d88fd0ca210;hp=30206a69d3eb47f9fd389258d8330d67e58452a5;hpb=b3275d403a59f8c2b042abcb7a6b168e50105061;p=bertos.git diff --git a/boards/ek-lm3s1968/benchmarck/context_switch/main.c b/boards/ek-lm3s1968/benchmarck/context_switch/main.c deleted file mode 100644 index 30206a69..00000000 --- a/boards/ek-lm3s1968/benchmarck/context_switch/main.c +++ /dev/null @@ -1,55 +0,0 @@ -/** - * \file - * - * - * \author Daniele Basile - * - * \brief Kernel switch context benchmark. - * - * This benchmark show you the switch context time. This measure is make - * by hp timer that measure accurately the kernel switch context time, and print - * it on serial debug. If you want not use the hp timer you can measure this - * time using one oscilloscope, connected to one board led. To use this - * mode you should disable hp timer and implement hw_led.h low level module. - */ - -#include - -int main(void) -{ - context_switch(); - while (1) - { - } - - return 0; -} -