Skip to content

Commit c632484

Browse files
committed
small fixes
1 parent 3a97e7c commit c632484

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

arduino/arduino.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
#define OP_PULSE 17
1818
#define OP_TOGGLE 18
1919

20-
const int MAX_INSTRUCTIONS = 100;
21-
const int MAX_VARIABLES = 20;
20+
const int MAX_INSTRUCTIONS = 300;
21+
const int MAX_VARIABLES = 60;
2222

2323
// EEPROM addresses
2424
#define EEPROM_SIGNATURE 0

logic-editor/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ export default function App() {
559559

560560
// Set a timeout for reading response
561561
const timeoutPromise = new Promise((_, reject) =>
562-
setTimeout(() => reject(new Error('Timeout waiting for response')), 60000)
562+
setTimeout(() => reject(new Error('Timeout waiting for response')), 10000)
563563
);
564564

565565
try {

0 commit comments

Comments
 (0)