From db32864ce7029d758f57729cc2f75e051a28d0a2 Mon Sep 17 00:00:00 2001 From: Jack Humbert Date: Sat, 18 Jun 2016 14:30:24 -0400 Subject: Cleans up quantum/keymap situation, removes extra lufa folders (#416) * sorts out keycodes * move midi around * remove mbed * replaces keymap with qmk/keymap_common * fixes keymap.h * keymap, config, quantum rearrange * removes unneeded lufa stuff --- .../LEDNotifier/CPUUsageApp/CPUMonitor.Designer.cs | 131 -------------------- .../Projects/LEDNotifier/CPUUsageApp/CPUMonitor.cs | 115 ------------------ .../LEDNotifier/CPUUsageApp/CPUMonitor.csproj | 95 --------------- .../LEDNotifier/CPUUsageApp/CPUMonitor.resx | 132 --------------------- .../Projects/LEDNotifier/CPUUsageApp/Program.cs | 21 ---- .../CPUUsageApp/Properties/AssemblyInfo.cs | 36 ------ .../CPUUsageApp/Properties/Resources.Designer.cs | 63 ---------- .../CPUUsageApp/Properties/Resources.resx | 117 ------------------ .../CPUUsageApp/Properties/Settings.Designer.cs | 26 ---- .../CPUUsageApp/Properties/Settings.settings | 7 -- 10 files changed, 743 deletions(-) delete mode 100644 tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.Designer.cs delete mode 100644 tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.cs delete mode 100644 tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.csproj delete mode 100644 tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.resx delete mode 100644 tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Program.cs delete mode 100644 tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/AssemblyInfo.cs delete mode 100644 tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/Resources.Designer.cs delete mode 100644 tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/Resources.resx delete mode 100644 tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/Settings.Designer.cs delete mode 100644 tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/Settings.settings (limited to 'tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp') diff --git a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.Designer.cs b/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.Designer.cs deleted file mode 100644 index 2b189943a..000000000 --- a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.Designer.cs +++ /dev/null @@ -1,131 +0,0 @@ -namespace CPUMonitor -{ - partial class frmCPU - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.components = new System.ComponentModel.Container(); - this.serSerialPort = new System.IO.Ports.SerialPort(this.components); - this.tmrCPUTimer = new System.Windows.Forms.Timer(this.components); - this.cmbComPort = new System.Windows.Forms.ComboBox(); - this.pcCPUUsage = new System.Diagnostics.PerformanceCounter(); - this.lblCPU = new System.Windows.Forms.Label(); - this.nicoNotifyIcon = new System.Windows.Forms.NotifyIcon(this.components); - this.btnMinimizeToTray = new System.Windows.Forms.Button(); - this.btnExit = new System.Windows.Forms.Button(); - ((System.ComponentModel.ISupportInitialize)(this.pcCPUUsage)).BeginInit(); - this.SuspendLayout(); - // - // tmrCPUTimer - // - this.tmrCPUTimer.Enabled = true; - this.tmrCPUTimer.Interval = 1000; - this.tmrCPUTimer.Tick += new System.EventHandler(this.tmrCPUTimer_Tick); - // - // cmbComPort - // - this.cmbComPort.FormattingEnabled = true; - this.cmbComPort.Location = new System.Drawing.Point(48, 12); - this.cmbComPort.Name = "cmbComPort"; - this.cmbComPort.Size = new System.Drawing.Size(156, 21); - this.cmbComPort.TabIndex = 0; - this.cmbComPort.SelectedIndexChanged += new System.EventHandler(this.cbPort_SelectedIndexChanged); - // - // pcCPUUsage - // - this.pcCPUUsage.CategoryName = "Processor"; - this.pcCPUUsage.CounterName = "% Processor Time"; - this.pcCPUUsage.InstanceName = "_Total"; - // - // lblCPU - // - this.lblCPU.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lblCPU.Location = new System.Drawing.Point(44, 36); - this.lblCPU.Name = "lblCPU"; - this.lblCPU.Size = new System.Drawing.Size(160, 28); - this.lblCPU.TabIndex = 1; - this.lblCPU.Text = "0%"; - this.lblCPU.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // nicoNotifyIcon - // - this.nicoNotifyIcon.Text = "CPU Usage Monitor"; - this.nicoNotifyIcon.Visible = true; - // - // btnMinimizeToTray - // - this.btnMinimizeToTray.Location = new System.Drawing.Point(12, 67); - this.btnMinimizeToTray.Name = "btnMinimizeToTray"; - this.btnMinimizeToTray.Size = new System.Drawing.Size(111, 28); - this.btnMinimizeToTray.TabIndex = 2; - this.btnMinimizeToTray.Text = "Minimize to Tray"; - this.btnMinimizeToTray.UseVisualStyleBackColor = true; - this.btnMinimizeToTray.Click += new System.EventHandler(this.btnMinimizeToTray_Click); - // - // btnExit - // - this.btnExit.Location = new System.Drawing.Point(126, 67); - this.btnExit.Name = "btnExit"; - this.btnExit.Size = new System.Drawing.Size(111, 28); - this.btnExit.TabIndex = 3; - this.btnExit.Text = "Exit"; - this.btnExit.UseVisualStyleBackColor = true; - this.btnExit.Click += new System.EventHandler(this.btnExit_Click); - // - // frmCPU - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(249, 106); - this.Controls.Add(this.btnExit); - this.Controls.Add(this.btnMinimizeToTray); - this.Controls.Add(this.lblCPU); - this.Controls.Add(this.cmbComPort); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; - this.MaximizeBox = false; - this.Name = "frmCPU"; - this.Text = "CPU Usage Monitor"; - this.WindowState = System.Windows.Forms.FormWindowState.Minimized; - this.Load += new System.EventHandler(this.Form1_Load); - ((System.ComponentModel.ISupportInitialize)(this.pcCPUUsage)).EndInit(); - this.ResumeLayout(false); - - } - - #endregion - - private System.IO.Ports.SerialPort serSerialPort; - private System.Windows.Forms.Timer tmrCPUTimer; - private System.Windows.Forms.ComboBox cmbComPort; - private System.Diagnostics.PerformanceCounter pcCPUUsage; - private System.Windows.Forms.Label lblCPU; - private System.Windows.Forms.NotifyIcon nicoNotifyIcon; - private System.Windows.Forms.Button btnMinimizeToTray; - private System.Windows.Forms.Button btnExit; - } -} - diff --git a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.cs b/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.cs deleted file mode 100644 index 32543fc59..000000000 --- a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.cs +++ /dev/null @@ -1,115 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Windows.Forms; -using Microsoft.Win32; - -namespace CPUMonitor -{ - public partial class frmCPU : Form - { - private RegistryKey AppRegKey; - - private const int LIGHT_MAX = 0x1F; - - public frmCPU() - { - InitializeComponent(); - - nicoNotifyIcon.Icon = this.Icon; - nicoNotifyIcon.MouseClick += new MouseEventHandler(TrayIconClick); - } - - private void Form1_Load(object sender, EventArgs e) - { - AppRegKey = Registry.CurrentUser.CreateSubKey("Software\\CPUMonitor"); - - String[] PortNames = System.IO.Ports.SerialPort.GetPortNames(); - Array.Sort(PortNames, delegate(string strA, string strB) { return int.Parse(strA.Substring(3)).CompareTo(int.Parse(strB.Substring(3))); }); - cmbComPort.Items.Clear(); - cmbComPort.Items.AddRange(PortNames); - - cmbComPort.SelectedIndex = System.Convert.ToInt32(AppRegKey.GetValue("Port", "1")) - 1; - serSerialPort.PortName = cmbComPort.Text; - - Hide(); - } - - private void NotifyLight(int Red, int Green, int Blue) - { - byte[] buffer = new byte[3]; - buffer[0] = (byte)(0x80 | (Red & LIGHT_MAX)); - buffer[1] = (byte)(0x40 | (Green & LIGHT_MAX)); - buffer[2] = (byte)(0x20 | (Blue & LIGHT_MAX)); - - try - { - serSerialPort.PortName = cmbComPort.Text; - serSerialPort.Open(); - serSerialPort.Write(buffer, 0, buffer.Length); - serSerialPort.Close(); - } - catch (Exception e) - { - - } - } - - private void tmrCPUTimer_Tick(object sender, EventArgs e) - { - float CPUUsage = pcCPUUsage.NextValue(); - - int Red = 0; - int Green = 0; - int Blue = 0; - - if (CPUUsage < 25) - { - Green = (int)((LIGHT_MAX / 25) * CPUUsage); - } - else if (CPUUsage < 50) - { - Blue = (int)((LIGHT_MAX / 25) * (CPUUsage - 25)); - Green = LIGHT_MAX - Blue; - } - else if (CPUUsage < 75) - { - Red = (int)((LIGHT_MAX / 25) * (CPUUsage - 50)); - Blue = LIGHT_MAX - Red; - } - else - { - Red = LIGHT_MAX; - } - - NotifyLight(Red, Green, Blue); - lblCPU.Text = ((int)CPUUsage).ToString() + "%"; - } - - private void btnExit_Click(object sender, EventArgs e) - { - Application.Exit(); - } - - private void btnMinimizeToTray_Click(object sender, EventArgs e) - { - this.Hide(); - } - - private void TrayIconClick(object sender, MouseEventArgs e) - { - this.Show(); - this.WindowState = FormWindowState.Normal; - } - - private void cbPort_SelectedIndexChanged(object sender, EventArgs e) - { - AppRegKey.SetValue("Port", cmbComPort.SelectedIndex + 1); - serSerialPort.PortName = cmbComPort.Text; - } - } -} diff --git a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.csproj b/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.csproj deleted file mode 100644 index d568a9dc4..000000000 --- a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.csproj +++ /dev/null @@ -1,95 +0,0 @@ - - - - Debug - AnyCPU - 9.0.21022 - 2.0 - {6040B049-4241-4FFD-B388-AACDA78D1469} - WinExe - Properties - CPUMonitor - CPUMonitor - v3.5 - 512 - - - 3.5 - - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - 3.5 - - - 3.5 - - - 3.5 - - - - - - - - - - Form - - - CPUMonitor.cs - - - - - CPUMonitor.cs - Designer - - - ResXFileCodeGenerator - Resources.Designer.cs - Designer - - - True - Resources.resx - True - - - SettingsSingleFileGenerator - Settings.Designer.cs - - - True - Settings.settings - True - - - - - \ No newline at end of file diff --git a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.resx b/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.resx deleted file mode 100644 index c62b1b020..000000000 --- a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.resx +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 17, 17 - - - 137, 17 - - - 262, 17 - - - 383, 17 - - \ No newline at end of file diff --git a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Program.cs b/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Program.cs deleted file mode 100644 index cb4fd89f2..000000000 --- a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Program.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Windows.Forms; - -namespace CPUMonitor -{ - static class Program - { - /// - /// The main entry point for the application. - /// - [STAThread] - static void Main() - { - Application.EnableVisualStyles(); - Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new frmCPU()); - } - } -} diff --git a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/AssemblyInfo.cs b/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/AssemblyInfo.cs deleted file mode 100644 index 85d31fcba..000000000 --- a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("CPUMonitor")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Microsoft")] -[assembly: AssemblyProduct("CPUMonitor")] -[assembly: AssemblyCopyright("Copyright © Microsoft 2009")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("3e4a61da-cdde-46de-848b-b5206d225e21")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/Resources.Designer.cs b/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/Resources.Designer.cs deleted file mode 100644 index bf80e05fc..000000000 --- a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/Resources.Designer.cs +++ /dev/null @@ -1,63 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.239 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace CPUMonitor.Properties { - using System; - - - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() { - } - - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { - get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CPUMonitor.Properties.Resources", typeof(Resources).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - } -} diff --git a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/Resources.resx b/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/Resources.resx deleted file mode 100644 index af7dbebba..000000000 --- a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/Resources.resx +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/Settings.Designer.cs b/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/Settings.Designer.cs deleted file mode 100644 index 690fde3ba..000000000 --- a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/Settings.Designer.cs +++ /dev/null @@ -1,26 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.239 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace CPUMonitor.Properties { - - - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] - internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { - - private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); - - public static Settings Default { - get { - return defaultInstance; - } - } - } -} diff --git a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/Settings.settings b/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/Settings.settings deleted file mode 100644 index 39645652a..000000000 --- a/tmk_core/protocol/lufa/LUFA-git/Projects/LEDNotifier/CPUUsageApp/Properties/Settings.settings +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - -- cgit v1.2.3