├── .github └── workflows │ └── macbuild.yaml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── Bootloader.cydsn ├── .gitignore ├── Bootloader.cydwr ├── Bootloader.cyprj ├── Generated_Source │ └── PSoC5 │ │ ├── Bootloader.c │ │ ├── Bootloader.h │ │ ├── Bootloader_PVT.h │ │ ├── Cm3Iar.icf │ │ ├── Cm3RealView.scat │ │ ├── Cm3Start.c │ │ ├── CyBootAsmGnu.s │ │ ├── CyBootAsmIar.s │ │ ├── CyBootAsmRv.s │ │ ├── CyDmac.c │ │ ├── CyDmac.h │ │ ├── CyFlash.c │ │ ├── CyFlash.h │ │ ├── CyLib.c │ │ ├── CyLib.h │ │ ├── CySpc.c │ │ ├── CySpc.h │ │ ├── USB.c │ │ ├── USB.h │ │ ├── USB_Dm.c │ │ ├── USB_Dm.h │ │ ├── USB_Dm_aliases.h │ │ ├── USB_Dp.c │ │ ├── USB_Dp.h │ │ ├── USB_Dp_aliases.h │ │ ├── USB_VBUS.c │ │ ├── USB_VBUS.h │ │ ├── USB_VBUS_aliases.h │ │ ├── USB_audio.c │ │ ├── USB_audio.h │ │ ├── USB_boot.c │ │ ├── USB_cdc.c │ │ ├── USB_cdc.h │ │ ├── USB_cdc.inf │ │ ├── USB_cls.c │ │ ├── USB_cydmac.h │ │ ├── USB_descr.c │ │ ├── USB_drv.c │ │ ├── USB_episr.c │ │ ├── USB_hid.c │ │ ├── USB_hid.h │ │ ├── USB_midi.c │ │ ├── USB_midi.h │ │ ├── USB_msc.c │ │ ├── USB_msc.h │ │ ├── USB_pm.c │ │ ├── USB_pvt.h │ │ ├── USB_std.c │ │ ├── USB_vnd.c │ │ ├── cm3gcc.ld │ │ ├── cmsis_armcc.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── core_cm3.h │ │ ├── core_cm3_psoc5.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── cyPm.c │ │ ├── cyPm.h │ │ ├── cy_em_eeprom.c │ │ ├── cy_em_eeprom.h │ │ ├── cycodeshareexport.ld │ │ ├── cycodeshareimport.ld │ │ ├── cycodeshareimport.scat │ │ ├── cydevice.h │ │ ├── cydevice_trm.h │ │ ├── cydevicegnu.inc │ │ ├── cydevicegnu_trm.inc │ │ ├── cydeviceiar.inc │ │ ├── cydeviceiar_trm.inc │ │ ├── cydevicerv.inc │ │ ├── cydevicerv_trm.inc │ │ ├── cydisabledsheets.h │ │ ├── cyfitter.h │ │ ├── cyfitter_cfg.c │ │ ├── cyfitter_cfg.h │ │ ├── cyfittergnu.inc │ │ ├── cyfitteriar.inc │ │ ├── cyfitterrv.inc │ │ ├── cymetadata.c │ │ ├── cypins.h │ │ ├── cytypes.h │ │ ├── cyutils.c │ │ ├── exported_symbols.txt │ │ ├── project.h │ │ └── renamed_symbols.txt ├── TopDesign │ └── TopDesign.cysch ├── cyapicallbacks.h └── main.c ├── CSSK.cydsn ├── CSSK.cydwr ├── CSSK.cyprj ├── Generated_Source │ └── PSoC5 │ │ ├── ADC0.c │ │ ├── ADC0.h │ │ ├── ADC0_ExtVref.c │ │ ├── ADC0_ExtVref.h │ │ ├── ADC0_ExtVref_aliases.h │ │ ├── ADC0_INT.c │ │ ├── ADC0_IRQ.c │ │ ├── ADC0_IRQ.h │ │ ├── ADC0_PM.c │ │ ├── Boot.c │ │ ├── Boot.h │ │ ├── BootIRQ.c │ │ ├── BootIRQ.h │ │ ├── BootPin.c │ │ ├── BootPin.h │ │ ├── BootPin_aliases.h │ │ ├── Buf0_dma.c │ │ ├── Buf0_dma.h │ │ ├── ChargeDelay.c │ │ ├── ChargeDelay.h │ │ ├── ChargeDelay_PM.c │ │ ├── Cm3Iar.icf │ │ ├── Cm3RealView.scat │ │ ├── Cm3Start.c │ │ ├── ControlReg0.c │ │ ├── ControlReg0.h │ │ ├── ControlReg0_PM.c │ │ ├── CyBootAsmGnu.s │ │ ├── CyBootAsmIar.s │ │ ├── CyBootAsmRv.s │ │ ├── CyDmac.c │ │ ├── CyDmac.h │ │ ├── CyFlash.c │ │ ├── CyFlash.h │ │ ├── CyLib.c │ │ ├── CyLib.h │ │ ├── CySpc.c │ │ ├── CySpc.h │ │ ├── DischargeDelay.c │ │ ├── DischargeDelay.h │ │ ├── DischargeDelay_PM.c │ │ ├── DriveReg0.c │ │ ├── DriveReg0.h │ │ ├── DriveReg0_PM.c │ │ ├── DriveReg1.c │ │ ├── DriveReg1.h │ │ ├── DriveReg1_PM.c │ │ ├── DriveReg2.c │ │ ├── DriveReg2.h │ │ ├── DriveReg2_PM.c │ │ ├── EEPROM.c │ │ ├── EEPROM.h │ │ ├── EoCIRQ.c │ │ ├── EoCIRQ.h │ │ ├── ExpHdr_aliases.h │ │ ├── FinalBuf_dma.c │ │ ├── FinalBuf_dma.h │ │ ├── ILO_Trim.c │ │ ├── ILO_Trim.h │ │ ├── ILO_Trim_CorrectionISR.c │ │ ├── ILO_Trim_CorrectionISR.h │ │ ├── ILO_Trim_PM.c │ │ ├── PTK.c │ │ ├── PTK.h │ │ ├── PTK_PM.c │ │ ├── ResultIRQ.c │ │ ├── ResultIRQ.h │ │ ├── Sup_I2C.c │ │ ├── Sup_I2C.h │ │ ├── Sup_I2C_BOOT.c │ │ ├── Sup_I2C_INT.c │ │ ├── Sup_I2C_MASTER.c │ │ ├── Sup_I2C_PM.c │ │ ├── Sup_I2C_PVT.h │ │ ├── Sup_I2C_SLAVE.c │ │ ├── SuspendWD.c │ │ ├── SuspendWD.h │ │ ├── SuspendWD_PM.c │ │ ├── SysTimer.c │ │ ├── SysTimer.h │ │ ├── SysTimer_PM.c │ │ ├── TimerIRQ.c │ │ ├── TimerIRQ.h │ │ ├── USB.c │ │ ├── USB.h │ │ ├── USBSuspendIRQ.c │ │ ├── USBSuspendIRQ.h │ │ ├── USB_Dm.c │ │ ├── USB_Dm.h │ │ ├── USB_Dm_aliases.h │ │ ├── USB_Dp.c │ │ ├── USB_Dp.h │ │ ├── USB_Dp_aliases.h │ │ ├── USB_VBUS.c │ │ ├── USB_VBUS.h │ │ ├── USB_VBUS_aliases.h │ │ ├── USB_audio.c │ │ ├── USB_audio.h │ │ ├── USB_boot.c │ │ ├── USB_cdc.c │ │ ├── USB_cdc.h │ │ ├── USB_cdc.inf │ │ ├── USB_cls.c │ │ ├── USB_cydmac.h │ │ ├── USB_descr.c │ │ ├── USB_drv.c │ │ ├── USB_episr.c │ │ ├── USB_hid.c │ │ ├── USB_hid.h │ │ ├── USB_midi.c │ │ ├── USB_midi.h │ │ ├── USB_msc.c │ │ ├── USB_msc.h │ │ ├── USB_pm.c │ │ ├── USB_pvt.h │ │ ├── USB_std.c │ │ ├── USB_vnd.c │ │ ├── cm3gcc.ld │ │ ├── cmsis_armcc.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── core_cm3.h │ │ ├── core_cm3_psoc5.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── cyPm.c │ │ ├── cyPm.h │ │ ├── cy_em_eeprom.c │ │ ├── cy_em_eeprom.h │ │ ├── cybootloader.c │ │ ├── cybootloader.icf │ │ ├── cycodeshareexport.ld │ │ ├── cycodeshareimport.ld │ │ ├── cycodeshareimport.scat │ │ ├── cydevice.h │ │ ├── cydevice_trm.h │ │ ├── cydevicegnu.inc │ │ ├── cydevicegnu_trm.inc │ │ ├── cydeviceiar.inc │ │ ├── cydeviceiar_trm.inc │ │ ├── cydevicerv.inc │ │ ├── cydevicerv_trm.inc │ │ ├── cydisabledsheets.h │ │ ├── cyfitter.h │ │ ├── cyfitter_cfg.c │ │ ├── cyfitter_cfg.h │ │ ├── cyfittergnu.inc │ │ ├── cyfitteriar.inc │ │ ├── cyfitterrv.inc │ │ ├── cymetadata.c │ │ ├── cypins.h │ │ ├── cytypes.h │ │ ├── cyutils.c │ │ ├── exported_symbols.txt │ │ ├── project.h │ │ └── renamed_symbols.txt ├── TopDesign │ └── TopDesign.cysch ├── config.h ├── cyapicallbacks.h └── main.c ├── Capsense.cydsn ├── Capsense.cydwr ├── Capsense.cyprj ├── Generated_Source │ └── PSoC5 │ │ ├── ADC0.c │ │ ├── ADC0.h │ │ ├── ADC0_ExtVref.c │ │ ├── ADC0_ExtVref.h │ │ ├── ADC0_ExtVref_aliases.h │ │ ├── ADC0_INT.c │ │ ├── ADC0_IRQ.c │ │ ├── ADC0_IRQ.h │ │ ├── ADC0_PM.c │ │ ├── Boot.c │ │ ├── Boot.h │ │ ├── BootIRQ.c │ │ ├── BootIRQ.h │ │ ├── BootPin.c │ │ ├── BootPin.h │ │ ├── BootPin_aliases.h │ │ ├── Buf0_dma.c │ │ ├── Buf0_dma.h │ │ ├── ChargeDelay.c │ │ ├── ChargeDelay.h │ │ ├── ChargeDelay_PM.c │ │ ├── Cm3Iar.icf │ │ ├── Cm3RealView.scat │ │ ├── Cm3Start.c │ │ ├── ControlReg0.c │ │ ├── ControlReg0.h │ │ ├── ControlReg0_PM.c │ │ ├── CyBootAsmGnu.s │ │ ├── CyBootAsmIar.s │ │ ├── CyBootAsmRv.s │ │ ├── CyDmac.c │ │ ├── CyDmac.h │ │ ├── CyFlash.c │ │ ├── CyFlash.h │ │ ├── CyLib.c │ │ ├── CyLib.h │ │ ├── CySpc.c │ │ ├── CySpc.h │ │ ├── DischargeDelay.c │ │ ├── DischargeDelay.h │ │ ├── DischargeDelay_PM.c │ │ ├── DriveReg0.c │ │ ├── DriveReg0.h │ │ ├── DriveReg0_PM.c │ │ ├── DriveReg1.c │ │ ├── DriveReg1.h │ │ ├── DriveReg1_PM.c │ │ ├── DriveReg2.c │ │ ├── DriveReg2.h │ │ ├── DriveReg2_PM.c │ │ ├── EEPROM.c │ │ ├── EEPROM.h │ │ ├── EoCIRQ.c │ │ ├── EoCIRQ.h │ │ ├── ExpHdr_aliases.h │ │ ├── FinalBuf_dma.c │ │ ├── FinalBuf_dma.h │ │ ├── ILO_Trim.c │ │ ├── ILO_Trim.h │ │ ├── ILO_Trim_CorrectionISR.c │ │ ├── ILO_Trim_CorrectionISR.h │ │ ├── ILO_Trim_PM.c │ │ ├── PTK.c │ │ ├── PTK.h │ │ ├── PTK_PM.c │ │ ├── ResultIRQ.c │ │ ├── ResultIRQ.h │ │ ├── Sup_I2C.c │ │ ├── Sup_I2C.h │ │ ├── Sup_I2C_BOOT.c │ │ ├── Sup_I2C_INT.c │ │ ├── Sup_I2C_MASTER.c │ │ ├── Sup_I2C_PM.c │ │ ├── Sup_I2C_PVT.h │ │ ├── Sup_I2C_SLAVE.c │ │ ├── SuspendWD.c │ │ ├── SuspendWD.h │ │ ├── SuspendWD_PM.c │ │ ├── SysTimer.c │ │ ├── SysTimer.h │ │ ├── SysTimer_PM.c │ │ ├── TimerIRQ.c │ │ ├── TimerIRQ.h │ │ ├── USB.c │ │ ├── USB.h │ │ ├── USBSuspendIRQ.c │ │ ├── USBSuspendIRQ.h │ │ ├── USB_Dm.c │ │ ├── USB_Dm.h │ │ ├── USB_Dm_aliases.h │ │ ├── USB_Dp.c │ │ ├── USB_Dp.h │ │ ├── USB_Dp_aliases.h │ │ ├── USB_VBUS.c │ │ ├── USB_VBUS.h │ │ ├── USB_VBUS_aliases.h │ │ ├── USB_audio.c │ │ ├── USB_audio.h │ │ ├── USB_boot.c │ │ ├── USB_cdc.c │ │ ├── USB_cdc.h │ │ ├── USB_cdc.inf │ │ ├── USB_cls.c │ │ ├── USB_cydmac.h │ │ ├── USB_descr.c │ │ ├── USB_drv.c │ │ ├── USB_episr.c │ │ ├── USB_hid.c │ │ ├── USB_hid.h │ │ ├── USB_midi.c │ │ ├── USB_midi.h │ │ ├── USB_msc.c │ │ ├── USB_msc.h │ │ ├── USB_pm.c │ │ ├── USB_pvt.h │ │ ├── USB_std.c │ │ ├── USB_vnd.c │ │ ├── cm3gcc.ld │ │ ├── cmsis_armcc.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── core_cm3.h │ │ ├── core_cm3_psoc5.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── cyPm.c │ │ ├── cyPm.h │ │ ├── cy_em_eeprom.c │ │ ├── cy_em_eeprom.h │ │ ├── cybootloader.c │ │ ├── cybootloader.icf │ │ ├── cycodeshareexport.ld │ │ ├── cycodeshareimport.ld │ │ ├── cycodeshareimport.scat │ │ ├── cydevice.h │ │ ├── cydevice_trm.h │ │ ├── cydevicegnu.inc │ │ ├── cydevicegnu_trm.inc │ │ ├── cydeviceiar.inc │ │ ├── cydeviceiar_trm.inc │ │ ├── cydevicerv.inc │ │ ├── cydevicerv_trm.inc │ │ ├── cydisabledsheets.h │ │ ├── cyfitter.h │ │ ├── cyfitter_cfg.c │ │ ├── cyfitter_cfg.h │ │ ├── cyfittergnu.inc │ │ ├── cyfitteriar.inc │ │ ├── cyfitterrv.inc │ │ ├── cymetadata.c │ │ ├── cypins.h │ │ ├── cytypes.h │ │ ├── cyutils.c │ │ ├── exported_symbols.txt │ │ ├── project.h │ │ └── renamed_symbols.txt ├── TopDesign │ └── TopDesign.cysch ├── config.h ├── cyapicallbacks.h └── main.c ├── CommonSense.cywrk ├── DefaultFirmware.md ├── FlightController-icons ├── FlightController.ico ├── icon_1024x1024.png ├── icon_128x128.png ├── icon_16x16.png ├── icon_24x24.png ├── icon_256x256.png ├── icon_32x32.png ├── icon_48x48.png ├── icon_512x512.png └── icon_64x64.png ├── FlightController ├── .gitignore ├── CyACD.cpp ├── CyACD.h ├── Delays.cpp ├── Delays.h ├── DeviceConfig.cpp ├── DeviceConfig.h ├── DeviceInterface.cpp ├── DeviceInterface.h ├── DeviceSelector.cpp ├── DeviceSelector.h ├── DeviceSelector.ui ├── Events.cpp ├── Events.h ├── FirmwareLoader.cpp ├── FirmwareLoader.h ├── FlightController.cpp ├── FlightController.h ├── FlightController.pro ├── FlightController.ui ├── Hardware.cpp ├── Hardware.h ├── Hardware.ui ├── LayerCondition.cpp ├── LayerCondition.h ├── LayerConditions.cpp ├── LayerConditions.h ├── Layout.cpp ├── Layout.h ├── Layout.ui ├── LogViewer.cpp ├── LogViewer.h ├── Macro.cpp ├── Macro.h ├── Macros.cpp ├── Macros.h ├── Macros.ui ├── Pedals.cpp ├── Pedals.h ├── Pedals.ui ├── ScancodeList.cpp ├── ScancodeList.h ├── Telemetry.cpp ├── Telemetry.h ├── Telemetry.ui ├── Thresholds.cpp ├── Thresholds.h ├── Thresholds.ui ├── WindowsIcon.rc ├── main.cpp └── settings.h ├── KitProg-ADB.cydsn ├── AEKII-config.cfg ├── Generated_Source │ └── PSoC5 │ │ ├── ADB_Data.c │ │ ├── ADB_Data.h │ │ ├── ADB_Data_aliases.h │ │ ├── Boot.c │ │ ├── Boot.h │ │ ├── BootIRQ.c │ │ ├── BootIRQ.h │ │ ├── BootPin.c │ │ ├── BootPin.h │ │ ├── BootPin_aliases.h │ │ ├── Cm3Iar.icf │ │ ├── Cm3RealView.scat │ │ ├── Cm3Start.c │ │ ├── CyBootAsmGnu.s │ │ ├── CyBootAsmIar.s │ │ ├── CyBootAsmRv.s │ │ ├── CyDmac.c │ │ ├── CyDmac.h │ │ ├── CyFlash.c │ │ ├── CyFlash.h │ │ ├── CyLib.c │ │ ├── CyLib.h │ │ ├── CySpc.c │ │ ├── CySpc.h │ │ ├── EEPROM.c │ │ ├── EEPROM.h │ │ ├── ExpHdr_aliases.h │ │ ├── ILO_Trim.c │ │ ├── ILO_Trim.h │ │ ├── ILO_Trim_CorrectionISR.c │ │ ├── ILO_Trim_CorrectionISR.h │ │ ├── ILO_Trim_PM.c │ │ ├── N_UART.c │ │ ├── N_UART.h │ │ ├── N_UART_BOOT.c │ │ ├── N_UART_INT.c │ │ ├── N_UART_IntClock.c │ │ ├── N_UART_IntClock.h │ │ ├── N_UART_PM.c │ │ ├── P_UART.c │ │ ├── P_UART.h │ │ ├── P_UART_BOOT.c │ │ ├── P_UART_INT.c │ │ ├── P_UART_IntClock.c │ │ ├── P_UART_IntClock.h │ │ ├── P_UART_PM.c │ │ ├── Sup_I2C.c │ │ ├── Sup_I2C.h │ │ ├── Sup_I2C_BOOT.c │ │ ├── Sup_I2C_INT.c │ │ ├── Sup_I2C_MASTER.c │ │ ├── Sup_I2C_PM.c │ │ ├── Sup_I2C_PVT.h │ │ ├── Sup_I2C_SLAVE.c │ │ ├── SuspendWD.c │ │ ├── SuspendWD.h │ │ ├── SuspendWD_PM.c │ │ ├── SysTimer.c │ │ ├── SysTimer.h │ │ ├── SysTimer_PM.c │ │ ├── TimerIRQ.c │ │ ├── TimerIRQ.h │ │ ├── USB.c │ │ ├── USB.h │ │ ├── USBSuspendIRQ.c │ │ ├── USBSuspendIRQ.h │ │ ├── USB_Dm.c │ │ ├── USB_Dm.h │ │ ├── USB_Dm_aliases.h │ │ ├── USB_Dp.c │ │ ├── USB_Dp.h │ │ ├── USB_Dp_aliases.h │ │ ├── USB_VBUS.c │ │ ├── USB_VBUS.h │ │ ├── USB_VBUS_aliases.h │ │ ├── USB_audio.c │ │ ├── USB_audio.h │ │ ├── USB_boot.c │ │ ├── USB_cdc.c │ │ ├── USB_cdc.h │ │ ├── USB_cdc.inf │ │ ├── USB_cls.c │ │ ├── USB_cydmac.h │ │ ├── USB_descr.c │ │ ├── USB_drv.c │ │ ├── USB_episr.c │ │ ├── USB_hid.c │ │ ├── USB_hid.h │ │ ├── USB_midi.c │ │ ├── USB_midi.h │ │ ├── USB_msc.c │ │ ├── USB_msc.h │ │ ├── USB_pm.c │ │ ├── USB_pvt.h │ │ ├── USB_std.c │ │ ├── USB_vnd.c │ │ ├── cm3gcc.ld │ │ ├── cmsis_armcc.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── core_cm3.h │ │ ├── core_cm3_psoc5.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── cyPm.c │ │ ├── cyPm.h │ │ ├── cy_em_eeprom.c │ │ ├── cy_em_eeprom.h │ │ ├── cybootloader.c │ │ ├── cybootloader.icf │ │ ├── cycodeshareexport.ld │ │ ├── cycodeshareimport.ld │ │ ├── cycodeshareimport.scat │ │ ├── cydevice.h │ │ ├── cydevice_trm.h │ │ ├── cydevicegnu.inc │ │ ├── cydevicegnu_trm.inc │ │ ├── cydeviceiar.inc │ │ ├── cydeviceiar_trm.inc │ │ ├── cydevicerv.inc │ │ ├── cydevicerv_trm.inc │ │ ├── cydisabledsheets.h │ │ ├── cyfitter.h │ │ ├── cyfitter_cfg.c │ │ ├── cyfitter_cfg.h │ │ ├── cyfittergnu.inc │ │ ├── cyfitteriar.inc │ │ ├── cyfitterrv.inc │ │ ├── cymetadata.c │ │ ├── cypins.h │ │ ├── cytypes.h │ │ ├── cyutils.c │ │ ├── exported_symbols.txt │ │ ├── project.h │ │ └── renamed_symbols.txt ├── KitProg-ADB.cydwr ├── KitProg-ADB.cyprj ├── TopDesign │ └── TopDesign.cysch ├── config.h ├── cyapicallbacks.h └── main.c ├── KitProg-Cortron.cydsn ├── Generated_Source │ └── PSoC5 │ │ ├── Boot.c │ │ ├── Boot.h │ │ ├── BootIRQ.c │ │ ├── BootIRQ.h │ │ ├── BootPin.c │ │ ├── BootPin.h │ │ ├── BootPin_aliases.h │ │ ├── Cm3Iar.icf │ │ ├── Cm3RealView.scat │ │ ├── Cm3Start.c │ │ ├── CyBootAsmGnu.s │ │ ├── CyBootAsmIar.s │ │ ├── CyBootAsmRv.s │ │ ├── CyDmac.c │ │ ├── CyDmac.h │ │ ├── CyFlash.c │ │ ├── CyFlash.h │ │ ├── CyLib.c │ │ ├── CyLib.h │ │ ├── CySpc.c │ │ ├── CySpc.h │ │ ├── Drive.c │ │ ├── Drive.h │ │ ├── DriveIRQ.c │ │ ├── DriveIRQ.h │ │ ├── DrivePins_aliases.h │ │ ├── Drive_PM.c │ │ ├── EEPROM.c │ │ ├── EEPROM.h │ │ ├── ExpHdr_aliases.h │ │ ├── ILO_Trim.c │ │ ├── ILO_Trim.h │ │ ├── ILO_Trim_CorrectionISR.c │ │ ├── ILO_Trim_CorrectionISR.h │ │ ├── ILO_Trim_PM.c │ │ ├── LED.c │ │ ├── LED.h │ │ ├── LED_aliases.h │ │ ├── SenseIRQ.c │ │ ├── SenseIRQ.h │ │ ├── SensePin.c │ │ ├── SensePin.h │ │ ├── SensePin_aliases.h │ │ ├── Strobe.c │ │ ├── Strobe.h │ │ ├── StrobePin_aliases.h │ │ ├── Strobe_PM.c │ │ ├── SuspendWD.c │ │ ├── SuspendWD.h │ │ ├── SuspendWD_PM.c │ │ ├── SysTimer.c │ │ ├── SysTimer.h │ │ ├── SysTimer_PM.c │ │ ├── TimerIRQ.c │ │ ├── TimerIRQ.h │ │ ├── USB.c │ │ ├── USB.h │ │ ├── USBSuspendIRQ.c │ │ ├── USBSuspendIRQ.h │ │ ├── USB_Dm.c │ │ ├── USB_Dm.h │ │ ├── USB_Dm_aliases.h │ │ ├── USB_Dp.c │ │ ├── USB_Dp.h │ │ ├── USB_Dp_aliases.h │ │ ├── USB_VBUS.c │ │ ├── USB_VBUS.h │ │ ├── USB_VBUS_aliases.h │ │ ├── USB_audio.c │ │ ├── USB_audio.h │ │ ├── USB_boot.c │ │ ├── USB_cdc.c │ │ ├── USB_cdc.h │ │ ├── USB_cdc.inf │ │ ├── USB_cls.c │ │ ├── USB_cydmac.h │ │ ├── USB_descr.c │ │ ├── USB_drv.c │ │ ├── USB_episr.c │ │ ├── USB_hid.c │ │ ├── USB_hid.h │ │ ├── USB_midi.c │ │ ├── USB_midi.h │ │ ├── USB_msc.c │ │ ├── USB_msc.h │ │ ├── USB_pm.c │ │ ├── USB_pvt.h │ │ ├── USB_std.c │ │ ├── USB_vnd.c │ │ ├── cm3gcc.ld │ │ ├── cmsis_armcc.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── core_cm3.h │ │ ├── core_cm3_psoc5.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── cyPm.c │ │ ├── cyPm.h │ │ ├── cy_em_eeprom.c │ │ ├── cy_em_eeprom.h │ │ ├── cybootloader.c │ │ ├── cybootloader.icf │ │ ├── cycodeshareexport.ld │ │ ├── cycodeshareimport.ld │ │ ├── cycodeshareimport.scat │ │ ├── cydevice.h │ │ ├── cydevice_trm.h │ │ ├── cydevicegnu.inc │ │ ├── cydevicegnu_trm.inc │ │ ├── cydeviceiar.inc │ │ ├── cydeviceiar_trm.inc │ │ ├── cydevicerv.inc │ │ ├── cydevicerv_trm.inc │ │ ├── cydisabledsheets.h │ │ ├── cyfitter.h │ │ ├── cyfitter_cfg.c │ │ ├── cyfitter_cfg.h │ │ ├── cyfittergnu.inc │ │ ├── cyfitteriar.inc │ │ ├── cyfitterrv.inc │ │ ├── cymetadata.c │ │ ├── cypins.h │ │ ├── cytypes.h │ │ ├── cyutils.c │ │ ├── exported_symbols.txt │ │ ├── project.h │ │ └── renamed_symbols.txt ├── KitProg-Cortron.cydwr ├── KitProg-Cortron.cyprj ├── TopDesign │ └── TopDesign.cysch ├── config.h ├── cyapicallbacks.h └── main.c ├── KitProg-PS2.cydsn ├── Bootloader │ ├── KitProg_Bootloader.elf │ └── KitProg_Bootloader.hex ├── Generated_Source │ └── PSoC5 │ │ ├── Boot.c │ │ ├── Boot.h │ │ ├── BootIRQ.c │ │ ├── BootIRQ.h │ │ ├── BootPin.c │ │ ├── BootPin.h │ │ ├── BootPin_aliases.h │ │ ├── Cm3Iar.icf │ │ ├── Cm3RealView.scat │ │ ├── Cm3Start.c │ │ ├── CyBootAsmGnu.s │ │ ├── CyBootAsmIar.s │ │ ├── CyBootAsmRv.s │ │ ├── CyDmac.c │ │ ├── CyDmac.h │ │ ├── CyFlash.c │ │ ├── CyFlash.h │ │ ├── CyLib.c │ │ ├── CyLib.h │ │ ├── CySpc.c │ │ ├── CySpc.h │ │ ├── EEPROM.c │ │ ├── EEPROM.h │ │ ├── ExpHdr_aliases.h │ │ ├── ILO_Trim.c │ │ ├── ILO_Trim.h │ │ ├── ILO_Trim_CorrectionISR.c │ │ ├── ILO_Trim_CorrectionISR.h │ │ ├── ILO_Trim_PM.c │ │ ├── PS2CLK_IRQ.c │ │ ├── PS2CLK_IRQ.h │ │ ├── PS2_BitCounter.c │ │ ├── PS2_BitCounter.h │ │ ├── PS2_BitCounter_PM.c │ │ ├── PS2_Buffer.c │ │ ├── PS2_Buffer.h │ │ ├── PS2_Buffer_PM.c │ │ ├── PS2_CLK.c │ │ ├── PS2_CLK.h │ │ ├── PS2_CLK_En.c │ │ ├── PS2_CLK_En.h │ │ ├── PS2_CLK_En_PM.c │ │ ├── PS2_CLK_aliases.h │ │ ├── PS2_Data.c │ │ ├── PS2_Data.h │ │ ├── PS2_Data_aliases.h │ │ ├── Sup_I2C.c │ │ ├── Sup_I2C.h │ │ ├── Sup_I2C_BOOT.c │ │ ├── Sup_I2C_INT.c │ │ ├── Sup_I2C_MASTER.c │ │ ├── Sup_I2C_PM.c │ │ ├── Sup_I2C_PVT.h │ │ ├── Sup_I2C_SLAVE.c │ │ ├── SuspendWD.c │ │ ├── SuspendWD.h │ │ ├── SuspendWD_PM.c │ │ ├── SysTimer.c │ │ ├── SysTimer.h │ │ ├── SysTimer_PM.c │ │ ├── TimerIRQ.c │ │ ├── TimerIRQ.h │ │ ├── USB.c │ │ ├── USB.h │ │ ├── USBSuspendIRQ.c │ │ ├── USBSuspendIRQ.h │ │ ├── USB_Dm.c │ │ ├── USB_Dm.h │ │ ├── USB_Dm_aliases.h │ │ ├── USB_Dp.c │ │ ├── USB_Dp.h │ │ ├── USB_Dp_aliases.h │ │ ├── USB_VBUS.c │ │ ├── USB_VBUS.h │ │ ├── USB_VBUS_aliases.h │ │ ├── USB_audio.c │ │ ├── USB_audio.h │ │ ├── USB_boot.c │ │ ├── USB_cdc.c │ │ ├── USB_cdc.h │ │ ├── USB_cdc.inf │ │ ├── USB_cls.c │ │ ├── USB_cydmac.h │ │ ├── USB_descr.c │ │ ├── USB_drv.c │ │ ├── USB_episr.c │ │ ├── USB_hid.c │ │ ├── USB_hid.h │ │ ├── USB_midi.c │ │ ├── USB_midi.h │ │ ├── USB_msc.c │ │ ├── USB_msc.h │ │ ├── USB_pm.c │ │ ├── USB_pvt.h │ │ ├── USB_std.c │ │ ├── USB_vnd.c │ │ ├── cm3gcc.ld │ │ ├── cmsis_armcc.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── core_cm3.h │ │ ├── core_cm3_psoc5.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── cyPm.c │ │ ├── cyPm.h │ │ ├── cy_em_eeprom.c │ │ ├── cy_em_eeprom.h │ │ ├── cybootloader.c │ │ ├── cybootloader.icf │ │ ├── cycodeshareexport.ld │ │ ├── cycodeshareimport.ld │ │ ├── cycodeshareimport.scat │ │ ├── cydevice.h │ │ ├── cydevice_trm.h │ │ ├── cydevicegnu.inc │ │ ├── cydevicegnu_trm.inc │ │ ├── cydeviceiar.inc │ │ ├── cydeviceiar_trm.inc │ │ ├── cydevicerv.inc │ │ ├── cydevicerv_trm.inc │ │ ├── cydisabledsheets.h │ │ ├── cyfitter.h │ │ ├── cyfitter_cfg.c │ │ ├── cyfitter_cfg.h │ │ ├── cyfittergnu.inc │ │ ├── cyfitteriar.inc │ │ ├── cyfitterrv.inc │ │ ├── cymetadata.c │ │ ├── cypins.h │ │ ├── cytypes.h │ │ ├── cyutils.c │ │ ├── exported_symbols.txt │ │ ├── project.h │ │ └── renamed_symbols.txt ├── KitProg-PS2.cydwr ├── KitProg-PS2.cyprj ├── TopDesign │ └── TopDesign.cysch ├── config.h ├── cyapicallbacks.h └── main.c ├── KitProg-Sun.cydsn ├── Generated_Source │ └── PSoC5 │ │ ├── ADB_Data.c │ │ ├── ADB_Data.h │ │ ├── ADB_Data_aliases.h │ │ ├── Boot.c │ │ ├── Boot.h │ │ ├── BootIRQ.c │ │ ├── BootIRQ.h │ │ ├── BootPin.c │ │ ├── BootPin.h │ │ ├── BootPin_aliases.h │ │ ├── Cm3Iar.icf │ │ ├── Cm3RealView.scat │ │ ├── Cm3Start.c │ │ ├── CyBootAsmGnu.s │ │ ├── CyBootAsmIar.s │ │ ├── CyBootAsmRv.s │ │ ├── CyDmac.c │ │ ├── CyDmac.h │ │ ├── CyFlash.c │ │ ├── CyFlash.h │ │ ├── CyLib.c │ │ ├── CyLib.h │ │ ├── CySpc.c │ │ ├── CySpc.h │ │ ├── EEPROM.c │ │ ├── EEPROM.h │ │ ├── ExpHdr_aliases.h │ │ ├── ILO_Trim.c │ │ ├── ILO_Trim.h │ │ ├── ILO_Trim_CorrectionISR.c │ │ ├── ILO_Trim_CorrectionISR.h │ │ ├── ILO_Trim_PM.c │ │ ├── N_UART.c │ │ ├── N_UART.h │ │ ├── N_UART_BOOT.c │ │ ├── N_UART_INT.c │ │ ├── N_UART_IntClock.c │ │ ├── N_UART_IntClock.h │ │ ├── N_UART_PM.c │ │ ├── P_UART.c │ │ ├── P_UART.h │ │ ├── P_UART_BOOT.c │ │ ├── P_UART_INT.c │ │ ├── P_UART_IntClock.c │ │ ├── P_UART_IntClock.h │ │ ├── P_UART_PM.c │ │ ├── Sup_I2C.c │ │ ├── Sup_I2C.h │ │ ├── Sup_I2C_BOOT.c │ │ ├── Sup_I2C_INT.c │ │ ├── Sup_I2C_MASTER.c │ │ ├── Sup_I2C_PM.c │ │ ├── Sup_I2C_PVT.h │ │ ├── Sup_I2C_SLAVE.c │ │ ├── SuspendWD.c │ │ ├── SuspendWD.h │ │ ├── SuspendWD_PM.c │ │ ├── SysTimer.c │ │ ├── SysTimer.h │ │ ├── SysTimer_PM.c │ │ ├── TimerIRQ.c │ │ ├── TimerIRQ.h │ │ ├── USB.c │ │ ├── USB.h │ │ ├── USBSuspendIRQ.c │ │ ├── USBSuspendIRQ.h │ │ ├── USB_Dm.c │ │ ├── USB_Dm.h │ │ ├── USB_Dm_aliases.h │ │ ├── USB_Dp.c │ │ ├── USB_Dp.h │ │ ├── USB_Dp_aliases.h │ │ ├── USB_VBUS.c │ │ ├── USB_VBUS.h │ │ ├── USB_VBUS_aliases.h │ │ ├── USB_audio.c │ │ ├── USB_audio.h │ │ ├── USB_boot.c │ │ ├── USB_cdc.c │ │ ├── USB_cdc.h │ │ ├── USB_cdc.inf │ │ ├── USB_cls.c │ │ ├── USB_cydmac.h │ │ ├── USB_descr.c │ │ ├── USB_drv.c │ │ ├── USB_episr.c │ │ ├── USB_hid.c │ │ ├── USB_hid.h │ │ ├── USB_midi.c │ │ ├── USB_midi.h │ │ ├── USB_msc.c │ │ ├── USB_msc.h │ │ ├── USB_pm.c │ │ ├── USB_pvt.h │ │ ├── USB_std.c │ │ ├── USB_vnd.c │ │ ├── cm3gcc.ld │ │ ├── cmsis_armcc.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── core_cm3.h │ │ ├── core_cm3_psoc5.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── cyPm.c │ │ ├── cyPm.h │ │ ├── cy_em_eeprom.c │ │ ├── cy_em_eeprom.h │ │ ├── cybootloader.c │ │ ├── cybootloader.icf │ │ ├── cycodeshareexport.ld │ │ ├── cycodeshareimport.ld │ │ ├── cycodeshareimport.scat │ │ ├── cydevice.h │ │ ├── cydevice_trm.h │ │ ├── cydevicegnu.inc │ │ ├── cydevicegnu_trm.inc │ │ ├── cydeviceiar.inc │ │ ├── cydeviceiar_trm.inc │ │ ├── cydevicerv.inc │ │ ├── cydevicerv_trm.inc │ │ ├── cydisabledsheets.h │ │ ├── cyfitter.h │ │ ├── cyfitter_cfg.c │ │ ├── cyfitter_cfg.h │ │ ├── cyfittergnu.inc │ │ ├── cyfitteriar.inc │ │ ├── cyfitterrv.inc │ │ ├── cymetadata.c │ │ ├── cypins.h │ │ ├── cytypes.h │ │ ├── cyutils.c │ │ ├── exported_symbols.txt │ │ ├── project.h │ │ └── renamed_symbols.txt ├── KitProg-Sun.cydwr ├── KitProg-Sun.cyprj ├── SunType5c.cfg ├── TopDesign │ └── TopDesign.cysch ├── config.h ├── cyapicallbacks.h └── main.c ├── KitProg-common ├── KitProg_Bootloader.elf ├── KitProg_Bootloader.hex └── README.md ├── LICENSE ├── MagValve.cydsn ├── Generated_Source │ └── PSoC5 │ │ ├── Boot.c │ │ ├── Boot.h │ │ ├── BootIRQ.c │ │ ├── BootIRQ.h │ │ ├── BootPin.c │ │ ├── BootPin.h │ │ ├── BootPin_aliases.h │ │ ├── Cm3Iar.icf │ │ ├── Cm3RealView.scat │ │ ├── Cm3Start.c │ │ ├── Cmp0.c │ │ ├── Cmp0.h │ │ ├── Cmp0_PM.c │ │ ├── Cmp1.c │ │ ├── Cmp1.h │ │ ├── Cmp1_PM.c │ │ ├── Cmp2.c │ │ ├── Cmp2.h │ │ ├── Cmp2_PM.c │ │ ├── Cmp3.c │ │ ├── Cmp3.h │ │ ├── Cmp3_PM.c │ │ ├── ColsL_aliases.h │ │ ├── ColsR_aliases.h │ │ ├── CyBootAsmGnu.s │ │ ├── CyBootAsmIar.s │ │ ├── CyBootAsmRv.s │ │ ├── CyDmac.c │ │ ├── CyDmac.h │ │ ├── CyFlash.c │ │ ├── CyFlash.h │ │ ├── CyLib.c │ │ ├── CyLib.h │ │ ├── CySpc.c │ │ ├── CySpc.h │ │ ├── DriveReg0.c │ │ ├── DriveReg0.h │ │ ├── DriveReg0_PM.c │ │ ├── DriveReg1.c │ │ ├── DriveReg1.h │ │ ├── DriveReg1_PM.c │ │ ├── EEPROM.c │ │ ├── EEPROM.h │ │ ├── ExpHdr_aliases.h │ │ ├── ILO_Trim.c │ │ ├── ILO_Trim.h │ │ ├── ILO_Trim_CorrectionISR.c │ │ ├── ILO_Trim_CorrectionISR.h │ │ ├── ILO_Trim_PM.c │ │ ├── ResetDelay.c │ │ ├── ResetDelay.h │ │ ├── ResetDelay_PM.c │ │ ├── ResultIRQ.c │ │ ├── ResultIRQ.h │ │ ├── Rows1_aliases.h │ │ ├── SensorReg.c │ │ ├── SensorReg.h │ │ ├── SensorReg_PM.c │ │ ├── SensorStatus.c │ │ ├── SensorStatus.h │ │ ├── SetupDelay.c │ │ ├── SetupDelay.h │ │ ├── SetupDelay_PM.c │ │ ├── Sup_I2C.c │ │ ├── Sup_I2C.h │ │ ├── Sup_I2C_BOOT.c │ │ ├── Sup_I2C_INT.c │ │ ├── Sup_I2C_MASTER.c │ │ ├── Sup_I2C_PM.c │ │ ├── Sup_I2C_PVT.h │ │ ├── Sup_I2C_SLAVE.c │ │ ├── SuspendWD.c │ │ ├── SuspendWD.h │ │ ├── SuspendWD_PM.c │ │ ├── SysTimer.c │ │ ├── SysTimer.h │ │ ├── SysTimer_PM.c │ │ ├── TimerIRQ.c │ │ ├── TimerIRQ.h │ │ ├── USB.c │ │ ├── USB.h │ │ ├── USBSuspendIRQ.c │ │ ├── USBSuspendIRQ.h │ │ ├── USB_Dm.c │ │ ├── USB_Dm.h │ │ ├── USB_Dm_aliases.h │ │ ├── USB_Dp.c │ │ ├── USB_Dp.h │ │ ├── USB_Dp_aliases.h │ │ ├── USB_VBUS.c │ │ ├── USB_VBUS.h │ │ ├── USB_VBUS_aliases.h │ │ ├── USB_audio.c │ │ ├── USB_audio.h │ │ ├── USB_boot.c │ │ ├── USB_cdc.c │ │ ├── USB_cdc.h │ │ ├── USB_cdc.inf │ │ ├── USB_cls.c │ │ ├── USB_cydmac.h │ │ ├── USB_descr.c │ │ ├── USB_drv.c │ │ ├── USB_episr.c │ │ ├── USB_hid.c │ │ ├── USB_hid.h │ │ ├── USB_midi.c │ │ ├── USB_midi.h │ │ ├── USB_msc.c │ │ ├── USB_msc.h │ │ ├── USB_pm.c │ │ ├── USB_pvt.h │ │ ├── USB_std.c │ │ ├── USB_vnd.c │ │ ├── VDAC0.c │ │ ├── VDAC0.h │ │ ├── VDAC0_PM.c │ │ ├── VDAC1.c │ │ ├── VDAC1.h │ │ ├── VDAC1_PM.c │ │ ├── VDAC2.c │ │ ├── VDAC2.h │ │ ├── VDAC2_PM.c │ │ ├── VDAC3.c │ │ ├── VDAC3.h │ │ ├── VDAC3_PM.c │ │ ├── cm3gcc.ld │ │ ├── cmsis_armcc.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── core_cm3.h │ │ ├── core_cm3_psoc5.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── cyPm.c │ │ ├── cyPm.h │ │ ├── cy_em_eeprom.c │ │ ├── cy_em_eeprom.h │ │ ├── cybootloader.c │ │ ├── cybootloader.icf │ │ ├── cycodeshareexport.ld │ │ ├── cycodeshareimport.ld │ │ ├── cycodeshareimport.scat │ │ ├── cydevice.h │ │ ├── cydevice_trm.h │ │ ├── cydevicegnu.inc │ │ ├── cydevicegnu_trm.inc │ │ ├── cydeviceiar.inc │ │ ├── cydeviceiar_trm.inc │ │ ├── cydevicerv.inc │ │ ├── cydevicerv_trm.inc │ │ ├── cydisabledsheets.h │ │ ├── cyfitter.h │ │ ├── cyfitter_cfg.c │ │ ├── cyfitter_cfg.h │ │ ├── cyfittergnu.inc │ │ ├── cyfitteriar.inc │ │ ├── cyfitterrv.inc │ │ ├── cymetadata.c │ │ ├── cypins.h │ │ ├── cytypes.h │ │ ├── cyutils.c │ │ ├── exported_symbols.txt │ │ ├── project.h │ │ └── renamed_symbols.txt ├── MagValve.cydwr ├── MagValve.cyprj ├── TopDesign │ └── TopDesign.cysch ├── config.h ├── cyapicallbacks.h └── main.c ├── Qt-build ├── README.md ├── build.cmd ├── mac-build.sh ├── qt6_configure.cmd ├── qt6build.cmd ├── travis-build-linux.sh └── ubuntu-build.sh ├── README.md ├── c2 ├── README.md ├── c2_protocol.h └── nvram.h ├── clean.cmd ├── clean.ps1 ├── cortex ├── PSoC5 │ ├── core.c │ ├── io.c │ └── settings.c ├── core.h ├── globals.h ├── gpio.c ├── gpio.h ├── hid.c ├── hid.h ├── io.h ├── pipeline.c ├── pipeline.h ├── scan.h ├── scan_adb.c ├── scan_capsense.c ├── scan_common.c ├── scan_cortron.c ├── scan_magvalve.c ├── scan_ohmically_slow.c ├── scan_ps2.c ├── scan_sun.c ├── scan_uswitch.c ├── settings.h ├── sup_serial.c └── sup_serial.h ├── misc ├── 5251.cfg ├── F122.cfg ├── PS2.cfg ├── PS2.l ├── README.md ├── cssk.cfg ├── f122.l ├── xtant.cfg └── xtant.l ├── uSwitch.cydsn ├── Generated_Source │ └── PSoC5 │ │ ├── Boot.c │ │ ├── Boot.h │ │ ├── BootIRQ.c │ │ ├── BootIRQ.h │ │ ├── BootPin.c │ │ ├── BootPin.h │ │ ├── BootPin_aliases.h │ │ ├── C0.c │ │ ├── C0.h │ │ ├── C1.c │ │ ├── C1.h │ │ ├── Cm3Iar.icf │ │ ├── Cm3RealView.scat │ │ ├── Cm3Start.c │ │ ├── Cols0_aliases.h │ │ ├── Cols1_aliases.h │ │ ├── CyBootAsmGnu.s │ │ ├── CyBootAsmIar.s │ │ ├── CyBootAsmRv.s │ │ ├── CyDmac.c │ │ ├── CyDmac.h │ │ ├── CyFlash.c │ │ ├── CyFlash.h │ │ ├── CyLib.c │ │ ├── CyLib.h │ │ ├── CySpc.c │ │ ├── CySpc.h │ │ ├── EEPROM.c │ │ ├── EEPROM.h │ │ ├── ExpHdr_aliases.h │ │ ├── ILO_Trim.c │ │ ├── ILO_Trim.h │ │ ├── ILO_Trim_CorrectionISR.c │ │ ├── ILO_Trim_CorrectionISR.h │ │ ├── ILO_Trim_PM.c │ │ ├── R0.c │ │ ├── R0.h │ │ ├── R1.c │ │ ├── R1.h │ │ ├── Rows0_aliases.h │ │ ├── Rows1_aliases.h │ │ ├── SenseIRQ.c │ │ ├── SenseIRQ.h │ │ ├── SuspendWD.c │ │ ├── SuspendWD.h │ │ ├── SuspendWD_PM.c │ │ ├── SysTimer.c │ │ ├── SysTimer.h │ │ ├── SysTimer_PM.c │ │ ├── TimerIRQ.c │ │ ├── TimerIRQ.h │ │ ├── USB.c │ │ ├── USB.h │ │ ├── USBSuspendIRQ.c │ │ ├── USBSuspendIRQ.h │ │ ├── USB_Dm.c │ │ ├── USB_Dm.h │ │ ├── USB_Dm_aliases.h │ │ ├── USB_Dp.c │ │ ├── USB_Dp.h │ │ ├── USB_Dp_aliases.h │ │ ├── USB_VBUS.c │ │ ├── USB_VBUS.h │ │ ├── USB_VBUS_aliases.h │ │ ├── USB_audio.c │ │ ├── USB_audio.h │ │ ├── USB_boot.c │ │ ├── USB_cdc.c │ │ ├── USB_cdc.h │ │ ├── USB_cdc.inf │ │ ├── USB_cls.c │ │ ├── USB_cydmac.h │ │ ├── USB_descr.c │ │ ├── USB_drv.c │ │ ├── USB_episr.c │ │ ├── USB_hid.c │ │ ├── USB_hid.h │ │ ├── USB_midi.c │ │ ├── USB_midi.h │ │ ├── USB_msc.c │ │ ├── USB_msc.h │ │ ├── USB_pm.c │ │ ├── USB_pvt.h │ │ ├── USB_std.c │ │ ├── USB_vnd.c │ │ ├── cm3gcc.ld │ │ ├── cmsis_armcc.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── core_cm3.h │ │ ├── core_cm3_psoc5.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── cyPm.c │ │ ├── cyPm.h │ │ ├── cy_em_eeprom.c │ │ ├── cy_em_eeprom.h │ │ ├── cybootloader.c │ │ ├── cybootloader.icf │ │ ├── cycodeshareexport.ld │ │ ├── cycodeshareimport.ld │ │ ├── cycodeshareimport.scat │ │ ├── cydevice.h │ │ ├── cydevice_trm.h │ │ ├── cydevicegnu.inc │ │ ├── cydevicegnu_trm.inc │ │ ├── cydeviceiar.inc │ │ ├── cydeviceiar_trm.inc │ │ ├── cydevicerv.inc │ │ ├── cydevicerv_trm.inc │ │ ├── cydisabledsheets.h │ │ ├── cyfitter.h │ │ ├── cyfitter_cfg.c │ │ ├── cyfitter_cfg.h │ │ ├── cyfittergnu.inc │ │ ├── cyfitteriar.inc │ │ ├── cyfitterrv.inc │ │ ├── cymetadata.c │ │ ├── cypins.h │ │ ├── cytypes.h │ │ ├── cyutils.c │ │ ├── exported_symbols.txt │ │ ├── project.h │ │ └── renamed_symbols.txt ├── TopDesign │ └── TopDesign.cysch ├── config.h ├── cyapicallbacks.h ├── main.c ├── uSwitch.cydwr └── uSwitch.cyprj └── uSwitch_gated.cydsn ├── Generated_Source └── PSoC5 │ ├── Boot.c │ ├── Boot.h │ ├── BootIRQ.c │ ├── BootIRQ.h │ ├── BootPin.c │ ├── BootPin.h │ ├── BootPin_aliases.h │ ├── C0.c │ ├── C0.h │ ├── Cm3Iar.icf │ ├── Cm3RealView.scat │ ├── Cm3Start.c │ ├── Cols0_aliases.h │ ├── CyBootAsmGnu.s │ ├── CyBootAsmIar.s │ ├── CyBootAsmRv.s │ ├── CyDmac.c │ ├── CyDmac.h │ ├── CyFlash.c │ ├── CyFlash.h │ ├── CyLib.c │ ├── CyLib.h │ ├── CySpc.c │ ├── CySpc.h │ ├── EEPROM.c │ ├── EEPROM.h │ ├── ExpHdr_aliases.h │ ├── FSW0.c │ ├── FSW0.h │ ├── FootSwitch0_aliases.h │ ├── ILO_Trim.c │ ├── ILO_Trim.h │ ├── ILO_Trim_CorrectionISR.c │ ├── ILO_Trim_CorrectionISR.h │ ├── ILO_Trim_PM.c │ ├── R0.c │ ├── R0.h │ ├── R0_PM.c │ ├── Rows0_aliases.h │ ├── SuspendWD.c │ ├── SuspendWD.h │ ├── SuspendWD_PM.c │ ├── SysTimer.c │ ├── SysTimer.h │ ├── SysTimer_PM.c │ ├── TimerIRQ.c │ ├── TimerIRQ.h │ ├── USB.c │ ├── USB.h │ ├── USBSuspendIRQ.c │ ├── USBSuspendIRQ.h │ ├── USB_Dm.c │ ├── USB_Dm.h │ ├── USB_Dm_aliases.h │ ├── USB_Dp.c │ ├── USB_Dp.h │ ├── USB_Dp_aliases.h │ ├── USB_VBUS.c │ ├── USB_VBUS.h │ ├── USB_VBUS_aliases.h │ ├── USB_audio.c │ ├── USB_audio.h │ ├── USB_boot.c │ ├── USB_cdc.c │ ├── USB_cdc.h │ ├── USB_cdc.inf │ ├── USB_cls.c │ ├── USB_cydmac.h │ ├── USB_descr.c │ ├── USB_drv.c │ ├── USB_episr.c │ ├── USB_hid.c │ ├── USB_hid.h │ ├── USB_midi.c │ ├── USB_midi.h │ ├── USB_msc.c │ ├── USB_msc.h │ ├── USB_pm.c │ ├── USB_pvt.h │ ├── USB_std.c │ ├── USB_vnd.c │ ├── cm3gcc.ld │ ├── cmsis_armcc.h │ ├── cmsis_compiler.h │ ├── cmsis_gcc.h │ ├── core_cm3.h │ ├── core_cm3_psoc5.h │ ├── core_cmFunc.h │ ├── core_cmInstr.h │ ├── cyPm.c │ ├── cyPm.h │ ├── cy_em_eeprom.c │ ├── cy_em_eeprom.h │ ├── cybootloader.c │ ├── cybootloader.icf │ ├── cycodeshareexport.ld │ ├── cycodeshareimport.ld │ ├── cycodeshareimport.scat │ ├── cydevice.h │ ├── cydevice_trm.h │ ├── cydevicegnu.inc │ ├── cydevicegnu_trm.inc │ ├── cydeviceiar.inc │ ├── cydeviceiar_trm.inc │ ├── cydevicerv.inc │ ├── cydevicerv_trm.inc │ ├── cydisabledsheets.h │ ├── cyfitter.h │ ├── cyfitter_cfg.c │ ├── cyfitter_cfg.h │ ├── cyfittergnu.inc │ ├── cyfitteriar.inc │ ├── cyfitterrv.inc │ ├── cymetadata.c │ ├── cypins.h │ ├── cytypes.h │ ├── cyutils.c │ ├── exported_symbols.txt │ ├── project.h │ └── renamed_symbols.txt ├── TopDesign └── TopDesign.cysch ├── config.h ├── cyapicallbacks.h ├── main.c ├── uSwitch_gated.cydwr └── uSwitch_gated.cyprj /.github/workflows/macbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/.github/workflows/macbuild.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/.travis.yml -------------------------------------------------------------------------------- /Bootloader.cydsn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/.gitignore -------------------------------------------------------------------------------- /Bootloader.cydsn/Bootloader.cydwr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Bootloader.cydwr -------------------------------------------------------------------------------- /Bootloader.cydsn/Bootloader.cyprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Bootloader.cyprj -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/Bootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/Bootloader.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/Bootloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/Bootloader.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/Cm3Iar.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/Cm3Iar.icf -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/Cm3Start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/Cm3Start.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/CyDmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/CyDmac.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/CyDmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/CyDmac.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/CyFlash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/CyFlash.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/CyFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/CyFlash.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/CyLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/CyLib.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/CyLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/CyLib.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/CySpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/CySpc.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/CySpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/CySpc.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_Dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_Dm.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_Dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_Dm.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_Dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_Dp.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_Dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_Dp.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_VBUS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_VBUS.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_VBUS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_VBUS.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_audio.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_audio.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_boot.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_cdc.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_cdc.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_cdc.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_cdc.inf -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_cls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_cls.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_cydmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_cydmac.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_descr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_descr.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_drv.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_episr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_episr.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_hid.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_hid.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_midi.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_midi.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_msc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_msc.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_msc.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_pm.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_pvt.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_std.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/USB_vnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/USB_vnd.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/cm3gcc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/cm3gcc.ld -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/cmsis_gcc.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/core_cm3.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/cyPm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/cyPm.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/cyPm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/cyPm.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/cycodeshareexport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/cycodeshareimport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/cycodeshareimport.scat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/cydevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/cydevice.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/cyfitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/cyfitter.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/cymetadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/cymetadata.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/cypins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/cypins.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/cytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/cytypes.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/cyutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/cyutils.c -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/exported_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/Generated_Source/PSoC5/project.h -------------------------------------------------------------------------------- /Bootloader.cydsn/Generated_Source/PSoC5/renamed_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bootloader.cydsn/TopDesign/TopDesign.cysch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/TopDesign/TopDesign.cysch -------------------------------------------------------------------------------- /Bootloader.cydsn/cyapicallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/cyapicallbacks.h -------------------------------------------------------------------------------- /Bootloader.cydsn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Bootloader.cydsn/main.c -------------------------------------------------------------------------------- /CSSK.cydsn/CSSK.cydwr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/CSSK.cydwr -------------------------------------------------------------------------------- /CSSK.cydsn/CSSK.cyprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/CSSK.cyprj -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ADC0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ADC0.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ADC0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ADC0.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ADC0_ExtVref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ADC0_ExtVref.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ADC0_ExtVref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ADC0_ExtVref.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ADC0_INT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ADC0_INT.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ADC0_IRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ADC0_IRQ.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ADC0_IRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ADC0_IRQ.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ADC0_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ADC0_PM.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/Boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/Boot.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/Boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/Boot.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/BootIRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/BootIRQ.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/BootIRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/BootIRQ.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/BootPin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/BootPin.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/BootPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/BootPin.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/BootPin_aliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/BootPin_aliases.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/Buf0_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/Buf0_dma.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/Buf0_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/Buf0_dma.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ChargeDelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ChargeDelay.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ChargeDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ChargeDelay.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ChargeDelay_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ChargeDelay_PM.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/Cm3Iar.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/Cm3Iar.icf -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/Cm3RealView.scat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/Cm3RealView.scat -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/Cm3Start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/Cm3Start.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ControlReg0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ControlReg0.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ControlReg0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ControlReg0.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ControlReg0_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ControlReg0_PM.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/CyBootAsmGnu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/CyBootAsmGnu.s -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/CyBootAsmIar.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/CyBootAsmIar.s -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/CyBootAsmRv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/CyBootAsmRv.s -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/CyDmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/CyDmac.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/CyDmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/CyDmac.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/CyFlash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/CyFlash.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/CyFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/CyFlash.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/CyLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/CyLib.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/CyLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/CyLib.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/CySpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/CySpc.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/CySpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/CySpc.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/DischargeDelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/DischargeDelay.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/DischargeDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/DischargeDelay.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/DriveReg0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/DriveReg0.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/DriveReg0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/DriveReg0.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/DriveReg0_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/DriveReg0_PM.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/DriveReg1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/DriveReg1.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/DriveReg1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/DriveReg1.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/DriveReg1_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/DriveReg1_PM.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/DriveReg2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/DriveReg2.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/DriveReg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/DriveReg2.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/DriveReg2_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/DriveReg2_PM.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/EEPROM.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/EEPROM.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/EoCIRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/EoCIRQ.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/EoCIRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/EoCIRQ.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ExpHdr_aliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ExpHdr_aliases.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/FinalBuf_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/FinalBuf_dma.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/FinalBuf_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/FinalBuf_dma.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ILO_Trim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ILO_Trim.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ILO_Trim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ILO_Trim.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ILO_Trim_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ILO_Trim_PM.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/PTK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/PTK.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/PTK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/PTK.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/PTK_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/PTK_PM.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ResultIRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ResultIRQ.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/ResultIRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/ResultIRQ.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/Sup_I2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/Sup_I2C.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/Sup_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/Sup_I2C.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/Sup_I2C_BOOT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/Sup_I2C_BOOT.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/Sup_I2C_INT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/Sup_I2C_INT.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/Sup_I2C_MASTER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/Sup_I2C_MASTER.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/Sup_I2C_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/Sup_I2C_PM.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/Sup_I2C_PVT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/Sup_I2C_PVT.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/Sup_I2C_SLAVE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/Sup_I2C_SLAVE.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/SuspendWD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/SuspendWD.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/SuspendWD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/SuspendWD.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/SuspendWD_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/SuspendWD_PM.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/SysTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/SysTimer.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/SysTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/SysTimer.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/SysTimer_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/SysTimer_PM.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/TimerIRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/TimerIRQ.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/TimerIRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/TimerIRQ.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USBSuspendIRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USBSuspendIRQ.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USBSuspendIRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USBSuspendIRQ.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_Dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_Dm.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_Dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_Dm.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_Dm_aliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_Dm_aliases.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_Dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_Dp.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_Dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_Dp.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_Dp_aliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_Dp_aliases.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_VBUS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_VBUS.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_VBUS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_VBUS.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_VBUS_aliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_VBUS_aliases.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_audio.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_audio.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_boot.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_cdc.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_cdc.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_cdc.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_cdc.inf -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_cls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_cls.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_cydmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_cydmac.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_descr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_descr.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_drv.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_episr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_episr.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_hid.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_hid.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_midi.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_midi.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_msc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_msc.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_msc.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_pm.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_pvt.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_std.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/USB_vnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/USB_vnd.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cm3gcc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cm3gcc.ld -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cmsis_armcc.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cmsis_compiler.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cmsis_gcc.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/core_cm3.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/core_cm3_psoc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/core_cm3_psoc5.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/core_cmFunc.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/core_cmInstr.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cyPm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cyPm.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cyPm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cyPm.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cy_em_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cy_em_eeprom.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cy_em_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cy_em_eeprom.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cybootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cybootloader.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cycodeshareexport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cycodeshareimport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cycodeshareimport.scat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cydevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cydevice.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cydevice_trm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cydevice_trm.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cydevicegnu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cydevicegnu.inc -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cydeviceiar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cydeviceiar.inc -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cydevicerv.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cydevicerv.inc -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cydevicerv_trm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cydevicerv_trm.inc -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cydisabledsheets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cydisabledsheets.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cyfitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cyfitter.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cyfitter_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cyfitter_cfg.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cyfitter_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cyfitter_cfg.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cyfittergnu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cyfittergnu.inc -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cyfitteriar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cyfitteriar.inc -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cyfitterrv.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cyfitterrv.inc -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cymetadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cymetadata.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cypins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cypins.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cytypes.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/cyutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/cyutils.c -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/exported_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/Generated_Source/PSoC5/project.h -------------------------------------------------------------------------------- /CSSK.cydsn/Generated_Source/PSoC5/renamed_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CSSK.cydsn/TopDesign/TopDesign.cysch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/TopDesign/TopDesign.cysch -------------------------------------------------------------------------------- /CSSK.cydsn/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/config.h -------------------------------------------------------------------------------- /CSSK.cydsn/cyapicallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/cyapicallbacks.h -------------------------------------------------------------------------------- /CSSK.cydsn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CSSK.cydsn/main.c -------------------------------------------------------------------------------- /Capsense.cydsn/Capsense.cydwr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Capsense.cydwr -------------------------------------------------------------------------------- /Capsense.cydsn/Capsense.cyprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Capsense.cyprj -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/ADC0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/ADC0.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/ADC0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/ADC0.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/ADC0_ExtVref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/ADC0_ExtVref.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/ADC0_ExtVref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/ADC0_ExtVref.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/ADC0_INT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/ADC0_INT.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/ADC0_IRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/ADC0_IRQ.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/ADC0_IRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/ADC0_IRQ.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/ADC0_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/ADC0_PM.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/Boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/Boot.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/Boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/Boot.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/BootIRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/BootIRQ.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/BootIRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/BootIRQ.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/BootPin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/BootPin.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/BootPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/BootPin.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/Buf0_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/Buf0_dma.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/Buf0_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/Buf0_dma.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/ChargeDelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/ChargeDelay.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/ChargeDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/ChargeDelay.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/Cm3Iar.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/Cm3Iar.icf -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/Cm3Start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/Cm3Start.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/ControlReg0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/ControlReg0.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/ControlReg0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/ControlReg0.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/CyBootAsmGnu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/CyBootAsmGnu.s -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/CyBootAsmIar.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/CyBootAsmIar.s -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/CyBootAsmRv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/CyBootAsmRv.s -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/CyDmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/CyDmac.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/CyDmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/CyDmac.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/CyFlash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/CyFlash.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/CyFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/CyFlash.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/CyLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/CyLib.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/CyLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/CyLib.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/CySpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/CySpc.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/CySpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/CySpc.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/DriveReg0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/DriveReg0.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/DriveReg0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/DriveReg0.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/DriveReg0_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/DriveReg0_PM.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/DriveReg1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/DriveReg1.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/DriveReg1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/DriveReg1.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/DriveReg1_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/DriveReg1_PM.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/DriveReg2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/DriveReg2.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/DriveReg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/DriveReg2.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/DriveReg2_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/DriveReg2_PM.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/EEPROM.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/EEPROM.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/EoCIRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/EoCIRQ.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/EoCIRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/EoCIRQ.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/FinalBuf_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/FinalBuf_dma.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/FinalBuf_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/FinalBuf_dma.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/ILO_Trim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/ILO_Trim.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/ILO_Trim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/ILO_Trim.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/ILO_Trim_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/ILO_Trim_PM.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/PTK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/PTK.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/PTK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/PTK.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/PTK_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/PTK_PM.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/ResultIRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/ResultIRQ.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/ResultIRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/ResultIRQ.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/Sup_I2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/Sup_I2C.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/Sup_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/Sup_I2C.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/Sup_I2C_BOOT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/Sup_I2C_BOOT.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/Sup_I2C_INT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/Sup_I2C_INT.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/Sup_I2C_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/Sup_I2C_PM.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/Sup_I2C_PVT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/Sup_I2C_PVT.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/SuspendWD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/SuspendWD.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/SuspendWD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/SuspendWD.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/SuspendWD_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/SuspendWD_PM.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/SysTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/SysTimer.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/SysTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/SysTimer.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/SysTimer_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/SysTimer_PM.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/TimerIRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/TimerIRQ.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/TimerIRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/TimerIRQ.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_Dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_Dm.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_Dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_Dm.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_Dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_Dp.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_Dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_Dp.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_VBUS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_VBUS.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_VBUS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_VBUS.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_audio.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_audio.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_boot.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_cdc.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_cdc.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_cdc.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_cdc.inf -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_cls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_cls.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_cydmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_cydmac.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_descr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_descr.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_drv.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_episr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_episr.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_hid.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_hid.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_midi.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_midi.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_msc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_msc.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_msc.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_pm.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_pvt.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_std.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/USB_vnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/USB_vnd.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cm3gcc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cm3gcc.ld -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cmsis_armcc.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cmsis_gcc.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/core_cm3.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/core_cmFunc.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/core_cmInstr.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cyPm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cyPm.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cyPm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cyPm.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cy_em_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cy_em_eeprom.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cy_em_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cy_em_eeprom.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cybootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cybootloader.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cycodeshareexport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cycodeshareimport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cycodeshareimport.scat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cydevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cydevice.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cydevice_trm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cydevice_trm.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cydevicerv.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cydevicerv.inc -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cyfitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cyfitter.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cyfitter_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cyfitter_cfg.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cyfitter_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cyfitter_cfg.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cyfitterrv.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cyfitterrv.inc -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cymetadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cymetadata.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cypins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cypins.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cytypes.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/cyutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/cyutils.c -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/exported_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/Generated_Source/PSoC5/project.h -------------------------------------------------------------------------------- /Capsense.cydsn/Generated_Source/PSoC5/renamed_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Capsense.cydsn/TopDesign/TopDesign.cysch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/TopDesign/TopDesign.cysch -------------------------------------------------------------------------------- /Capsense.cydsn/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/config.h -------------------------------------------------------------------------------- /Capsense.cydsn/cyapicallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/cyapicallbacks.h -------------------------------------------------------------------------------- /Capsense.cydsn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Capsense.cydsn/main.c -------------------------------------------------------------------------------- /CommonSense.cywrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/CommonSense.cywrk -------------------------------------------------------------------------------- /DefaultFirmware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/DefaultFirmware.md -------------------------------------------------------------------------------- /FlightController-icons/FlightController.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController-icons/FlightController.ico -------------------------------------------------------------------------------- /FlightController-icons/icon_1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController-icons/icon_1024x1024.png -------------------------------------------------------------------------------- /FlightController-icons/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController-icons/icon_128x128.png -------------------------------------------------------------------------------- /FlightController-icons/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController-icons/icon_16x16.png -------------------------------------------------------------------------------- /FlightController-icons/icon_24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController-icons/icon_24x24.png -------------------------------------------------------------------------------- /FlightController-icons/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController-icons/icon_256x256.png -------------------------------------------------------------------------------- /FlightController-icons/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController-icons/icon_32x32.png -------------------------------------------------------------------------------- /FlightController-icons/icon_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController-icons/icon_48x48.png -------------------------------------------------------------------------------- /FlightController-icons/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController-icons/icon_512x512.png -------------------------------------------------------------------------------- /FlightController-icons/icon_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController-icons/icon_64x64.png -------------------------------------------------------------------------------- /FlightController/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/.gitignore -------------------------------------------------------------------------------- /FlightController/CyACD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/CyACD.cpp -------------------------------------------------------------------------------- /FlightController/CyACD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/CyACD.h -------------------------------------------------------------------------------- /FlightController/Delays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Delays.cpp -------------------------------------------------------------------------------- /FlightController/Delays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Delays.h -------------------------------------------------------------------------------- /FlightController/DeviceConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/DeviceConfig.cpp -------------------------------------------------------------------------------- /FlightController/DeviceConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/DeviceConfig.h -------------------------------------------------------------------------------- /FlightController/DeviceInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/DeviceInterface.cpp -------------------------------------------------------------------------------- /FlightController/DeviceInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/DeviceInterface.h -------------------------------------------------------------------------------- /FlightController/DeviceSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/DeviceSelector.cpp -------------------------------------------------------------------------------- /FlightController/DeviceSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/DeviceSelector.h -------------------------------------------------------------------------------- /FlightController/DeviceSelector.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/DeviceSelector.ui -------------------------------------------------------------------------------- /FlightController/Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Events.cpp -------------------------------------------------------------------------------- /FlightController/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Events.h -------------------------------------------------------------------------------- /FlightController/FirmwareLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/FirmwareLoader.cpp -------------------------------------------------------------------------------- /FlightController/FirmwareLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/FirmwareLoader.h -------------------------------------------------------------------------------- /FlightController/FlightController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/FlightController.cpp -------------------------------------------------------------------------------- /FlightController/FlightController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/FlightController.h -------------------------------------------------------------------------------- /FlightController/FlightController.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/FlightController.pro -------------------------------------------------------------------------------- /FlightController/FlightController.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/FlightController.ui -------------------------------------------------------------------------------- /FlightController/Hardware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Hardware.cpp -------------------------------------------------------------------------------- /FlightController/Hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Hardware.h -------------------------------------------------------------------------------- /FlightController/Hardware.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Hardware.ui -------------------------------------------------------------------------------- /FlightController/LayerCondition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/LayerCondition.cpp -------------------------------------------------------------------------------- /FlightController/LayerCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/LayerCondition.h -------------------------------------------------------------------------------- /FlightController/LayerConditions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/LayerConditions.cpp -------------------------------------------------------------------------------- /FlightController/LayerConditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/LayerConditions.h -------------------------------------------------------------------------------- /FlightController/Layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Layout.cpp -------------------------------------------------------------------------------- /FlightController/Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Layout.h -------------------------------------------------------------------------------- /FlightController/Layout.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Layout.ui -------------------------------------------------------------------------------- /FlightController/LogViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/LogViewer.cpp -------------------------------------------------------------------------------- /FlightController/LogViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/LogViewer.h -------------------------------------------------------------------------------- /FlightController/Macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Macro.cpp -------------------------------------------------------------------------------- /FlightController/Macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Macro.h -------------------------------------------------------------------------------- /FlightController/Macros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Macros.cpp -------------------------------------------------------------------------------- /FlightController/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Macros.h -------------------------------------------------------------------------------- /FlightController/Macros.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Macros.ui -------------------------------------------------------------------------------- /FlightController/Pedals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Pedals.cpp -------------------------------------------------------------------------------- /FlightController/Pedals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Pedals.h -------------------------------------------------------------------------------- /FlightController/Pedals.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Pedals.ui -------------------------------------------------------------------------------- /FlightController/ScancodeList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/ScancodeList.cpp -------------------------------------------------------------------------------- /FlightController/ScancodeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/ScancodeList.h -------------------------------------------------------------------------------- /FlightController/Telemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Telemetry.cpp -------------------------------------------------------------------------------- /FlightController/Telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Telemetry.h -------------------------------------------------------------------------------- /FlightController/Telemetry.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Telemetry.ui -------------------------------------------------------------------------------- /FlightController/Thresholds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Thresholds.cpp -------------------------------------------------------------------------------- /FlightController/Thresholds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Thresholds.h -------------------------------------------------------------------------------- /FlightController/Thresholds.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/Thresholds.ui -------------------------------------------------------------------------------- /FlightController/WindowsIcon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/WindowsIcon.rc -------------------------------------------------------------------------------- /FlightController/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/main.cpp -------------------------------------------------------------------------------- /FlightController/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/FlightController/settings.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/AEKII-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/AEKII-config.cfg -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/ADB_Data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/ADB_Data.c -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/ADB_Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/ADB_Data.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/Boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/Boot.c -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/Boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/Boot.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/BootIRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/BootIRQ.c -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/BootIRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/BootIRQ.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/BootPin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/BootPin.c -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/BootPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/BootPin.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/Cm3Iar.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/Cm3Iar.icf -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/Cm3Start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/Cm3Start.c -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/CyDmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/CyDmac.c -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/CyDmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/CyDmac.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/CyLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/CyLib.c -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/CyLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/CyLib.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/CySpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/CySpc.c -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/CySpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/CySpc.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/EEPROM.c -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/EEPROM.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/N_UART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/N_UART.c -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/N_UART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/N_UART.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/P_UART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/P_UART.c -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/P_UART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/P_UART.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/USB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/USB.c -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/USB.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/USB_Dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/USB_Dm.c -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/USB_Dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/USB_Dm.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/USB_Dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/USB_Dp.c -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/USB_Dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/USB_Dp.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/USB_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/USB_pm.c -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/cyPm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/cyPm.c -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/cyPm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/cyPm.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/cycodeshareexport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/cycodeshareimport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/cycodeshareimport.scat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/cypins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/Generated_Source/PSoC5/cypins.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/exported_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/Generated_Source/PSoC5/renamed_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/KitProg-ADB.cydwr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/KitProg-ADB.cydwr -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/KitProg-ADB.cyprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/KitProg-ADB.cyprj -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/TopDesign/TopDesign.cysch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/TopDesign/TopDesign.cysch -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/config.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/cyapicallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/cyapicallbacks.h -------------------------------------------------------------------------------- /KitProg-ADB.cydsn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-ADB.cydsn/main.c -------------------------------------------------------------------------------- /KitProg-Cortron.cydsn/Generated_Source/PSoC5/cycodeshareexport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-Cortron.cydsn/Generated_Source/PSoC5/cycodeshareimport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-Cortron.cydsn/Generated_Source/PSoC5/cycodeshareimport.scat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-Cortron.cydsn/Generated_Source/PSoC5/exported_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-Cortron.cydsn/Generated_Source/PSoC5/renamed_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-Cortron.cydsn/KitProg-Cortron.cydwr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Cortron.cydsn/KitProg-Cortron.cydwr -------------------------------------------------------------------------------- /KitProg-Cortron.cydsn/KitProg-Cortron.cyprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Cortron.cydsn/KitProg-Cortron.cyprj -------------------------------------------------------------------------------- /KitProg-Cortron.cydsn/TopDesign/TopDesign.cysch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Cortron.cydsn/TopDesign/TopDesign.cysch -------------------------------------------------------------------------------- /KitProg-Cortron.cydsn/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Cortron.cydsn/config.h -------------------------------------------------------------------------------- /KitProg-Cortron.cydsn/cyapicallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Cortron.cydsn/cyapicallbacks.h -------------------------------------------------------------------------------- /KitProg-Cortron.cydsn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Cortron.cydsn/main.c -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/Boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/Boot.c -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/Boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/Boot.h -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/CyDmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/CyDmac.c -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/CyDmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/CyDmac.h -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/CyLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/CyLib.c -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/CyLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/CyLib.h -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/CySpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/CySpc.c -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/CySpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/CySpc.h -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/EEPROM.c -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/EEPROM.h -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/USB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/USB.c -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/USB.h -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/USB_Dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/USB_Dm.c -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/USB_Dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/USB_Dm.h -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/USB_Dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/USB_Dp.c -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/USB_Dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/USB_Dp.h -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/USB_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/USB_pm.c -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/cyPm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/cyPm.c -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/cyPm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/cyPm.h -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/cycodeshareexport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/cycodeshareimport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/cycodeshareimport.scat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/cypins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/Generated_Source/PSoC5/cypins.h -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/exported_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/Generated_Source/PSoC5/renamed_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/KitProg-PS2.cydwr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/KitProg-PS2.cydwr -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/KitProg-PS2.cyprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/KitProg-PS2.cyprj -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/TopDesign/TopDesign.cysch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/TopDesign/TopDesign.cysch -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/config.h -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/cyapicallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/cyapicallbacks.h -------------------------------------------------------------------------------- /KitProg-PS2.cydsn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-PS2.cydsn/main.c -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/Boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/Boot.c -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/Boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/Boot.h -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/CyDmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/CyDmac.c -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/CyDmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/CyDmac.h -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/CyLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/CyLib.c -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/CyLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/CyLib.h -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/CySpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/CySpc.c -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/CySpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/CySpc.h -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/EEPROM.c -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/EEPROM.h -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/N_UART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/N_UART.c -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/N_UART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/N_UART.h -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/P_UART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/P_UART.c -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/P_UART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/P_UART.h -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/USB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/USB.c -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/USB.h -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/USB_Dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/USB_Dm.c -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/USB_Dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/USB_Dm.h -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/USB_Dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/USB_Dp.c -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/USB_Dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/USB_Dp.h -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/USB_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/USB_pm.c -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/cyPm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/cyPm.c -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/cyPm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/cyPm.h -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/cycodeshareexport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/cycodeshareimport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/cycodeshareimport.scat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/cypins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/Generated_Source/PSoC5/cypins.h -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/exported_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/Generated_Source/PSoC5/renamed_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/KitProg-Sun.cydwr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/KitProg-Sun.cydwr -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/KitProg-Sun.cyprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/KitProg-Sun.cyprj -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/SunType5c.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/SunType5c.cfg -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/TopDesign/TopDesign.cysch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/TopDesign/TopDesign.cysch -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/config.h -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/cyapicallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/cyapicallbacks.h -------------------------------------------------------------------------------- /KitProg-Sun.cydsn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-Sun.cydsn/main.c -------------------------------------------------------------------------------- /KitProg-common/KitProg_Bootloader.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-common/KitProg_Bootloader.elf -------------------------------------------------------------------------------- /KitProg-common/KitProg_Bootloader.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-common/KitProg_Bootloader.hex -------------------------------------------------------------------------------- /KitProg-common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/KitProg-common/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/LICENSE -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Boot.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Boot.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/BootIRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/BootIRQ.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/BootIRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/BootIRQ.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/BootPin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/BootPin.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/BootPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/BootPin.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Cm3Iar.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Cm3Iar.icf -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Cm3Start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Cm3Start.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Cmp0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Cmp0.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Cmp0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Cmp0.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Cmp0_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Cmp0_PM.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Cmp1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Cmp1.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Cmp1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Cmp1.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Cmp1_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Cmp1_PM.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Cmp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Cmp2.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Cmp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Cmp2.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Cmp2_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Cmp2_PM.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Cmp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Cmp3.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Cmp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Cmp3.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Cmp3_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Cmp3_PM.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/CyDmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/CyDmac.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/CyDmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/CyDmac.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/CyFlash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/CyFlash.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/CyFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/CyFlash.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/CyLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/CyLib.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/CyLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/CyLib.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/CySpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/CySpc.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/CySpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/CySpc.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/DriveReg0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/DriveReg0.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/DriveReg0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/DriveReg0.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/DriveReg1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/DriveReg1.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/DriveReg1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/DriveReg1.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/EEPROM.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/EEPROM.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/ILO_Trim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/ILO_Trim.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/ILO_Trim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/ILO_Trim.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/ResultIRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/ResultIRQ.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/ResultIRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/ResultIRQ.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/SensorReg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/SensorReg.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/SensorReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/SensorReg.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Sup_I2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Sup_I2C.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/Sup_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/Sup_I2C.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/SuspendWD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/SuspendWD.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/SuspendWD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/SuspendWD.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/SysTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/SysTimer.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/SysTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/SysTimer.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/TimerIRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/TimerIRQ.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/TimerIRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/TimerIRQ.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_Dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_Dm.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_Dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_Dm.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_Dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_Dp.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_Dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_Dp.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_VBUS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_VBUS.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_VBUS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_VBUS.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_audio.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_audio.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_boot.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_cdc.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_cdc.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_cdc.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_cdc.inf -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_cls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_cls.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_descr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_descr.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_drv.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_episr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_episr.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_hid.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_hid.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_midi.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_midi.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_msc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_msc.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_msc.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_pm.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_pvt.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_std.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/USB_vnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/USB_vnd.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/VDAC0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/VDAC0.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/VDAC0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/VDAC0.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/VDAC0_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/VDAC0_PM.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/VDAC1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/VDAC1.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/VDAC1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/VDAC1.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/VDAC1_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/VDAC1_PM.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/VDAC2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/VDAC2.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/VDAC2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/VDAC2.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/VDAC2_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/VDAC2_PM.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/VDAC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/VDAC3.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/VDAC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/VDAC3.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/VDAC3_PM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/VDAC3_PM.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/cm3gcc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/cm3gcc.ld -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/cmsis_gcc.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/core_cm3.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/cyPm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/cyPm.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/cyPm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/cyPm.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/cycodeshareexport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/cycodeshareimport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/cycodeshareimport.scat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/cydevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/cydevice.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/cyfitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/cyfitter.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/cypins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/cypins.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/cytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/cytypes.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/cyutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/cyutils.c -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/exported_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/Generated_Source/PSoC5/project.h -------------------------------------------------------------------------------- /MagValve.cydsn/Generated_Source/PSoC5/renamed_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MagValve.cydsn/MagValve.cydwr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/MagValve.cydwr -------------------------------------------------------------------------------- /MagValve.cydsn/MagValve.cyprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/MagValve.cyprj -------------------------------------------------------------------------------- /MagValve.cydsn/TopDesign/TopDesign.cysch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/TopDesign/TopDesign.cysch -------------------------------------------------------------------------------- /MagValve.cydsn/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/config.h -------------------------------------------------------------------------------- /MagValve.cydsn/cyapicallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/cyapicallbacks.h -------------------------------------------------------------------------------- /MagValve.cydsn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/MagValve.cydsn/main.c -------------------------------------------------------------------------------- /Qt-build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Qt-build/README.md -------------------------------------------------------------------------------- /Qt-build/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Qt-build/build.cmd -------------------------------------------------------------------------------- /Qt-build/mac-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Qt-build/mac-build.sh -------------------------------------------------------------------------------- /Qt-build/qt6_configure.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Qt-build/qt6_configure.cmd -------------------------------------------------------------------------------- /Qt-build/qt6build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Qt-build/qt6build.cmd -------------------------------------------------------------------------------- /Qt-build/travis-build-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Qt-build/travis-build-linux.sh -------------------------------------------------------------------------------- /Qt-build/ubuntu-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/Qt-build/ubuntu-build.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/README.md -------------------------------------------------------------------------------- /c2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/c2/README.md -------------------------------------------------------------------------------- /c2/c2_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/c2/c2_protocol.h -------------------------------------------------------------------------------- /c2/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/c2/nvram.h -------------------------------------------------------------------------------- /clean.cmd: -------------------------------------------------------------------------------- 1 | powershell ./clean.ps1 -------------------------------------------------------------------------------- /clean.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/clean.ps1 -------------------------------------------------------------------------------- /cortex/PSoC5/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/PSoC5/core.c -------------------------------------------------------------------------------- /cortex/PSoC5/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/PSoC5/io.c -------------------------------------------------------------------------------- /cortex/PSoC5/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/PSoC5/settings.c -------------------------------------------------------------------------------- /cortex/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/core.h -------------------------------------------------------------------------------- /cortex/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/globals.h -------------------------------------------------------------------------------- /cortex/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/gpio.c -------------------------------------------------------------------------------- /cortex/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/gpio.h -------------------------------------------------------------------------------- /cortex/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/hid.c -------------------------------------------------------------------------------- /cortex/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/hid.h -------------------------------------------------------------------------------- /cortex/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/io.h -------------------------------------------------------------------------------- /cortex/pipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/pipeline.c -------------------------------------------------------------------------------- /cortex/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/pipeline.h -------------------------------------------------------------------------------- /cortex/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/scan.h -------------------------------------------------------------------------------- /cortex/scan_adb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/scan_adb.c -------------------------------------------------------------------------------- /cortex/scan_capsense.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/scan_capsense.c -------------------------------------------------------------------------------- /cortex/scan_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/scan_common.c -------------------------------------------------------------------------------- /cortex/scan_cortron.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/scan_cortron.c -------------------------------------------------------------------------------- /cortex/scan_magvalve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/scan_magvalve.c -------------------------------------------------------------------------------- /cortex/scan_ohmically_slow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/scan_ohmically_slow.c -------------------------------------------------------------------------------- /cortex/scan_ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/scan_ps2.c -------------------------------------------------------------------------------- /cortex/scan_sun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/scan_sun.c -------------------------------------------------------------------------------- /cortex/scan_uswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/scan_uswitch.c -------------------------------------------------------------------------------- /cortex/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/settings.h -------------------------------------------------------------------------------- /cortex/sup_serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/sup_serial.c -------------------------------------------------------------------------------- /cortex/sup_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/cortex/sup_serial.h -------------------------------------------------------------------------------- /misc/5251.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/misc/5251.cfg -------------------------------------------------------------------------------- /misc/F122.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/misc/F122.cfg -------------------------------------------------------------------------------- /misc/PS2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/misc/PS2.cfg -------------------------------------------------------------------------------- /misc/PS2.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/misc/PS2.l -------------------------------------------------------------------------------- /misc/README.md: -------------------------------------------------------------------------------- 1 | # USE AT YOUR OWN RISK 2 | 3 | If things don't work - follow the main README. 4 | -------------------------------------------------------------------------------- /misc/cssk.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/misc/cssk.cfg -------------------------------------------------------------------------------- /misc/f122.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/misc/f122.l -------------------------------------------------------------------------------- /misc/xtant.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/misc/xtant.cfg -------------------------------------------------------------------------------- /misc/xtant.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/misc/xtant.l -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/Boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/Boot.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/Boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/Boot.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/BootIRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/BootIRQ.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/BootIRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/BootIRQ.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/BootPin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/BootPin.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/BootPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/BootPin.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/C0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/C0.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/C0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/C0.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/C1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/C1.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/C1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/C1.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/Cm3Iar.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/Cm3Iar.icf -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/Cm3Start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/Cm3Start.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/CyDmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/CyDmac.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/CyDmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/CyDmac.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/CyFlash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/CyFlash.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/CyFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/CyFlash.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/CyLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/CyLib.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/CyLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/CyLib.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/CySpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/CySpc.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/CySpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/CySpc.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/EEPROM.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/EEPROM.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/ILO_Trim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/ILO_Trim.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/ILO_Trim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/ILO_Trim.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/R0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/R0.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/R0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/R0.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/R1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/R1.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/R1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/R1.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/SenseIRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/SenseIRQ.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/SenseIRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/SenseIRQ.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/SuspendWD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/SuspendWD.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/SuspendWD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/SuspendWD.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/SysTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/SysTimer.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/SysTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/SysTimer.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/TimerIRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/TimerIRQ.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/TimerIRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/TimerIRQ.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_Dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_Dm.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_Dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_Dm.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_Dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_Dp.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_Dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_Dp.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_VBUS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_VBUS.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_VBUS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_VBUS.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_audio.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_audio.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_boot.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_cdc.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_cdc.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_cdc.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_cdc.inf -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_cls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_cls.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_cydmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_cydmac.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_descr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_descr.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_drv.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_episr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_episr.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_hid.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_hid.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_midi.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_midi.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_msc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_msc.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_msc.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_pm.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_pvt.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_std.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/USB_vnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/USB_vnd.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/cm3gcc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/cm3gcc.ld -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/cmsis_gcc.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/core_cm3.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/cyPm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/cyPm.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/cyPm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/cyPm.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/cycodeshareexport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/cycodeshareimport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/cycodeshareimport.scat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/cydevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/cydevice.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/cyfitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/cyfitter.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/cymetadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/cymetadata.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/cypins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/cypins.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/cytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/cytypes.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/cyutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/cyutils.c -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/exported_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/Generated_Source/PSoC5/project.h -------------------------------------------------------------------------------- /uSwitch.cydsn/Generated_Source/PSoC5/renamed_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uSwitch.cydsn/TopDesign/TopDesign.cysch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/TopDesign/TopDesign.cysch -------------------------------------------------------------------------------- /uSwitch.cydsn/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/config.h -------------------------------------------------------------------------------- /uSwitch.cydsn/cyapicallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/cyapicallbacks.h -------------------------------------------------------------------------------- /uSwitch.cydsn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/main.c -------------------------------------------------------------------------------- /uSwitch.cydsn/uSwitch.cydwr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/uSwitch.cydwr -------------------------------------------------------------------------------- /uSwitch.cydsn/uSwitch.cyprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch.cydsn/uSwitch.cyprj -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/Generated_Source/PSoC5/Boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/Generated_Source/PSoC5/Boot.c -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/Generated_Source/PSoC5/Boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/Generated_Source/PSoC5/Boot.h -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/Generated_Source/PSoC5/C0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/Generated_Source/PSoC5/C0.c -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/Generated_Source/PSoC5/C0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/Generated_Source/PSoC5/C0.h -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/Generated_Source/PSoC5/FSW0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/Generated_Source/PSoC5/FSW0.c -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/Generated_Source/PSoC5/FSW0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/Generated_Source/PSoC5/FSW0.h -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/Generated_Source/PSoC5/R0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/Generated_Source/PSoC5/R0.c -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/Generated_Source/PSoC5/R0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/Generated_Source/PSoC5/R0.h -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/Generated_Source/PSoC5/USB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/Generated_Source/PSoC5/USB.c -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/Generated_Source/PSoC5/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/Generated_Source/PSoC5/USB.h -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/Generated_Source/PSoC5/cyPm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/Generated_Source/PSoC5/cyPm.c -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/Generated_Source/PSoC5/cyPm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/Generated_Source/PSoC5/cyPm.h -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/Generated_Source/PSoC5/cycodeshareexport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/Generated_Source/PSoC5/cycodeshareimport.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/Generated_Source/PSoC5/cycodeshareimport.scat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/Generated_Source/PSoC5/exported_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/Generated_Source/PSoC5/renamed_symbols.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/TopDesign/TopDesign.cysch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/TopDesign/TopDesign.cysch -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/config.h -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/cyapicallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/cyapicallbacks.h -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/main.c -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/uSwitch_gated.cydwr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/uSwitch_gated.cydwr -------------------------------------------------------------------------------- /uSwitch_gated.cydsn/uSwitch_gated.cyprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmaone/CommonSense/HEAD/uSwitch_gated.cydsn/uSwitch_gated.cyprj --------------------------------------------------------------------------------