diff Output/pjrcUSB/output_com.h @ 123:0c5d1fe99302

Adding CLI and CDC Serial support for Teensy 2.0 and Teensy 2.0++ - Includes serial putchar and getchar cleanup (overall) - Moved avr-capsense to DPH (renaming) - Basic cleanup for including CLI on the avr architecture
author Jacob Alexander <haata@kiibohd.com>
date Mon, 31 Mar 2014 01:07:48 -0700
parents 2bb16439e6ca
children 8dab4014c398
line wrap: on
line diff
--- a/Output/pjrcUSB/output_com.h	Sat Mar 22 14:32:06 2014 -0700
+++ b/Output/pjrcUSB/output_com.h	Mon Mar 31 01:07:48 2014 -0700
@@ -59,10 +59,17 @@
 // ----- Functions -----
 
 void output_setup();
-
 void output_send();
 
 void output_firmwareReload();
+void output_softReset();
+
+// Relies on USB serial module
+unsigned int output_availablechar();
+
+int output_getchar();
+int output_putchar( char c );
+int output_putstr( char* str );
 
 #endif