├── 3D ├── .gitignore ├── Hexiwear.123dx ├── Hexiwear.stl ├── Mikroelektronika 3D Files.url ├── QiCharger.123dx ├── QiCharger.stl └── readme.txt ├── Hardware ├── DebugDocking PCB │ ├── DebugPcb_Layout.pdf │ ├── DebugPcb_Schematic.PDF │ └── readme.txt └── DockingStation PCB │ ├── Schema_Demonstrator_PCB.pdf │ └── Schema_Dockingstation_PCB.pdf ├── KDS ├── Hexiwear_Eyes │ ├── .cproject │ ├── .gitignore │ ├── .project │ ├── Eyes │ │ ├── README.md │ │ └── convert │ │ │ ├── defaultEye │ │ │ ├── iris.png │ │ │ ├── lower.png │ │ │ ├── sclera.png │ │ │ └── upper.png │ │ │ ├── dragonEye │ │ │ ├── dragonPupilMap.png │ │ │ ├── iris.png │ │ │ ├── lower.png │ │ │ ├── sclera.png │ │ │ └── upper.png │ │ │ ├── goatEye │ │ │ ├── goatPupilMap.png │ │ │ ├── iris.png │ │ │ ├── lower.png │ │ │ ├── sclera.png │ │ │ └── upper.png │ │ │ ├── noScleraEye │ │ │ ├── iris.png │ │ │ ├── lower.png │ │ │ ├── sclera.png │ │ │ └── upper.png │ │ │ └── tablegen.py │ ├── ProcessorExpert.pe │ ├── Project_Settings │ │ ├── Debugger │ │ │ ├── Hexiwear_Eyes_Debug_PNE.launch │ │ │ └── Hexiwear_Eyes_Debug_Segger.launch │ │ ├── Linker_Files │ │ │ └── ProcessorExpert.ld │ │ └── Startup_Code │ │ │ └── startup.c │ ├── Sources │ │ ├── Application.c │ │ ├── Application.h │ │ ├── Events.c │ │ ├── Events.h │ │ ├── defaultEye.h │ │ ├── dragonEye.h │ │ ├── goatEye.h │ │ ├── main.c │ │ ├── noScleraEye.h │ │ ├── uncannyEyes.c │ │ └── uncannyEyes.h │ ├── Static_Code │ │ ├── IO_Map │ │ │ └── MK64F12.h │ │ ├── PDD │ │ │ ├── ADC_PDD.h │ │ │ ├── CAN_PDD.h │ │ │ ├── CMP_PDD.h │ │ │ ├── CMT_PDD.h │ │ │ ├── CRC_PDD.h │ │ │ ├── DAC_PDD.h │ │ │ ├── DMAMUX_PDD.h │ │ │ ├── DMA_PDD.h │ │ │ ├── ENET_PDD.h │ │ │ ├── EWM_PDD.h │ │ │ ├── FMC_PDD.h │ │ │ ├── FTFE_PDD.h │ │ │ ├── FTM_PDD.h │ │ │ ├── GPIO_PDD.h │ │ │ ├── I2C_PDD.h │ │ │ ├── LLWU_PDD.h │ │ │ ├── LPTMR_PDD.h │ │ │ ├── MCG_PDD.h │ │ │ ├── MCM_PDD.h │ │ │ ├── OSC_PDD.h │ │ │ ├── PDB_PDD.h │ │ │ ├── PDD_Types.h │ │ │ ├── PIT_PDD.h │ │ │ ├── PMC_PDD.h │ │ │ ├── PORT_PDD.h │ │ │ ├── RCM_PDD.h │ │ │ ├── RNGA_PDD.h │ │ │ ├── RTC_PDD.h │ │ │ ├── SAI_PDD.h │ │ │ ├── SCB_PDD.h │ │ │ ├── SDHC_PDD.h │ │ │ ├── SIM_PDD.h │ │ │ ├── SMC_PDD.h │ │ │ ├── SPI_PDD.h │ │ │ ├── SysTick_PDD.h │ │ │ ├── UART_PDD.h │ │ │ ├── USBDCD_PDD.h │ │ │ ├── USB_PDD.h │ │ │ ├── VREF_PDD.h │ │ │ └── WDOG_PDD.h │ │ └── System │ │ │ ├── CPU_Init.c │ │ │ ├── CPU_Init.h │ │ │ ├── PDD_Includes.h │ │ │ ├── Peripherals_Init.c │ │ │ ├── Peripherals_Init.h │ │ │ └── Vectors.c │ └── readme.txt ├── Hexiwear_PEx_2_SDKv2 │ ├── .cproject │ ├── .gitignore │ ├── .project │ ├── ProcessorExpert.pe │ ├── Project_Settings │ │ ├── Debugger │ │ │ ├── Hexiwear_PEx_2_SDKv2_Debug_OpenOCD.launch │ │ │ ├── Hexiwear_PEx_2_SDKv2_Debug_PNE.launch │ │ │ └── Hexiwear_PEx_2_SDKv2_Debug_Segger.launch │ │ ├── Linker_Files │ │ │ └── ProcessorExpert.ld │ │ └── Startup_Code │ │ │ └── startup.c │ ├── Sources │ │ ├── Events.c │ │ ├── Events.h │ │ └── main.c │ └── Static_Code │ │ ├── IO_Map │ │ └── MK64F12.h │ │ ├── PDD │ │ ├── ADC_PDD.h │ │ ├── CAN_PDD.h │ │ ├── CMP_PDD.h │ │ ├── CMT_PDD.h │ │ ├── CRC_PDD.h │ │ ├── DAC_PDD.h │ │ ├── DMAMUX_PDD.h │ │ ├── DMA_PDD.h │ │ ├── ENET_PDD.h │ │ ├── EWM_PDD.h │ │ ├── FMC_PDD.h │ │ ├── FTFE_PDD.h │ │ ├── FTM_PDD.h │ │ ├── GPIO_PDD.h │ │ ├── I2C_PDD.h │ │ ├── LLWU_PDD.h │ │ ├── LPTMR_PDD.h │ │ ├── MCG_PDD.h │ │ ├── MCM_PDD.h │ │ ├── OSC_PDD.h │ │ ├── PDB_PDD.h │ │ ├── PDD_Types.h │ │ ├── PIT_PDD.h │ │ ├── PMC_PDD.h │ │ ├── PORT_PDD.h │ │ ├── RCM_PDD.h │ │ ├── RNGA_PDD.h │ │ ├── RTC_PDD.h │ │ ├── SAI_PDD.h │ │ ├── SCB_PDD.h │ │ ├── SDHC_PDD.h │ │ ├── SIM_PDD.h │ │ ├── SMC_PDD.h │ │ ├── SPI_PDD.h │ │ ├── SysTick_PDD.h │ │ ├── UART_PDD.h │ │ ├── USBDCD_PDD.h │ │ ├── USB_PDD.h │ │ ├── VREF_PDD.h │ │ └── WDOG_PDD.h │ │ └── System │ │ ├── CPU_Init.c │ │ ├── CPU_Init.h │ │ ├── PDD_Includes.h │ │ ├── Peripherals_Init.c │ │ ├── Peripherals_Init.h │ │ └── Vectors.c ├── Hexiwear_PEx_Dockingstation │ ├── .cproject │ ├── .gitignore │ ├── .project │ ├── ProcessorExpert.pe │ ├── Project_Settings │ │ ├── Debugger │ │ │ ├── Hexiwear_PEx_Dockingstation_Debug_PNE.launch │ │ │ └── Hexiwear_PEx_Dockingstation_Debug_Segger.launch │ │ ├── Linker_Files │ │ │ └── ProcessorExpert.ld │ │ └── Startup_Code │ │ │ └── startup.c │ ├── Raspy │ │ ├── GetData.py │ │ ├── GetDataAll.py │ │ ├── HexiSendSettings.py │ │ ├── RtcUpdate.py │ │ ├── RtcUpdateAll.py │ │ ├── data.csv │ │ ├── gatttool.py │ │ └── readme.txt │ ├── Sources │ │ ├── Application.c │ │ ├── Application.h │ │ ├── Bluetooth.c │ │ ├── Bluetooth.h │ │ ├── Buzzer.c │ │ ├── Buzzer.h │ │ ├── Cube.c │ │ ├── Cube.h │ │ ├── Events.c │ │ ├── Events.h │ │ ├── HTU21d.c │ │ ├── HTU21d.h │ │ ├── HostComm.c │ │ ├── HostComm.h │ │ ├── Identify.c │ │ ├── Identify.h │ │ ├── KW40Comm.c │ │ ├── KW40Comm.h │ │ ├── Pairing.c │ │ ├── Pairing.h │ │ ├── Platform.h │ │ ├── Quizz.c │ │ ├── Quizz.h │ │ ├── RNet_App.c │ │ ├── RNet_App.h │ │ ├── RNet_AppConfig.h │ │ ├── RStdIO.c │ │ ├── RStdIO.h │ │ ├── Sensor.c │ │ ├── Sensor.h │ │ ├── Shell.c │ │ ├── Shell.h │ │ ├── UI.c │ │ ├── UI.h │ │ ├── UIMultipleChoice.c │ │ ├── UIMultipleChoice.h │ │ ├── Watch.c │ │ ├── Watch.h │ │ ├── hack.c │ │ └── main.c │ ├── Static_Code │ │ ├── IO_Map │ │ │ └── MK64F12.h │ │ ├── PDD │ │ │ ├── ADC_PDD.h │ │ │ ├── CAN_PDD.h │ │ │ ├── CMP_PDD.h │ │ │ ├── CMT_PDD.h │ │ │ ├── CRC_PDD.h │ │ │ ├── DAC_PDD.h │ │ │ ├── DMAMUX_PDD.h │ │ │ ├── DMA_PDD.h │ │ │ ├── ENET_PDD.h │ │ │ ├── EWM_PDD.h │ │ │ ├── FMC_PDD.h │ │ │ ├── FTFE_PDD.h │ │ │ ├── FTM_PDD.h │ │ │ ├── GPIO_PDD.h │ │ │ ├── I2C_PDD.h │ │ │ ├── LLWU_PDD.h │ │ │ ├── LPTMR_PDD.h │ │ │ ├── MCG_PDD.h │ │ │ ├── MCM_PDD.h │ │ │ ├── OSC_PDD.h │ │ │ ├── PDB_PDD.h │ │ │ ├── PDD_Types.h │ │ │ ├── PIT_PDD.h │ │ │ ├── PMC_PDD.h │ │ │ ├── PORT_PDD.h │ │ │ ├── RCM_PDD.h │ │ │ ├── RNGA_PDD.h │ │ │ ├── RTC_PDD.h │ │ │ ├── SAI_PDD.h │ │ │ ├── SCB_PDD.h │ │ │ ├── SDHC_PDD.h │ │ │ ├── SIM_PDD.h │ │ │ ├── SMC_PDD.h │ │ │ ├── SPI_PDD.h │ │ │ ├── SysTick_PDD.h │ │ │ ├── UART_PDD.h │ │ │ ├── USBDCD_PDD.h │ │ │ ├── USB_PDD.h │ │ │ ├── VREF_PDD.h │ │ │ └── WDOG_PDD.h │ │ └── System │ │ │ ├── CPU_Init.c │ │ │ ├── CPU_Init.h │ │ │ ├── PDD_Includes.h │ │ │ ├── Peripherals_Init.c │ │ │ ├── Peripherals_Init.h │ │ │ └── Vectors.c │ └── readme.txt ├── Hexiwear_SDKv2 │ ├── .cproject │ ├── .gitignore │ ├── .project │ ├── CMSIS │ │ ├── MK64F12.h │ │ ├── MK64F12_features.h │ │ ├── arm_common_tables.h │ │ ├── arm_const_structs.h │ │ ├── arm_math.h │ │ ├── cmsis_gcc.h │ │ ├── core_cm4.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── core_cmSimd.h │ │ └── fsl_device_registers.h │ ├── FreeRTOS │ │ ├── Source │ │ │ ├── FreeRTOS_license.txt │ │ │ └── portable │ │ │ │ └── GCC │ │ │ │ └── ARM_CM4F │ │ │ │ ├── .gdbinit-FreeRTOS-helpers │ │ │ │ ├── freertos_tasks_c_additions.h │ │ │ │ ├── portTicks.h │ │ │ │ ├── portasm.s │ │ │ │ └── readme_gdbBacktraceDebug.txt │ │ └── config │ │ │ └── gcc │ │ │ └── FreeRTOSConfig.h │ ├── MK64FN1M0xxx12_flash.ld │ ├── PEx │ │ ├── CLS1.c │ │ ├── CLS1.h │ │ ├── CS1.c │ │ ├── CS1.h │ │ ├── FRTOS1.c │ │ ├── FRTOS1.h │ │ ├── HF1.c │ │ ├── HF1.h │ │ ├── KSDK1.c │ │ ├── KSDK1.h │ │ ├── LED1.c │ │ ├── LED1.h │ │ ├── LED2.c │ │ ├── LED2.h │ │ ├── LED3.c │ │ ├── LED3.h │ │ ├── LEDpin4.c │ │ ├── LEDpin4.h │ │ ├── LEDpin5.c │ │ ├── LEDpin5.h │ │ ├── LEDpin6.c │ │ ├── LEDpin6.h │ │ ├── LEDpin7.c │ │ ├── LEDpin7.h │ │ ├── LEDpin8.c │ │ ├── LEDpin8.h │ │ ├── LEDpin9.c │ │ ├── LEDpin9.h │ │ ├── MCUC1.c │ │ ├── MCUC1.h │ │ ├── MCUC1config.h │ │ ├── PE_KSDK_Types.h │ │ ├── RGBB.c │ │ ├── RGBB.h │ │ ├── RGBG.c │ │ ├── RGBG.h │ │ ├── RGBR.c │ │ ├── RGBR.h │ │ ├── RTT1.c │ │ ├── RTT1.h │ │ ├── RTT_Syscalls_GCC.c │ │ ├── SEGGER_RTT.c │ │ ├── SEGGER_RTT.h │ │ ├── SEGGER_RTT_Conf.h │ │ ├── SEGGER_RTT_printf.c │ │ ├── UTIL1.c │ │ ├── UTIL1.h │ │ ├── UTIL1config.h │ │ ├── WAIT1.c │ │ ├── WAIT1.h │ │ ├── XF1.c │ │ └── XF1.h │ ├── board │ │ ├── Hexiwear_MK64FN1M0xxx12.mex │ │ ├── board.c │ │ ├── board.h │ │ ├── clock_config.c │ │ ├── clock_config.h │ │ ├── pin_mux.c │ │ └── pin_mux.h │ ├── drivers │ │ ├── fsl_adc16.c │ │ ├── fsl_adc16.h │ │ ├── fsl_clock.c │ │ ├── fsl_clock.h │ │ ├── fsl_cmp.c │ │ ├── fsl_cmp.h │ │ ├── fsl_cmt.c │ │ ├── fsl_cmt.h │ │ ├── fsl_common.c │ │ ├── fsl_common.h │ │ ├── fsl_crc.c │ │ ├── fsl_crc.h │ │ ├── fsl_dac.c │ │ ├── fsl_dac.h │ │ ├── fsl_dmamux.c │ │ ├── fsl_dmamux.h │ │ ├── fsl_dspi.c │ │ ├── fsl_dspi.h │ │ ├── fsl_dspi_edma.c │ │ ├── fsl_dspi_edma.h │ │ ├── fsl_dspi_freertos.c │ │ ├── fsl_dspi_freertos.h │ │ ├── fsl_edma.c │ │ ├── fsl_edma.h │ │ ├── fsl_enet.c │ │ ├── fsl_enet.h │ │ ├── fsl_ewm.c │ │ ├── fsl_ewm.h │ │ ├── fsl_flash.c │ │ ├── fsl_flash.h │ │ ├── fsl_flexbus.c │ │ ├── fsl_flexbus.h │ │ ├── fsl_flexcan.c │ │ ├── fsl_flexcan.h │ │ ├── fsl_ftm.c │ │ ├── fsl_ftm.h │ │ ├── fsl_gpio.c │ │ ├── fsl_gpio.h │ │ ├── fsl_i2c.c │ │ ├── fsl_i2c.h │ │ ├── fsl_i2c_edma.c │ │ ├── fsl_i2c_edma.h │ │ ├── fsl_i2c_freertos.c │ │ ├── fsl_i2c_freertos.h │ │ ├── fsl_llwu.c │ │ ├── fsl_llwu.h │ │ ├── fsl_lptmr.c │ │ ├── fsl_lptmr.h │ │ ├── fsl_mpu.c │ │ ├── fsl_mpu.h │ │ ├── fsl_pdb.c │ │ ├── fsl_pdb.h │ │ ├── fsl_pit.c │ │ ├── fsl_pit.h │ │ ├── fsl_pmc.c │ │ ├── fsl_pmc.h │ │ ├── fsl_port.h │ │ ├── fsl_rcm.c │ │ ├── fsl_rcm.h │ │ ├── fsl_rnga.c │ │ ├── fsl_rnga.h │ │ ├── fsl_rtc.c │ │ ├── fsl_rtc.h │ │ ├── fsl_sai.c │ │ ├── fsl_sai.h │ │ ├── fsl_sai_edma.c │ │ ├── fsl_sai_edma.h │ │ ├── fsl_sdhc.c │ │ ├── fsl_sdhc.h │ │ ├── fsl_sim.c │ │ ├── fsl_sim.h │ │ ├── fsl_smc.c │ │ ├── fsl_smc.h │ │ ├── fsl_uart.c │ │ ├── fsl_uart.h │ │ ├── fsl_uart_edma.c │ │ ├── fsl_uart_edma.h │ │ ├── fsl_uart_freertos.c │ │ ├── fsl_uart_freertos.h │ │ ├── fsl_vref.c │ │ ├── fsl_vref.h │ │ ├── fsl_wdog.c │ │ └── fsl_wdog.h │ ├── freertos │ │ └── Source │ │ │ ├── croutine.c │ │ │ ├── event_groups.c │ │ │ ├── include │ │ │ ├── FreeRTOS.h │ │ │ ├── StackMacros.h │ │ │ ├── croutine.h │ │ │ ├── deprecated_definitions.h │ │ │ ├── event_groups.h │ │ │ ├── list.h │ │ │ ├── mpu_wrappers.h │ │ │ ├── portable.h │ │ │ ├── projdefs.h │ │ │ ├── queue.h │ │ │ ├── semphr.h │ │ │ ├── task.h │ │ │ └── timers.h │ │ │ ├── list.c │ │ │ ├── portable │ │ │ ├── GCC │ │ │ │ └── ARM_CM4F │ │ │ │ │ ├── port.c │ │ │ │ │ └── portmacro.h │ │ │ └── MemMang │ │ │ │ ├── heap_1.c │ │ │ │ ├── heap_2.c │ │ │ │ ├── heap_3.c │ │ │ │ ├── heap_4.c │ │ │ │ └── heap_5.c │ │ │ ├── queue.c │ │ │ ├── tasks.c │ │ │ └── timers.c │ ├── readme.txt │ ├── settings │ │ ├── Hexiwear_SDKv2_Debug_PNE.launch │ │ └── Hexiwear_SDKv2_Debug_Segger.launch │ ├── source │ │ ├── Events.c │ │ ├── Events.h │ │ └── main.c │ ├── startup │ │ ├── startup_MK64F12.S │ │ ├── system_MK64F12.c │ │ └── system_MK64F12.h │ └── utilities │ │ ├── fsl_debug_console.c │ │ ├── fsl_debug_console.h │ │ ├── fsl_notifier.c │ │ ├── fsl_notifier.h │ │ └── fsl_sbrk.c ├── Hexiwear_bluetooth │ ├── .cproject │ ├── .gitignore │ ├── .project │ ├── Project_Settings │ │ ├── Debugger │ │ │ ├── Hexiwear_bluetooth_Debug_OpenOCD.launch │ │ │ ├── Hexiwear_bluetooth_Debug_PNE.launch │ │ │ ├── Hexiwear_bluetooth_Debug_Segger (attach).launch │ │ │ └── Hexiwear_bluetooth_Debug_Segger.launch │ │ ├── Linker_Files │ │ │ └── MKW40Z160xxx4_flash.ld │ │ └── Startup_Code │ │ │ ├── startup.c │ │ │ ├── startup.h │ │ │ ├── startup_MKW40Z4.S │ │ │ ├── system_MKW40Z4.c │ │ │ └── system_MKW40Z4.h │ ├── SDK │ │ └── platform │ │ │ ├── CMSIS │ │ │ └── Include │ │ │ │ ├── arm_common_tables.h │ │ │ │ ├── arm_const_structs.h │ │ │ │ ├── arm_math.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ ├── core_cmInstr.h │ │ │ │ └── core_cmSimd.h │ │ │ └── devices │ │ │ ├── MKW40Z4 │ │ │ └── include │ │ │ │ ├── MKW40Z4.h │ │ │ │ ├── MKW40Z4_extension.h │ │ │ │ ├── MKW40Z4_features.h │ │ │ │ └── fsl_bitaccess.h │ │ │ └── fsl_device_registers.h │ ├── SW-Content-Register-BLE_MKW40Z-1.1.4.txt │ ├── Sources │ │ ├── FreeRTOS │ │ │ ├── FreeRTOS_license.txt │ │ │ ├── croutine.c │ │ │ ├── event_groups.c │ │ │ ├── include │ │ │ │ ├── FreeRTOS.h │ │ │ │ ├── StackMacros.h │ │ │ │ ├── croutine.h │ │ │ │ ├── deprecated_definitions.h │ │ │ │ ├── event_groups.h │ │ │ │ ├── list.h │ │ │ │ ├── mpu_wrappers.h │ │ │ │ ├── portable.h │ │ │ │ ├── projdefs.h │ │ │ │ ├── queue.h │ │ │ │ ├── semphr.h │ │ │ │ ├── task.h │ │ │ │ └── timers.h │ │ │ ├── list.c │ │ │ ├── portable │ │ │ │ ├── GCC │ │ │ │ │ └── ARM_CM4F │ │ │ │ │ │ ├── .gdbinit-FreeRTOS-helpers │ │ │ │ │ │ ├── freertos_tasks_c_additions.h │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ ├── portTicks.h │ │ │ │ │ │ ├── portasm.s │ │ │ │ │ │ ├── portmacro.h │ │ │ │ │ │ └── readme_gdbBacktraceDebug.txt │ │ │ │ └── MemMang │ │ │ │ │ ├── heap_1.c │ │ │ │ │ ├── heap_2.c │ │ │ │ │ ├── heap_3.c │ │ │ │ │ ├── heap_4.c │ │ │ │ │ └── heap_5.c │ │ │ ├── queue.c │ │ │ ├── tasks.c │ │ │ └── timers.c │ │ ├── FreeRTOSConfig.h │ │ ├── Hexiwear_bluetooth │ │ │ ├── alert_service.c │ │ │ ├── alert_service.h │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ ├── appMode_service.c │ │ │ ├── appMode_service.h │ │ │ ├── app_config.c │ │ │ ├── client_ancs.c │ │ │ ├── client_ancs.h │ │ │ ├── common_service.c │ │ │ ├── common_service.h │ │ │ ├── debug.h │ │ │ ├── ft.c │ │ │ ├── ft.h │ │ │ ├── ft_control_arotary.c │ │ │ ├── ft_control_arotary.h │ │ │ ├── ft_control_arotary_prv.h │ │ │ ├── ft_control_aslider.c │ │ │ ├── ft_control_aslider.h │ │ │ ├── ft_control_aslider_prv.h │ │ │ ├── ft_control_keypad.c │ │ │ ├── ft_control_keypad.h │ │ │ ├── ft_control_keypad_prv.h │ │ │ ├── ft_control_matrix.c │ │ │ ├── ft_control_matrix.h │ │ │ ├── ft_control_rotary.c │ │ │ ├── ft_control_rotary.h │ │ │ ├── ft_control_rotary_prv.h │ │ │ ├── ft_control_slider.c │ │ │ ├── ft_control_slider.h │ │ │ ├── ft_control_slider_prv.h │ │ │ ├── ft_controls.c │ │ │ ├── ft_controls.h │ │ │ ├── ft_controls_prv.h │ │ │ ├── ft_electrodes.c │ │ │ ├── ft_electrodes.h │ │ │ ├── ft_electrodes_prv.h │ │ │ ├── ft_filters.c │ │ │ ├── ft_filters.h │ │ │ ├── ft_filters_prv.h │ │ │ ├── ft_gpio.h │ │ │ ├── ft_keydetector_afid.c │ │ │ ├── ft_keydetector_afid.h │ │ │ ├── ft_keydetector_afid_prv.h │ │ │ ├── ft_keydetector_prv.h │ │ │ ├── ft_keydetector_safa.c │ │ │ ├── ft_keydetector_safa.h │ │ │ ├── ft_keydetector_safa_prv.h │ │ │ ├── ft_keydetectors.h │ │ │ ├── ft_module_gpio.c │ │ │ ├── ft_module_gpio.h │ │ │ ├── ft_module_gpio_prv.h │ │ │ ├── ft_module_gpioint.c │ │ │ ├── ft_module_gpioint.h │ │ │ ├── ft_module_gpioint_prv.h │ │ │ ├── ft_module_tsi.c │ │ │ ├── ft_module_tsi.h │ │ │ ├── ft_module_tsi_prv.h │ │ │ ├── ft_modules.c │ │ │ ├── ft_modules.h │ │ │ ├── ft_modules_prv.h │ │ │ ├── ft_setup.c │ │ │ ├── ft_setup.h │ │ │ ├── ft_system.c │ │ │ ├── ft_system.h │ │ │ ├── ft_system_frmstr.c │ │ │ ├── ft_system_frmstr_prv.h │ │ │ ├── ft_system_mem.c │ │ │ ├── ft_system_mem_prv.h │ │ │ ├── ft_system_prv.h │ │ │ ├── ft_types.h │ │ │ ├── gatt_db.h │ │ │ ├── gatt_uuid128.h │ │ │ ├── health_service.c │ │ │ ├── health_service.h │ │ │ ├── host_mcu_interface.c │ │ │ ├── host_mcu_interface.h │ │ │ ├── host_mcu_interface_events.c │ │ │ ├── host_mcu_interface_rx.c │ │ │ ├── host_mcu_interface_tx.c │ │ │ ├── motion_service.c │ │ │ ├── motion_service.h │ │ │ ├── otap_interface.h │ │ │ ├── otap_service.c │ │ │ ├── tsi.c │ │ │ ├── tsi.h │ │ │ ├── weather_service.c │ │ │ └── weather_service.h │ │ ├── KSDK │ │ │ ├── CopyToRam.c │ │ │ ├── DEFlashPartition.c │ │ │ ├── DFlashGetProtection.c │ │ │ ├── DFlashSetProtection.c │ │ │ ├── EEEWrite.c │ │ │ ├── EERAMGetProtection.c │ │ │ ├── EERAMSetProtection.c │ │ │ ├── FTFx_KX_flash_config.h │ │ │ ├── FlashCheckSum.c │ │ │ ├── FlashCommandSequence.c │ │ │ ├── FlashEraseAllBlock.c │ │ │ ├── FlashEraseAllBlockUnsecure.c │ │ │ ├── FlashEraseBlock.c │ │ │ ├── FlashEraseResume.c │ │ │ ├── FlashEraseSector.c │ │ │ ├── FlashEraseSuspend.c │ │ │ ├── FlashGetSecurityState.c │ │ │ ├── FlashInit.c │ │ │ ├── FlashProgram.c │ │ │ ├── FlashProgramCheck.c │ │ │ ├── FlashProgramOnce.c │ │ │ ├── FlashProgramSection.c │ │ │ ├── FlashReadOnce.c │ │ │ ├── FlashReadResource.c │ │ │ ├── FlashSecurityBypass.c │ │ │ ├── FlashVerifyAllBlock.c │ │ │ ├── FlashVerifyBlock.c │ │ │ ├── FlashVerifySection.c │ │ │ ├── PFlashFacGetSAProtection.c │ │ │ ├── PFlashFacGetXAProtection.c │ │ │ ├── PFlashGetProtection.c │ │ │ ├── PFlashSetProtection.c │ │ │ ├── PFlashSwap.c │ │ │ ├── PFlashSwapCtl.c │ │ │ ├── SSD_FTFx.h │ │ │ ├── SSD_FTFx_Common.h │ │ │ ├── SSD_FTFx_Internal.h │ │ │ ├── SSD_Types.h │ │ │ ├── SetEEEEnable.c │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── fsl_adc16_common.c │ │ │ ├── fsl_adc16_driver.c │ │ │ ├── fsl_adc16_driver.h │ │ │ ├── fsl_adc16_hal.h │ │ │ ├── fsl_adc16_irq.c │ │ │ ├── fsl_adc16_lpm_callback.c │ │ │ ├── fsl_clock_MKW40Z4.c │ │ │ ├── fsl_clock_MKW40Z4.h │ │ │ ├── fsl_clock_manager.c │ │ │ ├── fsl_clock_manager.h │ │ │ ├── fsl_cmp_driver.h │ │ │ ├── fsl_cmp_hal.h │ │ │ ├── fsl_cmt_driver.h │ │ │ ├── fsl_cmt_hal.h │ │ │ ├── fsl_cop_driver.h │ │ │ ├── fsl_cop_hal.h │ │ │ ├── fsl_crc_driver.h │ │ │ ├── fsl_crc_hal.h │ │ │ ├── fsl_dac_driver.h │ │ │ ├── fsl_dac_hal.h │ │ │ ├── fsl_debug_console.h │ │ │ ├── fsl_dma_driver.h │ │ │ ├── fsl_dma_hal.h │ │ │ ├── fsl_dma_request.h │ │ │ ├── fsl_dmamux_hal.h │ │ │ ├── fsl_dspi_dma_master_driver.h │ │ │ ├── fsl_dspi_dma_slave_driver.h │ │ │ ├── fsl_dspi_edma_master_driver.h │ │ │ ├── fsl_dspi_edma_shared_function.h │ │ │ ├── fsl_dspi_edma_slave_driver.h │ │ │ ├── fsl_dspi_hal.c │ │ │ ├── fsl_dspi_hal.h │ │ │ ├── fsl_dspi_master_driver.h │ │ │ ├── fsl_dspi_shared_function.h │ │ │ ├── fsl_dspi_slave_driver.h │ │ │ ├── fsl_edma_driver.h │ │ │ ├── fsl_edma_hal.h │ │ │ ├── fsl_edma_request.h │ │ │ ├── fsl_ewm_driver.h │ │ │ ├── fsl_ewm_hal.h │ │ │ ├── fsl_flexbus_driver.h │ │ │ ├── fsl_flexbus_hal.h │ │ │ ├── fsl_ftm_driver.h │ │ │ ├── fsl_ftm_hal.h │ │ │ ├── fsl_gpio_common.c │ │ │ ├── fsl_gpio_driver.c │ │ │ ├── fsl_gpio_driver.h │ │ │ ├── fsl_gpio_hal.c │ │ │ ├── fsl_gpio_hal.h │ │ │ ├── fsl_gpio_irq.c │ │ │ ├── fsl_gpio_lpm_callback.c │ │ │ ├── fsl_hwtimer.h │ │ │ ├── fsl_hwtimer_pit.h │ │ │ ├── fsl_hwtimer_systick.h │ │ │ ├── fsl_i2c_hal.h │ │ │ ├── fsl_i2c_master_driver.h │ │ │ ├── fsl_i2c_shared_function.h │ │ │ ├── fsl_i2c_slave_driver.h │ │ │ ├── fsl_interrupt_manager.c │ │ │ ├── fsl_interrupt_manager.h │ │ │ ├── fsl_llwu_hal.c │ │ │ ├── fsl_llwu_hal.h │ │ │ ├── fsl_lptmr_driver.h │ │ │ ├── fsl_lptmr_hal.h │ │ │ ├── fsl_lpuart_common.c │ │ │ ├── fsl_lpuart_dma_driver.h │ │ │ ├── fsl_lpuart_driver.c │ │ │ ├── fsl_lpuart_driver.h │ │ │ ├── fsl_lpuart_edma_driver.h │ │ │ ├── fsl_lpuart_hal.c │ │ │ ├── fsl_lpuart_hal.h │ │ │ ├── fsl_ltc_common.c │ │ │ ├── fsl_ltc_driver.c │ │ │ ├── fsl_ltc_driver.h │ │ │ ├── fsl_ltc_driver_aes.c │ │ │ ├── fsl_ltc_driver_aes.h │ │ │ ├── fsl_ltc_driver_aes_ccm.c │ │ │ ├── fsl_ltc_driver_hash.h │ │ │ ├── fsl_ltc_driver_prv.h │ │ │ ├── fsl_ltc_hal.c │ │ │ ├── fsl_ltc_hal.h │ │ │ ├── fsl_mcg_hal.c │ │ │ ├── fsl_mcg_hal.h │ │ │ ├── fsl_mcg_hal_modes.c │ │ │ ├── fsl_mcg_hal_modes.h │ │ │ ├── fsl_mmcau_driver.h │ │ │ ├── fsl_os_abstraction.h │ │ │ ├── fsl_os_abstraction_bm.h │ │ │ ├── fsl_os_abstraction_free_rtos.c │ │ │ ├── fsl_os_abstraction_free_rtos.h │ │ │ ├── fsl_osc_hal.h │ │ │ ├── fsl_pcc_hal.h │ │ │ ├── fsl_pdb_driver.h │ │ │ ├── fsl_pdb_hal.h │ │ │ ├── fsl_pit_driver.h │ │ │ ├── fsl_pit_hal.h │ │ │ ├── fsl_pmc_hal.h │ │ │ ├── fsl_port_hal.h │ │ │ ├── fsl_power_manager.c │ │ │ ├── fsl_power_manager.h │ │ │ ├── fsl_power_manager_common.h │ │ │ ├── fsl_rcm_hal.h │ │ │ ├── fsl_rnga_driver.h │ │ │ ├── fsl_rnga_hal.h │ │ │ ├── fsl_rtc_driver.h │ │ │ ├── fsl_rtc_hal.h │ │ │ ├── fsl_sai_driver.h │ │ │ ├── fsl_sai_hal.h │ │ │ ├── fsl_sim_hal.h │ │ │ ├── fsl_sim_hal_MKW40Z4.c │ │ │ ├── fsl_sim_hal_MKW40Z4.h │ │ │ ├── fsl_smc_hal.h │ │ │ ├── fsl_tpm_common.c │ │ │ ├── fsl_tpm_driver.c │ │ │ ├── fsl_tpm_driver.h │ │ │ ├── fsl_tpm_hal.c │ │ │ ├── fsl_tpm_hal.h │ │ │ ├── fsl_trng_common.c │ │ │ ├── fsl_trng_driver.c │ │ │ ├── fsl_trng_driver.h │ │ │ ├── fsl_trng_hal.c │ │ │ ├── fsl_trng_hal.h │ │ │ ├── fsl_tsi_common.c │ │ │ ├── fsl_tsi_driver.c │ │ │ ├── fsl_tsi_driver.h │ │ │ ├── fsl_tsi_hal.c │ │ │ ├── fsl_tsi_hal.h │ │ │ ├── fsl_tsi_v4_driver_specific.c │ │ │ ├── fsl_tsi_v4_hal_specific.c │ │ │ ├── fsl_tsi_v4_hal_specific.h │ │ │ ├── fsl_uart_dma_driver.h │ │ │ ├── fsl_uart_driver.h │ │ │ ├── fsl_uart_edma_driver.h │ │ │ ├── fsl_uart_hal.h │ │ │ ├── fsl_vref_driver.h │ │ │ ├── fsl_vref_hal.h │ │ │ ├── fsl_wdog_driver.h │ │ │ ├── fsl_wdog_hal.h │ │ │ ├── gpio_pins.c │ │ │ ├── gpio_pins.h │ │ │ ├── hardware_init.c │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ ├── print_scan.c │ │ │ └── print_scan.h │ │ ├── McuLib │ │ │ ├── McuCriticalSection.c │ │ │ ├── McuCriticalSection.h │ │ │ ├── McuCriticalSectionconfig.h │ │ │ ├── McuLib.c │ │ │ ├── McuLib.h │ │ │ ├── McuLibconfig.h │ │ │ ├── McuPercepio.c │ │ │ ├── McuPercepio.h │ │ │ ├── McuPercepioconfig.h │ │ │ ├── McuRTOS.c │ │ │ ├── McuRTOS.h │ │ │ ├── McuRTOSconfig.h │ │ │ ├── McuRTT.c │ │ │ ├── McuRTT.h │ │ │ ├── McuRTTconfig.h │ │ │ ├── McuShell.c │ │ │ ├── McuShell.h │ │ │ ├── McuShellconfig.h │ │ │ ├── McuSystemView.c │ │ │ ├── McuSystemView.h │ │ │ ├── McuSystemViewconfig.h │ │ │ ├── McuUtility.c │ │ │ ├── McuUtility.h │ │ │ ├── McuUtilityconfig.h │ │ │ ├── McuWait.c │ │ │ ├── McuWait.h │ │ │ ├── McuWaitconfig.h │ │ │ ├── McuXFormat.c │ │ │ ├── McuXFormat.h │ │ │ ├── McuXFormatconfig.h │ │ │ └── readme.txt │ │ ├── SEGGER │ │ │ ├── SEGGER_RTT.c │ │ │ ├── SEGGER_RTT.h │ │ │ ├── SEGGER_RTT_Conf.h │ │ │ ├── SEGGER_RTT_printf.c │ │ │ ├── SEGGER_SYSVIEW.c │ │ │ ├── SEGGER_SYSVIEW.h │ │ │ ├── SEGGER_SYSVIEW_Conf.h │ │ │ ├── SEGGER_SYSVIEW_ConfDefaults.h │ │ │ ├── SEGGER_SYSVIEW_Config.c │ │ │ ├── SEGGER_SYSVIEW_FreeRTOS.c │ │ │ ├── SEGGER_SYSVIEW_FreeRTOS.h │ │ │ └── SEGGER_SYSVIEW_Int.h │ │ ├── TraceRecorder │ │ │ ├── config │ │ │ │ ├── trcConfig.h │ │ │ │ ├── trcSnapshotConfig.h │ │ │ │ └── trcStreamingConfig.h │ │ │ ├── include │ │ │ │ ├── trcHardwarePort.h │ │ │ │ ├── trcKernelPort.h │ │ │ │ ├── trcPortDefines.h │ │ │ │ └── trcRecorder.h │ │ │ ├── streamports │ │ │ │ └── Jlink_RTT │ │ │ │ │ └── include │ │ │ │ │ └── trcStreamingPort.h │ │ │ ├── trcKernelPort.c │ │ │ ├── trcSnapshotRecorder.c │ │ │ ├── trcStreamingRecorder.c │ │ │ └── trc_readme.txt │ │ ├── app_preinclude.h │ │ ├── bluetooth │ │ │ ├── ApplMain.c │ │ │ ├── ApplMain.h │ │ │ ├── att_callbacks.h │ │ │ ├── att_errors.h │ │ │ ├── att_interface.h │ │ │ ├── att_params.h │ │ │ ├── att_types.h │ │ │ ├── battery_interface.h │ │ │ ├── battery_service.c │ │ │ ├── ble_constants.h │ │ │ ├── ble_controller_task.c │ │ │ ├── ble_controller_task_config.h │ │ │ ├── ble_general.h │ │ │ ├── ble_globals.c │ │ │ ├── ble_host_task_config.h │ │ │ ├── ble_host_tasks.c │ │ │ ├── ble_host_tasks.h │ │ │ ├── ble_init.c │ │ │ ├── ble_init.h │ │ │ ├── ble_sig_defines.h │ │ │ ├── ble_utils.h │ │ │ ├── controller_interface.h │ │ │ ├── device_info_interface.h │ │ │ ├── device_info_service.c │ │ │ ├── fsci_ble_interface.h │ │ │ ├── gap_interface.h │ │ │ ├── gap_types.h │ │ │ ├── gatt_alloc_x.def │ │ │ ├── gatt_client_interface.h │ │ │ ├── gatt_database.c │ │ │ ├── gatt_database.h │ │ │ ├── gatt_db_app_interface.h │ │ │ ├── gatt_db_att_interface.h │ │ │ ├── gatt_db_dynamic.h │ │ │ ├── gatt_db_handles.h │ │ │ ├── gatt_db_macros.h │ │ │ ├── gatt_db_x_macros.def │ │ │ ├── gatt_decl_x.def │ │ │ ├── gatt_enum_x.def │ │ │ ├── gatt_init_x.def │ │ │ ├── gatt_interface.h │ │ │ ├── gatt_server_interface.h │ │ │ ├── gatt_size_x.def │ │ │ ├── gatt_types.h │ │ │ ├── gatt_uuid_decl_x.def │ │ │ ├── gatt_uuid_def_x.def │ │ │ ├── hci_interface.h │ │ │ ├── hci_transport.h │ │ │ ├── hci_types.h │ │ │ ├── hcit_serial_interface.c │ │ │ ├── host_bbox_interface.h │ │ │ ├── ieee11073.h │ │ │ ├── l2ca_cb_interface.h │ │ │ ├── l2ca_interface.h │ │ │ ├── l2ca_types.h │ │ │ ├── smp_packets.h │ │ │ ├── smp_types.h │ │ │ └── vendor_debug_commands.h │ │ ├── framework │ │ │ ├── BLEDefaults.h │ │ │ ├── DCDC.c │ │ │ ├── DCDC.h │ │ │ ├── Eeprom.h │ │ │ ├── Eeprom_AT26DF081A.c │ │ │ ├── Eeprom_AT45DB021E.c │ │ │ ├── Eeprom_AT45DB161E.c │ │ │ ├── Eeprom_InternalFlash.c │ │ │ ├── Eeprom_M25P80.c │ │ │ ├── EmbeddedTypes.h │ │ │ ├── Flash_Adapter.c │ │ │ ├── Flash_Adapter.h │ │ │ ├── FunctionLib.c │ │ │ ├── FunctionLib.h │ │ │ ├── FwkInit.c │ │ │ ├── GPIO_IrqAdapter.c │ │ │ ├── GPIO_IrqAdapter.h │ │ │ ├── GenericList.c │ │ │ ├── GenericList.h │ │ │ ├── KW4xXcvrDrv.c │ │ │ ├── KW4xXcvrDrv.h │ │ │ ├── Keyboard.c │ │ │ ├── Keyboard.h │ │ │ ├── LED.c │ │ │ ├── LED.h │ │ │ ├── MemManager.c │ │ │ ├── MemManager.h │ │ │ ├── Messaging.c │ │ │ ├── Messaging.h │ │ │ ├── ModuleInfo.h │ │ │ ├── OtaSupport.c │ │ │ ├── OtaSupport.h │ │ │ ├── PWR.c │ │ │ ├── PWRLib.c │ │ │ ├── PWRLib.h │ │ │ ├── PWR_BLE.c │ │ │ ├── PWR_BLE.h │ │ │ ├── PWR_Configuration.h │ │ │ ├── PWR_Interface.h │ │ │ ├── Panic.c │ │ │ ├── Panic.h │ │ │ ├── RNG.c │ │ │ ├── RNG_Interface.h │ │ │ ├── Reset.c │ │ │ ├── SPI_Adapter.c │ │ │ ├── SPI_Adapter.h │ │ │ ├── SecLib.c │ │ │ ├── SecLib.h │ │ │ ├── SerialManager.c │ │ │ ├── SerialManager.h │ │ │ ├── TMR_Adapter.c │ │ │ ├── TMR_Adapter.h │ │ │ ├── TimersManager.c │ │ │ ├── TimersManager.h │ │ │ ├── TimersManagerInternal.h │ │ │ ├── ZigbeeDefaults.h │ │ │ ├── fsl_osa_ext.h │ │ │ ├── fsl_osa_ext_config.h │ │ │ ├── fsl_osa_ext_freertos.c │ │ │ ├── ifr_mkw40z4_radio.c │ │ │ ├── ifr_mkw40z4_radio.h │ │ │ ├── ifr_tbl_mkw40z4_radio.h │ │ │ ├── overwrites.h │ │ │ ├── tsm_ll_timing.c │ │ │ ├── tsm_ll_timing.h │ │ │ ├── tsm_timing_ble.h │ │ │ └── tsm_timing_zigbee.h │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── BootloaderOTAP_KW40Z4.bin │ │ │ ├── libble_controller.a │ │ │ ├── libble_host.a │ │ │ └── libcrypto_M0.a │ │ └── wrapper.c │ └── readme.txt └── data.xlsx ├── README.md └── binaries ├── HEXIWEAR_KW40.bin ├── HEXIWEAR_MK64_V1.0.2.bin ├── ProgramWithJlink_K64F.bat ├── ProgramWithJlink_KW40.bat ├── jlink_k64f.script ├── jlink_kw40.script └── readme.txt /3D/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/3D/.gitignore -------------------------------------------------------------------------------- /3D/Hexiwear.123dx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/3D/Hexiwear.123dx -------------------------------------------------------------------------------- /3D/Hexiwear.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/3D/Hexiwear.stl -------------------------------------------------------------------------------- /3D/Mikroelektronika 3D Files.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/3D/Mikroelektronika 3D Files.url -------------------------------------------------------------------------------- /3D/QiCharger.123dx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/3D/QiCharger.123dx -------------------------------------------------------------------------------- /3D/QiCharger.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/3D/QiCharger.stl -------------------------------------------------------------------------------- /3D/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/3D/readme.txt -------------------------------------------------------------------------------- /Hardware/DebugDocking PCB/DebugPcb_Layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/Hardware/DebugDocking PCB/DebugPcb_Layout.pdf -------------------------------------------------------------------------------- /Hardware/DebugDocking PCB/DebugPcb_Schematic.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/Hardware/DebugDocking PCB/DebugPcb_Schematic.PDF -------------------------------------------------------------------------------- /Hardware/DebugDocking PCB/readme.txt: -------------------------------------------------------------------------------- 1 | PCB for a compact Hexiwear docking station. -------------------------------------------------------------------------------- /Hardware/DockingStation PCB/Schema_Demonstrator_PCB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/Hardware/DockingStation PCB/Schema_Demonstrator_PCB.pdf -------------------------------------------------------------------------------- /Hardware/DockingStation PCB/Schema_Dockingstation_PCB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/Hardware/DockingStation PCB/Schema_Dockingstation_PCB.pdf -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/.cproject -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/.gitignore -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/.project -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/README.md -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/defaultEye/iris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/defaultEye/iris.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/defaultEye/lower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/defaultEye/lower.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/defaultEye/sclera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/defaultEye/sclera.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/defaultEye/upper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/defaultEye/upper.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/dragonEye/dragonPupilMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/dragonEye/dragonPupilMap.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/dragonEye/iris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/dragonEye/iris.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/dragonEye/lower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/dragonEye/lower.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/dragonEye/sclera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/dragonEye/sclera.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/dragonEye/upper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/dragonEye/upper.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/goatEye/goatPupilMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/goatEye/goatPupilMap.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/goatEye/iris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/goatEye/iris.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/goatEye/lower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/goatEye/lower.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/goatEye/sclera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/goatEye/sclera.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/goatEye/upper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/goatEye/upper.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/noScleraEye/iris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/noScleraEye/iris.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/noScleraEye/lower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/noScleraEye/lower.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/noScleraEye/sclera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/noScleraEye/sclera.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/noScleraEye/upper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/noScleraEye/upper.png -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Eyes/convert/tablegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Eyes/convert/tablegen.py -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/ProcessorExpert.pe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/ProcessorExpert.pe -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Project_Settings/Startup_Code/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Project_Settings/Startup_Code/startup.c -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Sources/Application.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Sources/Application.c -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Sources/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Sources/Application.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Sources/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Sources/Events.c -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Sources/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Sources/Events.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Sources/defaultEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Sources/defaultEye.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Sources/dragonEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Sources/dragonEye.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Sources/goatEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Sources/goatEye.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Sources/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Sources/main.c -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Sources/noScleraEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Sources/noScleraEye.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Sources/uncannyEyes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Sources/uncannyEyes.c -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Sources/uncannyEyes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Sources/uncannyEyes.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/IO_Map/MK64F12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/IO_Map/MK64F12.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/ADC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/ADC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/CAN_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/CAN_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/CMP_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/CMP_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/CMT_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/CMT_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/CRC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/CRC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/DAC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/DAC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/DMAMUX_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/DMAMUX_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/DMA_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/DMA_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/ENET_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/ENET_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/EWM_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/EWM_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/FMC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/FMC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/FTFE_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/FTFE_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/FTM_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/FTM_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/GPIO_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/GPIO_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/I2C_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/I2C_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/LLWU_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/LLWU_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/LPTMR_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/LPTMR_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/MCG_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/MCG_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/MCM_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/MCM_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/OSC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/OSC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/PDB_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/PDB_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/PDD_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/PDD_Types.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/PIT_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/PIT_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/PMC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/PMC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/PORT_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/PORT_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/RCM_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/RCM_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/RNGA_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/RNGA_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/RTC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/RTC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/SAI_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/SAI_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/SCB_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/SCB_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/SDHC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/SDHC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/SIM_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/SIM_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/SMC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/SMC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/SPI_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/SPI_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/SysTick_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/SysTick_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/UART_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/UART_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/USBDCD_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/USBDCD_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/USB_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/USB_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/VREF_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/VREF_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/PDD/WDOG_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/PDD/WDOG_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/System/CPU_Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/System/CPU_Init.c -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/System/CPU_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/System/CPU_Init.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/System/PDD_Includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/System/PDD_Includes.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/System/Peripherals_Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/System/Peripherals_Init.c -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/System/Peripherals_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/System/Peripherals_Init.h -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/Static_Code/System/Vectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/Static_Code/System/Vectors.c -------------------------------------------------------------------------------- /KDS/Hexiwear_Eyes/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_Eyes/readme.txt -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/.cproject -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/.gitignore -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/.project -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/ProcessorExpert.pe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/ProcessorExpert.pe -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Sources/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Sources/Events.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Sources/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Sources/Events.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Sources/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Sources/main.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/IO_Map/MK64F12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/IO_Map/MK64F12.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/ADC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/ADC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/CAN_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/CAN_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/CMP_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/CMP_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/CMT_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/CMT_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/CRC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/CRC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/DAC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/DAC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/DMAMUX_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/DMAMUX_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/DMA_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/DMA_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/ENET_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/ENET_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/EWM_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/EWM_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/FMC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/FMC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/FTFE_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/FTFE_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/FTM_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/FTM_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/GPIO_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/GPIO_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/I2C_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/I2C_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/LLWU_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/LLWU_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/LPTMR_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/LPTMR_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/MCG_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/MCG_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/MCM_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/MCM_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/OSC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/OSC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/PDB_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/PDB_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/PDD_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/PDD_Types.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/PIT_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/PIT_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/PMC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/PMC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/PORT_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/PORT_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/RCM_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/RCM_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/RNGA_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/RNGA_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/RTC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/RTC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/SAI_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/SAI_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/SCB_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/SCB_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/SDHC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/SDHC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/SIM_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/SIM_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/SMC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/SMC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/SPI_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/SPI_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/SysTick_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/SysTick_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/UART_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/UART_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/USBDCD_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/USBDCD_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/USB_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/USB_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/VREF_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/VREF_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/WDOG_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/PDD/WDOG_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/System/CPU_Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/System/CPU_Init.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/System/CPU_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/System/CPU_Init.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/System/PDD_Includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/System/PDD_Includes.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_2_SDKv2/Static_Code/System/Vectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_2_SDKv2/Static_Code/System/Vectors.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/.cproject -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/.gitignore -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/.project -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/ProcessorExpert.pe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/ProcessorExpert.pe -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Raspy/GetData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Raspy/GetData.py -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Raspy/GetDataAll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Raspy/GetDataAll.py -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Raspy/HexiSendSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Raspy/HexiSendSettings.py -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Raspy/RtcUpdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Raspy/RtcUpdate.py -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Raspy/RtcUpdateAll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Raspy/RtcUpdateAll.py -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Raspy/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Raspy/data.csv -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Raspy/gatttool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Raspy/gatttool.py -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Raspy/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Raspy/readme.txt -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Application.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Application.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Application.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Bluetooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Bluetooth.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Bluetooth.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Buzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Buzzer.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Buzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Buzzer.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Cube.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Cube.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Cube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Cube.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Events.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Events.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/HTU21d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/HTU21d.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/HTU21d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/HTU21d.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/HostComm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/HostComm.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/HostComm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/HostComm.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Identify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Identify.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Identify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Identify.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/KW40Comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/KW40Comm.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/KW40Comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/KW40Comm.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Pairing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Pairing.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Pairing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Pairing.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Platform.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Quizz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Quizz.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Quizz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Quizz.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/RNet_App.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/RNet_App.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/RNet_App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/RNet_App.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/RNet_AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/RNet_AppConfig.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/RStdIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/RStdIO.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/RStdIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/RStdIO.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Sensor.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Sensor.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Shell.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Shell.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/UI.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/UI.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/UIMultipleChoice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/UIMultipleChoice.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/UIMultipleChoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/UIMultipleChoice.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Watch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Watch.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/Watch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/Watch.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/hack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/hack.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Sources/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Sources/main.c -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/ADC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/ADC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/CAN_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/CAN_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/CMP_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/CMP_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/CMT_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/CMT_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/CRC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/CRC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/DAC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/DAC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/DMA_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/DMA_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/ENET_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/ENET_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/EWM_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/EWM_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/FMC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/FMC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/FTFE_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/FTFE_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/FTM_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/FTM_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/GPIO_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/GPIO_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/I2C_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/I2C_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/LLWU_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/LLWU_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/LPTMR_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/LPTMR_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/MCG_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/MCG_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/MCM_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/MCM_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/OSC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/OSC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/PDB_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/PDB_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/PDD_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/PDD_Types.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/PIT_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/PIT_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/PMC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/PMC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/PORT_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/PORT_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/RCM_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/RCM_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/RNGA_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/RNGA_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/RTC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/RTC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/SAI_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/SAI_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/SCB_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/SCB_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/SDHC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/SDHC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/SIM_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/SIM_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/SMC_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/SMC_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/SPI_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/SPI_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/UART_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/UART_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/USB_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/USB_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/VREF_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/VREF_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/WDOG_PDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/Static_Code/PDD/WDOG_PDD.h -------------------------------------------------------------------------------- /KDS/Hexiwear_PEx_Dockingstation/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_PEx_Dockingstation/readme.txt -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/.cproject -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/.gitignore -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/.project -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/CMSIS/MK64F12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/CMSIS/MK64F12.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/CMSIS/MK64F12_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/CMSIS/MK64F12_features.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/CMSIS/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/CMSIS/arm_common_tables.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/CMSIS/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/CMSIS/arm_const_structs.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/CMSIS/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/CMSIS/arm_math.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/CMSIS/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/CMSIS/cmsis_gcc.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/CMSIS/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/CMSIS/core_cm4.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/CMSIS/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/CMSIS/core_cmFunc.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/CMSIS/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/CMSIS/core_cmInstr.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/CMSIS/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/CMSIS/core_cmSimd.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/CMSIS/fsl_device_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/CMSIS/fsl_device_registers.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/FreeRTOS/Source/FreeRTOS_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/FreeRTOS/Source/FreeRTOS_license.txt -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/FreeRTOS/config/gcc/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/FreeRTOS/config/gcc/FreeRTOSConfig.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/MK64FN1M0xxx12_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/MK64FN1M0xxx12_flash.ld -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/CLS1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/CLS1.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/CLS1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/CLS1.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/CS1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/CS1.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/CS1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/CS1.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/FRTOS1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/FRTOS1.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/FRTOS1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/FRTOS1.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/HF1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/HF1.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/HF1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/HF1.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/KSDK1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/KSDK1.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/KSDK1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/KSDK1.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LED1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LED1.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LED1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LED1.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LED2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LED2.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LED2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LED2.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LED3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LED3.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LED3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LED3.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LEDpin4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LEDpin4.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LEDpin4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LEDpin4.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LEDpin5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LEDpin5.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LEDpin5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LEDpin5.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LEDpin6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LEDpin6.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LEDpin6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LEDpin6.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LEDpin7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LEDpin7.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LEDpin7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LEDpin7.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LEDpin8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LEDpin8.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LEDpin8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LEDpin8.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LEDpin9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LEDpin9.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/LEDpin9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/LEDpin9.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/MCUC1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/MCUC1.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/MCUC1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/MCUC1.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/MCUC1config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/MCUC1config.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/PE_KSDK_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/PE_KSDK_Types.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/RGBB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/RGBB.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/RGBB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/RGBB.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/RGBG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/RGBG.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/RGBG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/RGBG.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/RGBR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/RGBR.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/RGBR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/RGBR.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/RTT1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/RTT1.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/RTT1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/RTT1.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/RTT_Syscalls_GCC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/RTT_Syscalls_GCC.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/SEGGER_RTT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/SEGGER_RTT.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/SEGGER_RTT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/SEGGER_RTT.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/SEGGER_RTT_Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/SEGGER_RTT_Conf.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/SEGGER_RTT_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/SEGGER_RTT_printf.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/UTIL1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/UTIL1.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/UTIL1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/UTIL1.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/UTIL1config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/UTIL1config.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/WAIT1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/WAIT1.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/WAIT1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/WAIT1.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/XF1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/XF1.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/PEx/XF1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/PEx/XF1.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/board/Hexiwear_MK64FN1M0xxx12.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/board/Hexiwear_MK64FN1M0xxx12.mex -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/board/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/board/board.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/board/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/board/board.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/board/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/board/clock_config.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/board/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/board/clock_config.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/board/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/board/pin_mux.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/board/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/board/pin_mux.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_adc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_adc16.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_adc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_adc16.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_clock.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_clock.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_cmp.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_cmp.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_cmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_cmt.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_cmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_cmt.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_common.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_common.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_crc.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_crc.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_dac.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_dac.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_dmamux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_dmamux.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_dmamux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_dmamux.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_dspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_dspi.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_dspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_dspi.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_dspi_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_dspi_edma.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_dspi_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_dspi_edma.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_dspi_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_dspi_freertos.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_dspi_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_dspi_freertos.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_edma.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_edma.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_enet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_enet.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_enet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_enet.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_ewm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_ewm.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_ewm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_ewm.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_flash.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_flash.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_flexbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_flexbus.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_flexbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_flexbus.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_flexcan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_flexcan.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_flexcan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_flexcan.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_ftm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_ftm.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_ftm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_ftm.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_gpio.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_gpio.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_i2c.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_i2c.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_i2c_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_i2c_edma.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_i2c_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_i2c_edma.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_i2c_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_i2c_freertos.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_i2c_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_i2c_freertos.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_llwu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_llwu.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_llwu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_llwu.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_lptmr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_lptmr.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_lptmr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_lptmr.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_mpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_mpu.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_mpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_mpu.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_pdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_pdb.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_pdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_pdb.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_pit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_pit.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_pit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_pit.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_pmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_pmc.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_pmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_pmc.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_port.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_rcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_rcm.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_rcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_rcm.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_rnga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_rnga.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_rnga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_rnga.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_rtc.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_rtc.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_sai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_sai.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_sai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_sai.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_sai_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_sai_edma.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_sai_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_sai_edma.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_sdhc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_sdhc.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_sdhc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_sdhc.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_sim.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_sim.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_smc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_smc.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_smc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_smc.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_uart.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_uart.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_uart_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_uart_edma.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_uart_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_uart_edma.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_uart_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_uart_freertos.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_uart_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_uart_freertos.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_vref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_vref.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_vref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_vref.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_wdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_wdog.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/drivers/fsl_wdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/drivers/fsl_wdog.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/croutine.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/event_groups.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/include/FreeRTOS.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/include/StackMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/include/StackMacros.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/include/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/include/croutine.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/include/event_groups.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/include/list.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/include/mpu_wrappers.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/include/portable.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/include/projdefs.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/include/queue.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/include/semphr.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/include/task.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/include/timers.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/list.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/queue.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/tasks.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/freertos/Source/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/freertos/Source/timers.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/readme.txt -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/settings/Hexiwear_SDKv2_Debug_PNE.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/settings/Hexiwear_SDKv2_Debug_PNE.launch -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/source/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/source/Events.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/source/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/source/Events.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/source/main.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/startup/startup_MK64F12.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/startup/startup_MK64F12.S -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/startup/system_MK64F12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/startup/system_MK64F12.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/startup/system_MK64F12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/startup/system_MK64F12.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/utilities/fsl_debug_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/utilities/fsl_debug_console.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/utilities/fsl_debug_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/utilities/fsl_debug_console.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/utilities/fsl_notifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/utilities/fsl_notifier.c -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/utilities/fsl_notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/utilities/fsl_notifier.h -------------------------------------------------------------------------------- /KDS/Hexiwear_SDKv2/utilities/fsl_sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_SDKv2/utilities/fsl_sbrk.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/.cproject -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | 3 | /.settings/ -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/.project -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/FreeRTOS/croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/FreeRTOS/croutine.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/FreeRTOS/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/FreeRTOS/event_groups.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/FreeRTOS.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/croutine.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/list.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/portable.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/projdefs.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/queue.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/semphr.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/task.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/FreeRTOS/include/timers.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/FreeRTOS/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/FreeRTOS/list.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/FreeRTOS/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/FreeRTOS/queue.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/FreeRTOS/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/FreeRTOS/tasks.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/FreeRTOS/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/FreeRTOS/timers.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/FreeRTOSConfig.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/app.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/app.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/debug.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/ft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/ft.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/ft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/ft.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/ft_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/ft_gpio.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/gatt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/gatt_db.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/tsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/tsi.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/tsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/Hexiwear_bluetooth/tsi.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/CopyToRam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/CopyToRam.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/DEFlashPartition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/DEFlashPartition.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/DFlashGetProtection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/DFlashGetProtection.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/DFlashSetProtection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/DFlashSetProtection.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/EEEWrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/EEEWrite.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/EERAMGetProtection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/EERAMGetProtection.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/EERAMSetProtection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/EERAMSetProtection.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FTFx_KX_flash_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FTFx_KX_flash_config.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashCheckSum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashCheckSum.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashCommandSequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashCommandSequence.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashEraseAllBlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashEraseAllBlock.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashEraseBlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashEraseBlock.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashEraseResume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashEraseResume.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashEraseSector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashEraseSector.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashEraseSuspend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashEraseSuspend.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashGetSecurityState.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashGetSecurityState.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashInit.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashProgram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashProgram.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashProgramCheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashProgramCheck.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashProgramOnce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashProgramOnce.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashProgramSection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashProgramSection.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashReadOnce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashReadOnce.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashReadResource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashReadResource.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashSecurityBypass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashSecurityBypass.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashVerifyAllBlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashVerifyAllBlock.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashVerifyBlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashVerifyBlock.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/FlashVerifySection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/FlashVerifySection.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/PFlashGetProtection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/PFlashGetProtection.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/PFlashSetProtection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/PFlashSetProtection.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/PFlashSwap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/PFlashSwap.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/PFlashSwapCtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/PFlashSwapCtl.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/SSD_FTFx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/SSD_FTFx.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/SSD_FTFx_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/SSD_FTFx_Common.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/SSD_FTFx_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/SSD_FTFx_Internal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/SSD_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/SSD_Types.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/SetEEEEnable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/SetEEEEnable.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/board.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/board.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_adc16_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_adc16_common.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_adc16_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_adc16_driver.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_adc16_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_adc16_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_adc16_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_adc16_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_adc16_irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_adc16_irq.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_clock_MKW40Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_clock_MKW40Z4.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_clock_MKW40Z4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_clock_MKW40Z4.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_clock_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_clock_manager.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_clock_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_clock_manager.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_cmp_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_cmp_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_cmp_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_cmp_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_cmt_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_cmt_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_cmt_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_cmt_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_cop_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_cop_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_cop_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_cop_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_crc_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_crc_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_crc_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_crc_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dac_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dac_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dac_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dac_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_debug_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_debug_console.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dma_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dma_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dma_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dma_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dma_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dma_request.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dmamux_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dmamux_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dspi_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dspi_hal.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dspi_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dspi_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dspi_slave_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_dspi_slave_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_edma_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_edma_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_edma_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_edma_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_edma_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_edma_request.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ewm_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ewm_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ewm_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ewm_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_flexbus_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_flexbus_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_flexbus_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_flexbus_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ftm_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ftm_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ftm_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ftm_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_gpio_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_gpio_common.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_gpio_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_gpio_driver.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_gpio_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_gpio_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_gpio_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_gpio_hal.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_gpio_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_gpio_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_gpio_irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_gpio_irq.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_gpio_lpm_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_gpio_lpm_callback.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_hwtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_hwtimer.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_hwtimer_pit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_hwtimer_pit.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_hwtimer_systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_hwtimer_systick.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_i2c_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_i2c_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_i2c_master_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_i2c_master_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_i2c_slave_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_i2c_slave_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_interrupt_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_interrupt_manager.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_interrupt_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_interrupt_manager.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_llwu_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_llwu_hal.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_llwu_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_llwu_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_lptmr_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_lptmr_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_lptmr_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_lptmr_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_lpuart_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_lpuart_common.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_lpuart_dma_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_lpuart_dma_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_lpuart_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_lpuart_driver.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_lpuart_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_lpuart_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_lpuart_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_lpuart_hal.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_lpuart_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_lpuart_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_common.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_driver.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_driver_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_driver_aes.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_driver_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_driver_aes.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_driver_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_driver_hash.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_driver_prv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_driver_prv.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_hal.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_ltc_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_mcg_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_mcg_hal.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_mcg_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_mcg_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_mcg_hal_modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_mcg_hal_modes.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_mcg_hal_modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_mcg_hal_modes.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_mmcau_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_mmcau_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_os_abstraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_os_abstraction.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_os_abstraction_bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_os_abstraction_bm.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_osc_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_osc_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_pcc_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_pcc_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_pdb_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_pdb_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_pdb_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_pdb_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_pit_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_pit_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_pit_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_pit_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_pmc_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_pmc_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_port_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_port_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_power_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_power_manager.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_power_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_power_manager.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_rcm_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_rcm_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_rnga_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_rnga_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_rnga_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_rnga_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_rtc_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_rtc_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_rtc_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_rtc_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_sai_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_sai_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_sai_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_sai_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_sim_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_sim_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_sim_hal_MKW40Z4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_sim_hal_MKW40Z4.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_sim_hal_MKW40Z4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_sim_hal_MKW40Z4.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_smc_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_smc_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tpm_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tpm_common.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tpm_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tpm_driver.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tpm_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tpm_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tpm_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tpm_hal.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tpm_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tpm_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_trng_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_trng_common.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_trng_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_trng_driver.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_trng_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_trng_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_trng_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_trng_hal.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_trng_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_trng_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tsi_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tsi_common.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tsi_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tsi_driver.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tsi_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tsi_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tsi_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tsi_hal.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tsi_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_tsi_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_uart_dma_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_uart_dma_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_uart_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_uart_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_uart_edma_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_uart_edma_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_uart_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_uart_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_vref_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_vref_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_vref_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_vref_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_wdog_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_wdog_driver.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_wdog_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/fsl_wdog_hal.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/gpio_pins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/gpio_pins.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/gpio_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/gpio_pins.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/hardware_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/hardware_init.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/pin_mux.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/pin_mux.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/print_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/print_scan.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/KSDK/print_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/KSDK/print_scan.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuCriticalSection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuCriticalSection.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuCriticalSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuCriticalSection.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuLib.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuLib.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuLibconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuLibconfig.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuPercepio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuPercepio.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuPercepio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuPercepio.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuPercepioconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuPercepioconfig.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuRTOS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuRTOS.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuRTOS.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuRTOSconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuRTOSconfig.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuRTT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuRTT.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuRTT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuRTT.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuRTTconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuRTTconfig.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuShell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuShell.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuShell.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuShellconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuShellconfig.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuSystemView.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuSystemView.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuSystemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuSystemView.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuSystemViewconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuSystemViewconfig.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuUtility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuUtility.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuUtility.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuUtilityconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuUtilityconfig.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuWait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuWait.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuWait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuWait.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuWaitconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuWaitconfig.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuXFormat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuXFormat.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuXFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuXFormat.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/McuXFormatconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/McuXFormatconfig.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/McuLib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/McuLib/readme.txt -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/SEGGER/SEGGER_RTT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/SEGGER/SEGGER_RTT.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/SEGGER/SEGGER_RTT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/SEGGER/SEGGER_RTT.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/SEGGER/SEGGER_RTT_Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/SEGGER/SEGGER_RTT_Conf.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/SEGGER/SEGGER_RTT_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/SEGGER/SEGGER_RTT_printf.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/SEGGER/SEGGER_SYSVIEW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/SEGGER/SEGGER_SYSVIEW.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/SEGGER/SEGGER_SYSVIEW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/SEGGER/SEGGER_SYSVIEW.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/SEGGER/SEGGER_SYSVIEW_Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/SEGGER/SEGGER_SYSVIEW_Conf.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/SEGGER/SEGGER_SYSVIEW_Int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/SEGGER/SEGGER_SYSVIEW_Int.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/TraceRecorder/trc_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/TraceRecorder/trc_readme.txt -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/app_preinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/app_preinclude.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/ApplMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/ApplMain.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/ApplMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/ApplMain.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/att_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/att_callbacks.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/att_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/att_errors.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/att_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/att_interface.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/att_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/att_params.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/att_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/att_types.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/battery_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/battery_service.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/ble_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/ble_constants.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/ble_general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/ble_general.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/ble_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/ble_globals.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/ble_host_tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/ble_host_tasks.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/ble_host_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/ble_host_tasks.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/ble_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/ble_init.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/ble_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/ble_init.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/ble_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/ble_utils.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/gap_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/gap_interface.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/gap_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/gap_types.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_alloc_x.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_alloc_x.def -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_database.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_database.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_database.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_db_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_db_macros.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_decl_x.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_decl_x.def -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_enum_x.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_enum_x.def -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_init_x.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_init_x.def -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_interface.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_size_x.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_size_x.def -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/gatt_types.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/hci_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/hci_interface.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/hci_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/hci_transport.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/hci_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/hci_types.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/ieee11073.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/ieee11073.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/l2ca_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/l2ca_interface.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/l2ca_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/l2ca_types.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/smp_packets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/smp_packets.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/bluetooth/smp_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/bluetooth/smp_types.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/BLEDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/BLEDefaults.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/DCDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/DCDC.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/DCDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/DCDC.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/Eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/Eeprom.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/Eeprom_M25P80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/Eeprom_M25P80.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/EmbeddedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/EmbeddedTypes.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/Flash_Adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/Flash_Adapter.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/Flash_Adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/Flash_Adapter.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/FunctionLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/FunctionLib.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/FunctionLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/FunctionLib.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/FwkInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/FwkInit.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/GenericList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/GenericList.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/GenericList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/GenericList.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/KW4xXcvrDrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/KW4xXcvrDrv.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/KW4xXcvrDrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/KW4xXcvrDrv.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/Keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/Keyboard.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/Keyboard.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/LED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/LED.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/LED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/LED.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/MemManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/MemManager.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/MemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/MemManager.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/Messaging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/Messaging.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/Messaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/Messaging.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/ModuleInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/ModuleInfo.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/OtaSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/OtaSupport.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/OtaSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/OtaSupport.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/PWR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/PWR.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/PWRLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/PWRLib.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/PWRLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/PWRLib.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/PWR_BLE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/PWR_BLE.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/PWR_BLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/PWR_BLE.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/PWR_Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/PWR_Interface.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/Panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/Panic.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/Panic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/Panic.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/RNG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/RNG.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/RNG_Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/RNG_Interface.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/Reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/Reset.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/SPI_Adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/SPI_Adapter.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/SPI_Adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/SPI_Adapter.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/SecLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/SecLib.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/SecLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/SecLib.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/SerialManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/SerialManager.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/SerialManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/SerialManager.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/TMR_Adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/TMR_Adapter.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/TMR_Adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/TMR_Adapter.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/TimersManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/TimersManager.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/TimersManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/TimersManager.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/ZigbeeDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/ZigbeeDefaults.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/fsl_osa_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/fsl_osa_ext.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/overwrites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/overwrites.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/tsm_ll_timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/tsm_ll_timing.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/tsm_ll_timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/tsm_ll_timing.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/framework/tsm_timing_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/framework/tsm_timing_ble.h -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/lib/.gitignore: -------------------------------------------------------------------------------- 1 | /new/ 2 | /orig/ 3 | -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/lib/libble_controller.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/lib/libble_controller.a -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/lib/libble_host.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/lib/libble_host.a -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/lib/libcrypto_M0.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/lib/libcrypto_M0.a -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/Sources/wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/Sources/wrapper.c -------------------------------------------------------------------------------- /KDS/Hexiwear_bluetooth/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/Hexiwear_bluetooth/readme.txt -------------------------------------------------------------------------------- /KDS/data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/KDS/data.xlsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/README.md -------------------------------------------------------------------------------- /binaries/HEXIWEAR_KW40.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/binaries/HEXIWEAR_KW40.bin -------------------------------------------------------------------------------- /binaries/HEXIWEAR_MK64_V1.0.2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/binaries/HEXIWEAR_MK64_V1.0.2.bin -------------------------------------------------------------------------------- /binaries/ProgramWithJlink_K64F.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/binaries/ProgramWithJlink_K64F.bat -------------------------------------------------------------------------------- /binaries/ProgramWithJlink_KW40.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/binaries/ProgramWithJlink_KW40.bat -------------------------------------------------------------------------------- /binaries/jlink_k64f.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/binaries/jlink_k64f.script -------------------------------------------------------------------------------- /binaries/jlink_kw40.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/binaries/jlink_kw40.script -------------------------------------------------------------------------------- /binaries/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErichStyger/Hexiwear_v2/HEAD/binaries/readme.txt --------------------------------------------------------------------------------