]> git.friedersdorff.com Git - max/tmk_keyboard.git/commitdiff
Chibios: cleanup usb_main code.
authorflabbergast <s3+flabbergast@sdfeu.org>
Thu, 11 Feb 2016 21:14:28 +0000 (21:14 +0000)
committerflabbergast <s3+flabbergast@sdfeu.org>
Thu, 11 Feb 2016 21:14:28 +0000 (21:14 +0000)
tmk_core/protocol/chibios/usb_main.c
tmk_core/protocol/chibios/usb_main.h

index d248b447deb1396e18c053dca2615fa0074e8318..e2c9d9bf1415ad0fe9d946fb1d5116744938aa2f 100644 (file)
@@ -33,9 +33,9 @@
  * ---------------------------------------------------------
  */
 
-uint8_t keyboard_idle = 0;
-uint8_t keyboard_protocol = 1;
-uint16_t keyboard_led_stats = 0;
+uint8_t keyboard_idle __attribute__((aligned(2))) = 0;
+uint8_t keyboard_protocol __attribute__((aligned(2))) = 1;
+uint16_t keyboard_led_stats __attribute__((aligned(2))) = 0;
 volatile uint16_t keyboard_idle_count = 0;
 static virtual_timer_t keyboard_idle_timer;
 static void keyboard_idle_timer_cb(void *arg);
@@ -1350,7 +1350,7 @@ int8_t sendchar(uint8_t c) {
     return 0;
   }
   osalSysUnlock();
-  /* Timeout after 5us if the queue is full.
+  /* Timeout after 100us if the queue is full.
    * Increase this timeout if too much stuff is getting
    * dropped (i.e. the buffer is getting full too fast
    * for USB/HIDRAW to dequeue). Another possibility
index d8f30e9550e3c56cc9d090b19076fc4e8244426e..30d8fcaef72a7786f0b23a0af6d0236759d130ba 100644 (file)
@@ -58,9 +58,6 @@ void send_remote_wakeup(USBDriver *usbp);
 #define NKRO_REPORT_KEYS  (NKRO_EPSIZE - 1)
 #endif
 
-/* this defines report_keyboard_t and computes REPORT_SIZE defines */
-// #include "report.h"
-
 /* extern report_keyboard_t keyboard_report_sent; */
 
 /* keyboard IN request callback handler */
@@ -122,8 +119,7 @@ typedef struct {
 #define CONSOLE_EPSIZE         16
 
 /* Number of IN reports that can be stored inside the output queue */
-#define CONSOLE_QUEUE_CAPACITY 2
-#define CONSOLE_QUEUE_BUFFER_SIZE (CONSOLE_QUEUE_CAPACITY * CONSOLE_EPSIZE)
+#define CONSOLE_QUEUE_CAPACITY 4
 
 /* Console flush time */
 #define CONSOLE_FLUSH_MS 50