X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=boards%2Fat91sam7x-ek%2Fbenchmark%2Fkernel_footprint%2Fmain.c;fp=boards%2Fat91sam7x-ek%2Fbenchmark%2Fkernel_footprint%2Fmain.c;h=0000000000000000000000000000000000000000;hb=45a5ed5a6f4ccb4cf34e54b92eccb486436bc469;hp=a3f11e50502a16a0f91b6012420917514a619e0f;hpb=fbc4cfcfaf7efe9e326807a90b892e5c2836feef;p=bertos.git diff --git a/boards/at91sam7x-ek/benchmark/kernel_footprint/main.c b/boards/at91sam7x-ek/benchmark/kernel_footprint/main.c deleted file mode 100644 index a3f11e50..00000000 --- a/boards/at91sam7x-ek/benchmark/kernel_footprint/main.c +++ /dev/null @@ -1,57 +0,0 @@ -/** - * \file - * - * - * \author Daniele Basile - * - * \brief Kernel footprint benchmark. - * - * This benchmark measures the memory footprint[1] of the BeRTOS kernel with a - * simple minimalist user application. - * - * The purpose of this test is to give a measure of the required space in a - * generic flash memory to store a full-featured BeRTOS kernel. - * - * [1] http://en.wikipedia.org/wiki/Memory_footprint - */ - -#include - -int main(void) -{ - kernel_footprint(); - while (1) - { - } - - return 0; -} -