├── .gitmodules ├── .travis.yml ├── App ├── exception.c ├── main.c ├── usb_device.c ├── usb_device.h └── usbd_config.h ├── BSP ├── STM32F042F6.ioc ├── STM32F042F6_FLASH.ld ├── bsp_adc.c ├── bsp_adc.h ├── bsp_io.c ├── bsp_io.h ├── bsp_system.c ├── bsp_system.h ├── bsp_usart.c ├── bsp_usart.h ├── bsp_usb.c ├── bsp_usb.h ├── startup_stm32f042x6.s ├── system_stm32f0xx.c └── xpd_config.h ├── Charger ├── chrg_ctrl.c ├── chrg_ctrl.h ├── chrg_if.c └── chrg_if.h ├── LICENSE ├── Makefile ├── README.md ├── Sensor ├── analog.c ├── analog.h ├── sens_if.c └── sens_if.h └── VCP ├── vcp_if.c └── vcp_if.h /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/.travis.yml -------------------------------------------------------------------------------- /App/exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/App/exception.c -------------------------------------------------------------------------------- /App/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/App/main.c -------------------------------------------------------------------------------- /App/usb_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/App/usb_device.c -------------------------------------------------------------------------------- /App/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/App/usb_device.h -------------------------------------------------------------------------------- /App/usbd_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/App/usbd_config.h -------------------------------------------------------------------------------- /BSP/STM32F042F6.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/BSP/STM32F042F6.ioc -------------------------------------------------------------------------------- /BSP/STM32F042F6_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/BSP/STM32F042F6_FLASH.ld -------------------------------------------------------------------------------- /BSP/bsp_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/BSP/bsp_adc.c -------------------------------------------------------------------------------- /BSP/bsp_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/BSP/bsp_adc.h -------------------------------------------------------------------------------- /BSP/bsp_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/BSP/bsp_io.c -------------------------------------------------------------------------------- /BSP/bsp_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/BSP/bsp_io.h -------------------------------------------------------------------------------- /BSP/bsp_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/BSP/bsp_system.c -------------------------------------------------------------------------------- /BSP/bsp_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/BSP/bsp_system.h -------------------------------------------------------------------------------- /BSP/bsp_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/BSP/bsp_usart.c -------------------------------------------------------------------------------- /BSP/bsp_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/BSP/bsp_usart.h -------------------------------------------------------------------------------- /BSP/bsp_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/BSP/bsp_usb.c -------------------------------------------------------------------------------- /BSP/bsp_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/BSP/bsp_usb.h -------------------------------------------------------------------------------- /BSP/startup_stm32f042x6.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/BSP/startup_stm32f042x6.s -------------------------------------------------------------------------------- /BSP/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/BSP/system_stm32f0xx.c -------------------------------------------------------------------------------- /BSP/xpd_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/BSP/xpd_config.h -------------------------------------------------------------------------------- /Charger/chrg_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/Charger/chrg_ctrl.c -------------------------------------------------------------------------------- /Charger/chrg_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/Charger/chrg_ctrl.h -------------------------------------------------------------------------------- /Charger/chrg_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/Charger/chrg_if.c -------------------------------------------------------------------------------- /Charger/chrg_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/Charger/chrg_if.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/README.md -------------------------------------------------------------------------------- /Sensor/analog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/Sensor/analog.c -------------------------------------------------------------------------------- /Sensor/analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/Sensor/analog.h -------------------------------------------------------------------------------- /Sensor/sens_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/Sensor/sens_if.c -------------------------------------------------------------------------------- /Sensor/sens_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/Sensor/sens_if.h -------------------------------------------------------------------------------- /VCP/vcp_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/VCP/vcp_if.c -------------------------------------------------------------------------------- /VCP/vcp_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benedekkupper/DebugDongleFW/HEAD/VCP/vcp_if.h --------------------------------------------------------------------------------