X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=boards%2Fek-lpc-p2378%2Fbenchmark%2Fkernel_footprint%2Fmain.c;fp=boards%2Fek-lpc-p2378%2Fbenchmark%2Fkernel_footprint%2Fmain.c;h=0000000000000000000000000000000000000000;hb=c15b00a9a85e2aa3fdc681e63d7e92851035b63a;hp=9c11e0287102b66dc4ab50dddb4c681c2b9cdb0b;hpb=fd8bd1af65d3eaea3040d74df3d76b51577a67a6;p=bertos.git diff --git a/boards/ek-lpc-p2378/benchmark/kernel_footprint/main.c b/boards/ek-lpc-p2378/benchmark/kernel_footprint/main.c deleted file mode 100644 index 9c11e028..00000000 --- a/boards/ek-lpc-p2378/benchmark/kernel_footprint/main.c +++ /dev/null @@ -1,54 +0,0 @@ -/** - * \file - * - * - * \author Daniele Basile - * - * \brief Kernel footprint benchmark. - * - * This benchmark show you how much flash space could use the BeRTOS kernel application. - * Try to compile it and verify how few space the kernel needs to run. - * By default this benchmark have all kernel switch enabled, and the context switch is preemptive - * mode, try to modify the kernel setting throught the cfg file. - */ - -#include - -int main(void) -{ - kernel_footprint(); - while (1) - { - } - - return 0; -} -