We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc8fdc9 commit 2f72e35Copy full SHA for 2f72e35
src/lib/automation.c
@@ -47,8 +47,8 @@ bool init_automation(void)
47
sent_data.r_stick = S_NEUTRAL;
48
sent_data.magic_and_leds = MAGIC_VALUE;
49
50
- /* Wait 2 ms for initial ready signal */
51
- _delay_ms(2);
+ /* Wait 12 ms for initial ready signal */
+ _delay_ms(12);
52
if (bit_is_set(UCSR0A, RXC0)) {
53
/* Retrieve ready signal byte */
54
uint8_t received = UDR0;
src/usb-iface/usb-iface.c
@@ -60,7 +60,7 @@ int main(void)
60
Serial_Init(BAUD, ENABLE_DOUBLESPEED);
61
62
/* Send the initial sync byte to the main µC */
63
- _delay_ms(1);
+ _delay_ms(11);
64
Serial_SendByte(INIT_SYNC_CHAR);
65
66
/* Initialize LUFI */
0 commit comments