We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2060dcf commit b136c17Copy full SHA for b136c17
BK7231Flasher/Flashers/BK7231Flasher.cs
@@ -708,9 +708,10 @@ bool getBus()
708
int loops = 100;
709
bool bOk = false;
710
addLog("Getting bus... (now, please do reboot by CEN or by power off/on)" + Environment.NewLine);
711
+ // Chip bootloader always starts at 115200, ensure port matches
712
+ serial.BaudRate = 115200;
713
for (int tr = 0; tr < maxTries && !bOk; tr++)
714
{
- // Hardware reset via RTS/DTR (same pattern as ESP32/RTL/ECR6600)
715
serial.DtrEnable = true;
716
serial.RtsEnable = true;
717
Thread.Sleep(50);
0 commit comments