X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=examples%2Fbenchmark%2Fkernel-core_avr%2Fhw%2Fhw_tas5706a.h;fp=examples%2Fbenchmark%2Fkernel-core_avr%2Fhw%2Fhw_tas5706a.h;h=0000000000000000000000000000000000000000;hb=93b185b8caa91d9b3f002a62d45d3d69aa7de610;hp=d1e1a2e6a70517ddfcd5fb00defc7c66b011ea40;hpb=1649c7086c522816b0b5337dabd7aacbc017bf0b;p=bertos.git diff --git a/examples/benchmark/kernel-core_avr/hw/hw_tas5706a.h b/examples/benchmark/kernel-core_avr/hw/hw_tas5706a.h deleted file mode 100644 index d1e1a2e6..00000000 --- a/examples/benchmark/kernel-core_avr/hw/hw_tas5706a.h +++ /dev/null @@ -1,65 +0,0 @@ -/** - * \file - * - * - * \brief HW pin handling. - * - * \version $Id$ - * - * \author Francesco Sacchi - */ - -#ifndef HW_TAS5706A_H -#define HW_TAS5706A_H - -#include - -#warning FIXME: This is an example implementation, you must implement it - -#define TAS5706A_SETPOWERDOWN(val) do { (void) val; /* implement me */ } while (0) -#define TAS5706A_SETRESET(val) do { (void) val; /* implement me */ } while (0) -#define TAS5706A_SETMUTE(val) do { (void) val; /* implement me */ } while (0) - -#define TAS5706A_PIN_INIT() \ - do { \ - TAS5706A_SETPOWERDOWN(true); \ - TAS5706A_SETRESET(true); \ - TAS5706A_SETMUTE(true); \ - /* complete me */ \ - } while (0) - -#define TAS5706A_MCLK_INIT() \ - do { \ - /* implement me */ \ - } while(0) - - -#endif /* HW_TAS5706A_H */