Reduce left bootloader timeout from 3000 to 300 ms.

This commit is contained in:
László Monda
2017-08-20 16:25:53 +02:00
parent cc1ba715bc
commit f36c3f24e8

View File

@@ -12,7 +12,7 @@ __attribute__((used, section(".BootloaderConfig"))) const bootloader_config_t Bo
.tag = 0x6766636B, // Magic Number
.enabledPeripherals = ENABLE_PERIPHERAL_I2C /*0xE2*/, // Enabled Peripheral: I2C
.i2cSlaveAddress = 0x10, // Use user-defined I2C address
.peripheralDetectionTimeoutMs = 3000, // Use user-defined timeout (ms)
.peripheralDetectionTimeoutMs = 300, // Use user-defined timeout (ms)
.clockFlags = 0xFF, // Disable High speed mode
.clockDivider = 0xFF, // Use clock divider (0)
};