Skip to content

Commit 0e69e53

Browse files
committed
disable debug output
1 parent e84bb35 commit 0e69e53

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/config.h

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
/**
22
* @file config.h
33
* @brief Define library configurations
4-
*
5-
*
4+
*
5+
*
66
* @version 1.0
77
* @date 2024-08-08
8-
*
8+
*
99
* @license MIT
1010
* Permission is hereby granted, free of charge, to any person obtaining a copy
1111
* of this software and associated documentation files (the "Software"), to deal
1212
* in the Software without restriction, including without limitation the rights
1313
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1414
* copies of the Software, and to permit persons to whom the Software is
1515
* furnished to do so, subject to the following conditions:
16-
*
16+
*
1717
* The above copyright notice and this permission notice shall be included in all
1818
* copies or substantial portions of the Software.
19-
*
19+
*
2020
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2121
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2222
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2323
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2424
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2525
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2626
* SOFTWARE.
27-
*
27+
*
2828
* @author Felix Galindo
2929
* @contact felix.galindo@digi.com
3030
*/
@@ -40,19 +40,19 @@ extern "C"
4040
#include "port.h"
4141

4242
// Constants
43-
#define UART_READ_TIMEOUT_MS 3000
43+
#define UART_READ_TIMEOUT_MS 3000
4444
#define UART_WRITE_TIMEOUT_MS 10
4545

4646
#define API_FRAME_DEBUG_PRINT_ENABLED 0
4747
#if API_FRAME_DEBUG_PRINT_ENABLED
48-
#define APIFrameDebugPrint(...) portDebugPrintf(__VA_ARGS__)
48+
#define APIFrameDebugPrint(...) portDebugPrintf(__VA_ARGS__)
4949
#else
5050
#define APIFrameDebugPrint(...)
5151
#endif
5252

53-
#define XBEE_DEBUG_PRINT_ENABLED 1
53+
#define XBEE_DEBUG_PRINT_ENABLED 0
5454
#if XBEE_DEBUG_PRINT_ENABLED
55-
#define XBEEDebugPrintEnabled(...) portDebugPrintf(__VA_ARGS__)
55+
#define XBEEDebugPrintEnabled(...) portDebugPrintf(__VA_ARGS__)
5656
#else
5757
#define XBEEDebugPrintEnabled(...)
5858
#endif

0 commit comments

Comments
 (0)