You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
438 B
16 lines
438 B
/* |
|
* Copyright (c) 2020 Andreas Sandberg |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#ifndef ZEPHYR_SUBSYS_LORAWAN_LW_PRIV_H_ |
|
#define ZEPHYR_SUBSYS_LORAWAN_LW_PRIV_H_ |
|
|
|
const int lorawan_status2errno(unsigned int status); |
|
const char *lorawan_status2str(unsigned int status); |
|
|
|
const int lorawan_eventinfo2errno(unsigned int status); |
|
const char *lorawan_eventinfo2str(unsigned int status); |
|
|
|
#endif /* ZEPHYR_SUBSYS_LORAWAN_LW_PRIV_H_ */
|
|
|