diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-12-11 15:22:55 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-12-11 15:22:55 +0100 |
commit | 66e49ea68509fd0c7c9cc218068bb288d1d29582 (patch) | |
tree | d1ff361e63c0cfbb8f506eb1a7bf92a7e1cd49de /src/fsm/debug.h | |
parent | 319c3ccb682e4d3d44e179a6dfcf43c00c5a2817 (diff) | |
download | glutte-o-matic-66e49ea68509fd0c7c9cc218068bb288d1d29582.tar.gz glutte-o-matic-66e49ea68509fd0c7c9cc218068bb288d1d29582.tar.bz2 glutte-o-matic-66e49ea68509fd0c7c9cc218068bb288d1d29582.zip |
Move cw-example/ into fsm/
Diffstat (limited to 'src/fsm/debug.h')
-rw-r--r-- | src/fsm/debug.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/fsm/debug.h b/src/fsm/debug.h new file mode 100644 index 0000000..6215e5f --- /dev/null +++ b/src/fsm/debug.h @@ -0,0 +1,47 @@ +/* + * The MIT License (MIT) + * + * Copyright (c) 2015 Matthias P. Braendli + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * 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, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * 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. +*/ + +/* Debugging utilities using the ARM semihosting facilities. Warning, it's quite + * slow. + * + * when used with OpenOCD's gdb server, requires the gdb command + * + * monitor arm semihosting enable + */ +#ifndef __DEBUG_H_ +#define __DEBUG_H_ + +/* Example usage for the send_command function +const char *s = "Hello world\n"; +uint32_t m[] = { 2, (uint32_t)s, sizeof(s)/sizeof(char) }; +send_command(0x05, m); +// some interrupt ID + +*/ + +/* Print a string to the OpenOCD console */ +void debug_print(const char* str); + +#endif // __DEBUG_H_ + |