Loading...
Searching...
No Matches
nm_bsp_internal.h
1/*
2 * Copyright (C) 2020 Gunar Schorcht
3 *
4 * This file is subject to the terms and conditions of the GNU Lesser
5 * General Public License v2.1. See the file LICENSE in the top level
6 * directory for more details.
7 */
8
9#pragma once
10
11#if !DOXYGEN
12
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27#ifdef MODULE_ATMEGA_COMMON
28#define ARDUINO
29#endif
30
31#define CONF_WINC_USE_SPI (1)
32#define CONF_WINC_PRINTF printf
33
34#ifndef CONF_WINC_DEBUG
35#define CONF_WINC_DEBUG (0)
36#endif
37
38#ifndef M2M_LOG_LEVEL
39#define M2M_LOG_LEVEL M2M_LOG_ERROR
40#endif
41
42#define NM_EDGE_INTERRUPT (1)
43
44#ifdef __cplusplus
45}
46#endif
47
48#endif /* DOXYGEN */