]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Bootloader/debug.h
83e9bac9db10815d44add7d52de12739f85b590f
[kiibohd-controller.git] / Bootloader / debug.h
1 /* Copyright (C) 2015 by Jacob Alexander
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a copy
4  * of this software and associated documentation files (the "Software"), to deal
5  * in the Software without restriction, including without limitation the rights
6  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7  * copies of the Software, and to permit persons to whom the Software is
8  * furnished to do so, subject to the following conditions:
9  *
10  * The above copyright notice and this permission notice shall be included in
11  * all copies or substantial portions of the Software.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19  * THE SOFTWARE.
20  */
21
22 #pragma once
23
24 // ----- Includes -----
25
26 // Compiler Includes
27
28 // Project Includes
29
30
31 // ----- Defines -----
32
33 #define NL "\r\n"
34 //#define FLASH_DEBUG // XXX: Use when there are USB flashing issues
35
36
37
38 // ----- Macros -----
39
40 #define print(str)   Output_putstr(str)
41 #define printNL(str) Output_putstr(str NL)
42
43
44
45 // ----- Functions -----
46
47 #if defined(_mk20dx256vlh7_)
48 int Output_putstr( char* str );
49
50 int uart_serial_write( const void *buffer, uint32_t size );
51
52 void uart_serial_setup();
53
54 // Convenience
55 #define printHex(hex) printHex_op(hex, 1)
56 void printHex_op( uint32_t in, uint8_t op );
57
58 #else
59 #define Output_putstr(str)
60 #define uart_serial_write(buf,size)
61 #define uart_serial_setup()
62 #define printHex(hex)
63 #define printHex_op(in,op)
64 #endif
65