X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=carlfw%2Finclude%2Fpattern_generator.h;fp=carlfw%2Finclude%2Fpattern_generator.h;h=98e9c90b1c99e060832bcf5f61f2984f6b396a97;hb=1a0ab91a746487301a30ecef2b2f95d40527f3da;hp=0000000000000000000000000000000000000000;hpb=195268cae3bb2f462d82dc0178dbca07f0cff706;p=carl9170fw.git diff --git a/carlfw/include/pattern_generator.h b/carlfw/include/pattern_generator.h new file mode 100644 index 0000000..98e9c90 --- /dev/null +++ b/carlfw/include/pattern_generator.h @@ -0,0 +1,42 @@ +/* + * carl9170 firmware - used by the ar9170 wireless device + * + * Pattern Generator definitions + * + * Copyright 2012, 2013 Christian Lamparter + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef __CARL9170FW_PATTERN_GENERATOR_H +#define __CARL9170FW_PATTERN_GENERATOR_H + +#include "generated/autoconf.h" +#include "types.h" +#include "compiler.h" +#include "fwdesc.h" +#include "pattern.h" + +#if defined(CONFIG_CARL9170FW_PATTERN_GENERATOR) +void pattern_generator(void); + +#else +static inline void pattern_generator(void) +{ +} + +#endif /* CONFIG_CARL9170FW_PATTERN_GENERATOR */ + +#endif /* __CARL9170FW_PATTERN_GENERATOR_H */