├── .gitignore ├── CC2541DB ├── CC2541DK-MINI Keyfob Slave │ ├── Exe │ │ ├── HIDKbdMouse.d51 │ │ └── HidEmuKbd.hex │ └── List │ │ └── HIDKbdMouse.map ├── HIDKbdMouse.dep ├── HIDKbdMouse.ewd ├── HIDKbdMouse.ewp ├── HIDKbdMouse.eww ├── bin │ └── HM-10_CC2541_Experimental.hex ├── buildConfig.cfg └── settings │ ├── HIDKbdMouse.CC2541DK-MINI Keyfob Slave.cspy.bat │ ├── HIDKbdMouse.CC2541DK-MINI Keyfob Slave.driver.xcl │ ├── HIDKbdMouse.CC2541DK-MINI Keyfob Slave.general.xcl │ ├── HIDKbdMouse.cspy.bat │ ├── HIDKbdMouse.dbgdt │ ├── HIDKbdMouse.dni │ ├── HIDKbdMouse.wsdt │ └── HIDKbdMouse.wspos ├── Example └── BLE_KBD_Test │ ├── .ccsproject │ ├── .cproject │ ├── .launches │ ├── BLE_KBD_Mouse_Test.launch │ └── BLE_KBD_Test.launch │ ├── .project │ ├── .settings │ ├── org.eclipse.cdt.codan.core.prefs │ ├── org.eclipse.cdt.debug.core.prefs │ └── org.eclipse.core.resources.prefs │ ├── Debug │ ├── BLE_KBD_Mouse_Test.map │ ├── BLE_KBD_Mouse_Test_linkInfo.xml │ ├── BLE_KBD_Test.map │ ├── BLE_KBD_Test.out │ ├── BLE_KBD_Test_linkInfo.xml │ ├── ccsObjs.opt │ ├── makefile │ ├── objects.mk │ ├── sources.mk │ ├── subdir_rules.mk │ └── subdir_vars.mk │ ├── KBD_HUT.h │ ├── Printf.c │ ├── lnk_msp430g2553.cmd │ ├── main.c │ └── targetConfigs │ ├── MSP430G2553.ccxml │ └── readme.txt ├── PC Test App └── cc254x-Test-App │ ├── HIDKbdMTestApp │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── cc254x-hidkbdm-test-app.csproj │ └── packages.config │ └── cc254x-hidkbdm-test-app.sln ├── README.md └── Source ├── KBD_HUT.h ├── KBD_Report.c ├── KBD_report.h ├── MOUSE_DEF.h ├── OSAL_hidKbdMouse.c ├── PROGRESS.txt ├── Printf.c ├── hidKbdMouse.c ├── hidKbdMouse.h └── hidKbdMouse_Main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/.gitignore -------------------------------------------------------------------------------- /CC2541DB/CC2541DK-MINI Keyfob Slave/Exe/HIDKbdMouse.d51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/CC2541DB/CC2541DK-MINI Keyfob Slave/Exe/HIDKbdMouse.d51 -------------------------------------------------------------------------------- /CC2541DB/CC2541DK-MINI Keyfob Slave/Exe/HidEmuKbd.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/CC2541DB/CC2541DK-MINI Keyfob Slave/Exe/HidEmuKbd.hex -------------------------------------------------------------------------------- /CC2541DB/CC2541DK-MINI Keyfob Slave/List/HIDKbdMouse.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/CC2541DB/CC2541DK-MINI Keyfob Slave/List/HIDKbdMouse.map -------------------------------------------------------------------------------- /CC2541DB/HIDKbdMouse.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/CC2541DB/HIDKbdMouse.dep -------------------------------------------------------------------------------- /CC2541DB/HIDKbdMouse.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/CC2541DB/HIDKbdMouse.ewd -------------------------------------------------------------------------------- /CC2541DB/HIDKbdMouse.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/CC2541DB/HIDKbdMouse.ewp -------------------------------------------------------------------------------- /CC2541DB/HIDKbdMouse.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/CC2541DB/HIDKbdMouse.eww -------------------------------------------------------------------------------- /CC2541DB/bin/HM-10_CC2541_Experimental.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/CC2541DB/bin/HM-10_CC2541_Experimental.hex -------------------------------------------------------------------------------- /CC2541DB/buildConfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/CC2541DB/buildConfig.cfg -------------------------------------------------------------------------------- /CC2541DB/settings/HIDKbdMouse.CC2541DK-MINI Keyfob Slave.cspy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/CC2541DB/settings/HIDKbdMouse.CC2541DK-MINI Keyfob Slave.cspy.bat -------------------------------------------------------------------------------- /CC2541DB/settings/HIDKbdMouse.CC2541DK-MINI Keyfob Slave.driver.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/CC2541DB/settings/HIDKbdMouse.CC2541DK-MINI Keyfob Slave.driver.xcl -------------------------------------------------------------------------------- /CC2541DB/settings/HIDKbdMouse.CC2541DK-MINI Keyfob Slave.general.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/CC2541DB/settings/HIDKbdMouse.CC2541DK-MINI Keyfob Slave.general.xcl -------------------------------------------------------------------------------- /CC2541DB/settings/HIDKbdMouse.cspy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/CC2541DB/settings/HIDKbdMouse.cspy.bat -------------------------------------------------------------------------------- /CC2541DB/settings/HIDKbdMouse.dbgdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/CC2541DB/settings/HIDKbdMouse.dbgdt -------------------------------------------------------------------------------- /CC2541DB/settings/HIDKbdMouse.dni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/CC2541DB/settings/HIDKbdMouse.dni -------------------------------------------------------------------------------- /CC2541DB/settings/HIDKbdMouse.wsdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/CC2541DB/settings/HIDKbdMouse.wsdt -------------------------------------------------------------------------------- /CC2541DB/settings/HIDKbdMouse.wspos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/CC2541DB/settings/HIDKbdMouse.wspos -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/.ccsproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/.ccsproject -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/.cproject -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/.launches/BLE_KBD_Mouse_Test.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/.launches/BLE_KBD_Mouse_Test.launch -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/.launches/BLE_KBD_Test.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/.launches/BLE_KBD_Test.launch -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/.project -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/.settings/org.eclipse.cdt.codan.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/.settings/org.eclipse.cdt.codan.core.prefs -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/.settings/org.eclipse.cdt.debug.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/.settings/org.eclipse.cdt.debug.core.prefs -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/Debug/BLE_KBD_Mouse_Test.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/Debug/BLE_KBD_Mouse_Test.map -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/Debug/BLE_KBD_Mouse_Test_linkInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/Debug/BLE_KBD_Mouse_Test_linkInfo.xml -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/Debug/BLE_KBD_Test.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/Debug/BLE_KBD_Test.map -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/Debug/BLE_KBD_Test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/Debug/BLE_KBD_Test.out -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/Debug/BLE_KBD_Test_linkInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/Debug/BLE_KBD_Test_linkInfo.xml -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/Debug/ccsObjs.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/Debug/ccsObjs.opt -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/Debug/makefile -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/Debug/objects.mk -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/Debug/sources.mk -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/Debug/subdir_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/Debug/subdir_rules.mk -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/Debug/subdir_vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/Debug/subdir_vars.mk -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/KBD_HUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/KBD_HUT.h -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/Printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/Printf.c -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/lnk_msp430g2553.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/lnk_msp430g2553.cmd -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/main.c -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/targetConfigs/MSP430G2553.ccxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/targetConfigs/MSP430G2553.ccxml -------------------------------------------------------------------------------- /Example/BLE_KBD_Test/targetConfigs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Example/BLE_KBD_Test/targetConfigs/readme.txt -------------------------------------------------------------------------------- /PC Test App/cc254x-Test-App/HIDKbdMTestApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/PC Test App/cc254x-Test-App/HIDKbdMTestApp/App.config -------------------------------------------------------------------------------- /PC Test App/cc254x-Test-App/HIDKbdMTestApp/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/PC Test App/cc254x-Test-App/HIDKbdMTestApp/Form1.Designer.cs -------------------------------------------------------------------------------- /PC Test App/cc254x-Test-App/HIDKbdMTestApp/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/PC Test App/cc254x-Test-App/HIDKbdMTestApp/Form1.cs -------------------------------------------------------------------------------- /PC Test App/cc254x-Test-App/HIDKbdMTestApp/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/PC Test App/cc254x-Test-App/HIDKbdMTestApp/Form1.resx -------------------------------------------------------------------------------- /PC Test App/cc254x-Test-App/HIDKbdMTestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/PC Test App/cc254x-Test-App/HIDKbdMTestApp/Program.cs -------------------------------------------------------------------------------- /PC Test App/cc254x-Test-App/HIDKbdMTestApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/PC Test App/cc254x-Test-App/HIDKbdMTestApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PC Test App/cc254x-Test-App/HIDKbdMTestApp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/PC Test App/cc254x-Test-App/HIDKbdMTestApp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PC Test App/cc254x-Test-App/HIDKbdMTestApp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/PC Test App/cc254x-Test-App/HIDKbdMTestApp/Properties/Resources.resx -------------------------------------------------------------------------------- /PC Test App/cc254x-Test-App/HIDKbdMTestApp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/PC Test App/cc254x-Test-App/HIDKbdMTestApp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PC Test App/cc254x-Test-App/HIDKbdMTestApp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/PC Test App/cc254x-Test-App/HIDKbdMTestApp/Properties/Settings.settings -------------------------------------------------------------------------------- /PC Test App/cc254x-Test-App/HIDKbdMTestApp/cc254x-hidkbdm-test-app.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/PC Test App/cc254x-Test-App/HIDKbdMTestApp/cc254x-hidkbdm-test-app.csproj -------------------------------------------------------------------------------- /PC Test App/cc254x-Test-App/HIDKbdMTestApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/PC Test App/cc254x-Test-App/HIDKbdMTestApp/packages.config -------------------------------------------------------------------------------- /PC Test App/cc254x-Test-App/cc254x-hidkbdm-test-app.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/PC Test App/cc254x-Test-App/cc254x-hidkbdm-test-app.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/README.md -------------------------------------------------------------------------------- /Source/KBD_HUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Source/KBD_HUT.h -------------------------------------------------------------------------------- /Source/KBD_Report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Source/KBD_Report.c -------------------------------------------------------------------------------- /Source/KBD_report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Source/KBD_report.h -------------------------------------------------------------------------------- /Source/MOUSE_DEF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Source/MOUSE_DEF.h -------------------------------------------------------------------------------- /Source/OSAL_hidKbdMouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Source/OSAL_hidKbdMouse.c -------------------------------------------------------------------------------- /Source/PROGRESS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Source/PROGRESS.txt -------------------------------------------------------------------------------- /Source/Printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Source/Printf.c -------------------------------------------------------------------------------- /Source/hidKbdMouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Source/hidKbdMouse.c -------------------------------------------------------------------------------- /Source/hidKbdMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Source/hidKbdMouse.h -------------------------------------------------------------------------------- /Source/hidKbdMouse_Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rampadc/cc254x-hidKbdM/HEAD/Source/hidKbdMouse_Main.c --------------------------------------------------------------------------------