Parcourir la source

Increase buffer size of PS2 protocol

tags/v1.9
tmk il y a 11 ans
Parent
révision
7343366d3d
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 1
    1
      protocol/ps2.c
  2. 1
    1
      protocol/ps2_usart.c

+ 1
- 1
protocol/ps2.c Voir le fichier

@@ -181,7 +181,7 @@ uint8_t ps2_host_recv(void)
}
#else
/* ring buffer to store ps/2 key data */
#define PBUF_SIZE 8
#define PBUF_SIZE 32
static uint8_t pbuf[PBUF_SIZE];
static uint8_t pbuf_head = 0;
static uint8_t pbuf_tail = 0;

+ 1
- 1
protocol/ps2_usart.c Voir le fichier

@@ -287,7 +287,7 @@ static inline void inhibit(void)
/*--------------------------------------------------------------------
* Ring buffer to store scan codes from keyboard
*------------------------------------------------------------------*/
#define PBUF_SIZE 8
#define PBUF_SIZE 32
static uint8_t pbuf[PBUF_SIZE];
static uint8_t pbuf_head = 0;
static uint8_t pbuf_tail = 0;

Chargement…
Annuler
Enregistrer