We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a97e7c commit c632484Copy full SHA for c632484
arduino/arduino.ino
@@ -17,8 +17,8 @@
17
#define OP_PULSE 17
18
#define OP_TOGGLE 18
19
20
-const int MAX_INSTRUCTIONS = 100;
21
-const int MAX_VARIABLES = 20;
+const int MAX_INSTRUCTIONS = 300;
+const int MAX_VARIABLES = 60;
22
23
// EEPROM addresses
24
#define EEPROM_SIGNATURE 0
logic-editor/src/App.tsx
@@ -559,7 +559,7 @@ export default function App() {
559
560
// Set a timeout for reading response
561
const timeoutPromise = new Promise((_, reject) =>
562
- setTimeout(() => reject(new Error('Timeout waiting for response')), 60000)
+ setTimeout(() => reject(new Error('Timeout waiting for response')), 10000)
563
);
564
565
try {
0 commit comments