Skip to content

Commit 9cb24f9

Browse files
committed
Amstrad ratelimit, memory increase
1 parent 3e31d60 commit 9cb24f9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

firmware/andyalloc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include "defs.h"
55

6-
#define MEMPOOLMAXSIZE 3200
6+
#define MEMPOOLMAXSIZE 3500
77
void __xdata *andyalloc(size_t size);
88
void andyclearmem(void);
99

firmware/menu.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ void Sendbuffer_Task()
113113

114114
if (
115115
(oldSendBufferState != sendBufferState) &&
116-
(FlashSettings->MenuRateLimit || FlashSettings->KeyboardMode == MODE_XT)
116+
(FlashSettings->MenuRateLimit || FlashSettings->KeyboardMode == MODE_XT || FlashSettings->KeyboardMode == MODE_AMSTRAD)
117117
)
118118
MenuRateLimit = 25;
119119

@@ -209,7 +209,7 @@ void Menu_Task(void)
209209
if (lastMenuState != MENU_STATE_MAIN)
210210
{
211211
SendBuffer[0] = 0;
212-
SendKeyboardString("\n--\nHIDman v1.1.5j\n\n");
212+
SendKeyboardString("\n--\nHIDman v1.1.5\n\n");
213213
SendKeyboardString("1. Key\n");
214214
SendKeyboardString("2. Mouse\n");
215215
SendKeyboardString("3. Game\n");

0 commit comments

Comments
 (0)