Skip to content

Commit

Permalink
[Windows] Catch COMException on load (#468)
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark authored May 20, 2024
1 parent 816c372 commit e629d08
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion windows/QMK Toolbox/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Runtime.InteropServices;
using System.Windows.Forms;

namespace QMK_Toolbox
Expand Down Expand Up @@ -81,7 +82,16 @@ private void MainWindow_Load(object sender, EventArgs e)
usbListener.bootloaderDeviceConnected += BootloaderDeviceConnected;
usbListener.bootloaderDeviceDisconnected += BootloaderDeviceDisconnected;
usbListener.outputReceived += BootloaderCommandOutputReceived;
usbListener.Start();

try
{
usbListener.Start();
}
catch (COMException ex)
{
logTextBox.LogError("USB device enumeration failed.");
logTextBox.LogError($"{ex}");
}

if (_filePassedIn != string.Empty)
{
Expand Down

0 comments on commit e629d08

Please sign in to comment.