├── .gitignore ├── LICENSE ├── README.md ├── github ├── ch340g.png ├── cp210x.png ├── ftdi.png ├── icon.png └── n2d-main.png └── src ├── Graphics ├── help_96px.png ├── icon.ico ├── icon.pdn ├── icon.png ├── important_icon.png ├── services_96px.png └── usb_disconnected_96px.png ├── N2D22.sln └── N2D22 ├── API ├── GithubManager.cs ├── SerialBusManager.cs ├── ShellManager.cs ├── TaskManager.cs └── WindowManager.cs ├── App.config ├── Controls └── ExtendedSpinner.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── MainWindow.Designer.cs ├── MainWindow.cs ├── MainWindow.resx ├── N2D22.csproj ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Resources ├── help_96px.png ├── icon.png ├── important_icon.png ├── services_96px.png └── usb_disconnected_96px.png ├── Window ├── DriverTimeoutFm.Designer.cs ├── DriverTimeoutFm.cs ├── DriverTimeoutFm.resx ├── MessageFm.Designer.cs ├── MessageFm.cs ├── MessageFm.resx ├── RequestFm.Designer.cs ├── RequestFm.cs ├── RequestFm.resx ├── SelectFm.Designer.cs ├── SelectFm.cs ├── SelectFm.resx ├── WaitFm.Designer.cs ├── WaitFm.cs └── WaitFm.resx ├── icon.ico ├── obj └── Debug │ └── DesignTimeResolveAssemblyReferencesInput.cache └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/README.md -------------------------------------------------------------------------------- /github/ch340g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/github/ch340g.png -------------------------------------------------------------------------------- /github/cp210x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/github/cp210x.png -------------------------------------------------------------------------------- /github/ftdi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/github/ftdi.png -------------------------------------------------------------------------------- /github/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/github/icon.png -------------------------------------------------------------------------------- /github/n2d-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/github/n2d-main.png -------------------------------------------------------------------------------- /src/Graphics/help_96px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/Graphics/help_96px.png -------------------------------------------------------------------------------- /src/Graphics/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/Graphics/icon.ico -------------------------------------------------------------------------------- /src/Graphics/icon.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/Graphics/icon.pdn -------------------------------------------------------------------------------- /src/Graphics/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/Graphics/icon.png -------------------------------------------------------------------------------- /src/Graphics/important_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/Graphics/important_icon.png -------------------------------------------------------------------------------- /src/Graphics/services_96px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/Graphics/services_96px.png -------------------------------------------------------------------------------- /src/Graphics/usb_disconnected_96px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/Graphics/usb_disconnected_96px.png -------------------------------------------------------------------------------- /src/N2D22.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22.sln -------------------------------------------------------------------------------- /src/N2D22/API/GithubManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/API/GithubManager.cs -------------------------------------------------------------------------------- /src/N2D22/API/SerialBusManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/API/SerialBusManager.cs -------------------------------------------------------------------------------- /src/N2D22/API/ShellManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/API/ShellManager.cs -------------------------------------------------------------------------------- /src/N2D22/API/TaskManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/API/TaskManager.cs -------------------------------------------------------------------------------- /src/N2D22/API/WindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/API/WindowManager.cs -------------------------------------------------------------------------------- /src/N2D22/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/App.config -------------------------------------------------------------------------------- /src/N2D22/Controls/ExtendedSpinner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Controls/ExtendedSpinner.cs -------------------------------------------------------------------------------- /src/N2D22/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/FodyWeavers.xml -------------------------------------------------------------------------------- /src/N2D22/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/FodyWeavers.xsd -------------------------------------------------------------------------------- /src/N2D22/MainWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/MainWindow.Designer.cs -------------------------------------------------------------------------------- /src/N2D22/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/MainWindow.cs -------------------------------------------------------------------------------- /src/N2D22/MainWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/MainWindow.resx -------------------------------------------------------------------------------- /src/N2D22/N2D22.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/N2D22.csproj -------------------------------------------------------------------------------- /src/N2D22/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Program.cs -------------------------------------------------------------------------------- /src/N2D22/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/N2D22/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/N2D22/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Properties/Resources.resx -------------------------------------------------------------------------------- /src/N2D22/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/N2D22/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Properties/Settings.settings -------------------------------------------------------------------------------- /src/N2D22/Resources/help_96px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Resources/help_96px.png -------------------------------------------------------------------------------- /src/N2D22/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Resources/icon.png -------------------------------------------------------------------------------- /src/N2D22/Resources/important_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Resources/important_icon.png -------------------------------------------------------------------------------- /src/N2D22/Resources/services_96px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Resources/services_96px.png -------------------------------------------------------------------------------- /src/N2D22/Resources/usb_disconnected_96px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Resources/usb_disconnected_96px.png -------------------------------------------------------------------------------- /src/N2D22/Window/DriverTimeoutFm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Window/DriverTimeoutFm.Designer.cs -------------------------------------------------------------------------------- /src/N2D22/Window/DriverTimeoutFm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Window/DriverTimeoutFm.cs -------------------------------------------------------------------------------- /src/N2D22/Window/DriverTimeoutFm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Window/DriverTimeoutFm.resx -------------------------------------------------------------------------------- /src/N2D22/Window/MessageFm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Window/MessageFm.Designer.cs -------------------------------------------------------------------------------- /src/N2D22/Window/MessageFm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Window/MessageFm.cs -------------------------------------------------------------------------------- /src/N2D22/Window/MessageFm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Window/MessageFm.resx -------------------------------------------------------------------------------- /src/N2D22/Window/RequestFm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Window/RequestFm.Designer.cs -------------------------------------------------------------------------------- /src/N2D22/Window/RequestFm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Window/RequestFm.cs -------------------------------------------------------------------------------- /src/N2D22/Window/RequestFm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Window/RequestFm.resx -------------------------------------------------------------------------------- /src/N2D22/Window/SelectFm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Window/SelectFm.Designer.cs -------------------------------------------------------------------------------- /src/N2D22/Window/SelectFm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Window/SelectFm.cs -------------------------------------------------------------------------------- /src/N2D22/Window/SelectFm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Window/SelectFm.resx -------------------------------------------------------------------------------- /src/N2D22/Window/WaitFm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Window/WaitFm.Designer.cs -------------------------------------------------------------------------------- /src/N2D22/Window/WaitFm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Window/WaitFm.cs -------------------------------------------------------------------------------- /src/N2D22/Window/WaitFm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/Window/WaitFm.resx -------------------------------------------------------------------------------- /src/N2D22/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/icon.ico -------------------------------------------------------------------------------- /src/N2D22/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /src/N2D22/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a4004/n2d/HEAD/src/N2D22/packages.config --------------------------------------------------------------------------------