summaryrefslogtreecommitdiffstats
path: root/Support_Libs/debug/debug.hch
diff options
context:
space:
mode:
Diffstat (limited to 'Support_Libs/debug/debug.hch')
-rw-r--r--Support_Libs/debug/debug.hch18
1 files changed, 9 insertions, 9 deletions
diff --git a/Support_Libs/debug/debug.hch b/Support_Libs/debug/debug.hch
index abd8bea..c2656f2 100644
--- a/Support_Libs/debug/debug.hch
+++ b/Support_Libs/debug/debug.hch
@@ -9,25 +9,25 @@
* This function will print the integer through the RS232 interface in a
* 32-bit hexadecimal representation.
* Pre: Value must be smaller or equal to 32-bits.
- * RS232 must be available.
- * Post: A hex representation of value is printed.
+ * Post: A hex representation of value is printed.
*
****************************************************************************/
void print_hex_value(unsigned value);
/****************************************************************************
*
- * print_string (unsigned 8 value[16])
+ * print_string (unsigned char *s)
*
* Arguments: (typical)
- * value: An array of characters.
+ * s: Pointer to an array containg a string top print.
*
* Description: (typical)
* This function will print a string through the RS232 interface.
- * Pre: Value must not be 16 characters in length. If less char's
- * are used, termination with \0 is recommended.
- * RS232 must be available.
- * Post: The string is printed as is.
+ * Pre: The array must be /0 terminated.
+ * Post: The string is printed as is.
*
****************************************************************************/
-void print_string(unsigned 8 s[16]);
+void print_string(unsigned char *s);
+
+
+void print_eol(void); \ No newline at end of file