-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathcommon_macros.h
74 lines (67 loc) · 2.38 KB
/
common_macros.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/****************************************************************************
**
** Copyright (C) ${COPYRIGHT_YEAR} MikroElektronika d.o.o.
** Contact: https://www.mikroe.com/contact
**
** This file is part of the mikroSDK package
**
** Commercial License Usage
**
** Licensees holding valid commercial NECTO compilers AI licenses may use this
** file in accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The MikroElektronika Company.
** For licensing terms and conditions see
** https://www.mikroe.com/legal/software-license-agreement.
** For further information use the contact form at
** https://www.mikroe.com/contact.
**
**
** GNU Lesser General Public License Usage
**
** Alternatively, this file may be used for
** non-commercial projects under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation: https://www.gnu.org/licenses/lgpl-3.0.html.
**
** The above copyright notice and this permission notice shall be
** included in all copies or substantial portions of the Software.
**
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
** OF MERCHANTABILITY, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
** TO THE WARRANTIES FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
** OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
** OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
**
****************************************************************************/
/*!
* @file common_macros.h
* @brief Macros (common per architecture type).
*/
#ifndef _COMMON_MACROS_H_
#define _COMMON_MACROS_H_
#ifdef __cplusplus
extern "C"{
#endif
#include "flatten_me.h"
#ifdef __MIKROC_AI__
#define __weak __attribute__((weak))
#else
#define __weak
#endif
// One Wire
#ifdef MACRO_USAGE_ONE_WIRE
#define ONE_WIRE_CMD_ROM_READ (0x33)
#define ONE_WIRE_CMD_ROM_SKIP (0xCC)
#define ONE_WIRE_CMD_ROM_MATCH (0x55)
#define ONE_WIRE_CMD_ROM_SEARCH (0xF0)
#define ONE_WIRE_CMD_ROM_READ_LEGACY (0x0F)
#endif
// EOF One Wire
#ifdef __cplusplus
}
#endif
#endif // _COMMON_MACROS_H_
// ------------------------------------------------------------------------- END