Digi XBee(R) ANSI C Host Library
platform_config.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 Digi International Inc.,
3  * All rights not expressly granted are reserved.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
7  * You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * Digi International Inc., 9350 Excelsior Blvd., Suite 700, Hopkins, MN 55343
10  * ===========================================================================
11  */
12 
13 // digiapix platforms use a slightly modified version of the POSIX platform
14 #include "../posix/platform_config.h"
15 
22 int digiapix_platform_init(void);
23 #define XBEE_PLATFORM_INIT() digiapix_platform_init()
24 
25 struct xbee_dev_t;
26 void digiapix_xbee_reset(struct xbee_dev_t *xbee, bool_t asserted);
27 int digiapix_xbee_is_awake(struct xbee_dev_t *xbee);
28 
29 #define XBEE_RESET_FN &digiapix_xbee_reset
30 #define XBEE_IS_AWAKE_FN &digiapix_xbee_is_awake
31 
int digiapix_xbee_is_awake(struct xbee_dev_t *xbee)
Definition: xbee_platform_digiapix.c:117
Definition: device.h:361
void digiapix_xbee_reset(struct xbee_dev_t *xbee, bool_t asserted)
Definition: xbee_platform_digiapix.c:105
int bool_t
Variable that can hold 0 or 1, may be an int for speed purporses or uint8_t for size optimization...
Definition: platform_config.h:51