├── README.md ├── STM32F1_INA219.cogui ├── STM32F1_INA219.comarker ├── STM32F1_INA219.coproj ├── STM32F1_INA219 ├── Debug │ ├── bin │ │ ├── STM32F1_INA219.bin │ │ ├── STM32F1_INA219.elf │ │ ├── STM32F1_INA219.hex │ │ ├── STM32F1_INA219.map │ │ └── history.xml │ └── obj │ │ ├── dependencies.xml │ │ └── history.xml └── STM32F1_INA219.elf.xcodeproj │ └── project.pbxproj ├── bsp ├── open103z_systick.c └── open103z_systick.h ├── cmsis ├── core_cm3.h ├── core_cmFunc.h └── core_cmInstr.h ├── cmsis_boot ├── startup │ └── startup_stm32f10x_hd.c ├── stm32f10x.h ├── stm32f10x_conf.h ├── system_stm32f10x.c └── system_stm32f10x.h ├── devices ├── font_6x8.h ├── stm32f10x_ina219.c ├── stm32f10x_ina219.h ├── stm32f10x_pcd8544.c ├── stm32f10x_pcd8544.h ├── stm32f10x_util.c └── stm32f10x_util.h ├── main.c └── stm_lib ├── inc ├── stm32f10x_gpio.h ├── stm32f10x_i2c.h ├── stm32f10x_rcc.h └── stm32f10x_spi.h └── src ├── stm32f10x_gpio.c ├── stm32f10x_i2c.c ├── stm32f10x_rcc.c └── stm32f10x_spi.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/README.md -------------------------------------------------------------------------------- /STM32F1_INA219.cogui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/STM32F1_INA219.cogui -------------------------------------------------------------------------------- /STM32F1_INA219.comarker: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /STM32F1_INA219.coproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/STM32F1_INA219.coproj -------------------------------------------------------------------------------- /STM32F1_INA219/Debug/bin/STM32F1_INA219.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/STM32F1_INA219/Debug/bin/STM32F1_INA219.bin -------------------------------------------------------------------------------- /STM32F1_INA219/Debug/bin/STM32F1_INA219.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/STM32F1_INA219/Debug/bin/STM32F1_INA219.elf -------------------------------------------------------------------------------- /STM32F1_INA219/Debug/bin/STM32F1_INA219.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/STM32F1_INA219/Debug/bin/STM32F1_INA219.hex -------------------------------------------------------------------------------- /STM32F1_INA219/Debug/bin/STM32F1_INA219.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/STM32F1_INA219/Debug/bin/STM32F1_INA219.map -------------------------------------------------------------------------------- /STM32F1_INA219/Debug/bin/history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/STM32F1_INA219/Debug/bin/history.xml -------------------------------------------------------------------------------- /STM32F1_INA219/Debug/obj/dependencies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/STM32F1_INA219/Debug/obj/dependencies.xml -------------------------------------------------------------------------------- /STM32F1_INA219/Debug/obj/history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/STM32F1_INA219/Debug/obj/history.xml -------------------------------------------------------------------------------- /STM32F1_INA219/STM32F1_INA219.elf.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/STM32F1_INA219/STM32F1_INA219.elf.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /bsp/open103z_systick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/bsp/open103z_systick.c -------------------------------------------------------------------------------- /bsp/open103z_systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/bsp/open103z_systick.h -------------------------------------------------------------------------------- /cmsis/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/cmsis/core_cm3.h -------------------------------------------------------------------------------- /cmsis/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/cmsis/core_cmFunc.h -------------------------------------------------------------------------------- /cmsis/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/cmsis/core_cmInstr.h -------------------------------------------------------------------------------- /cmsis_boot/startup/startup_stm32f10x_hd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/cmsis_boot/startup/startup_stm32f10x_hd.c -------------------------------------------------------------------------------- /cmsis_boot/stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/cmsis_boot/stm32f10x.h -------------------------------------------------------------------------------- /cmsis_boot/stm32f10x_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/cmsis_boot/stm32f10x_conf.h -------------------------------------------------------------------------------- /cmsis_boot/system_stm32f10x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/cmsis_boot/system_stm32f10x.c -------------------------------------------------------------------------------- /cmsis_boot/system_stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/cmsis_boot/system_stm32f10x.h -------------------------------------------------------------------------------- /devices/font_6x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/devices/font_6x8.h -------------------------------------------------------------------------------- /devices/stm32f10x_ina219.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/devices/stm32f10x_ina219.c -------------------------------------------------------------------------------- /devices/stm32f10x_ina219.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/devices/stm32f10x_ina219.h -------------------------------------------------------------------------------- /devices/stm32f10x_pcd8544.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/devices/stm32f10x_pcd8544.c -------------------------------------------------------------------------------- /devices/stm32f10x_pcd8544.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/devices/stm32f10x_pcd8544.h -------------------------------------------------------------------------------- /devices/stm32f10x_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/devices/stm32f10x_util.c -------------------------------------------------------------------------------- /devices/stm32f10x_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/devices/stm32f10x_util.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/main.c -------------------------------------------------------------------------------- /stm_lib/inc/stm32f10x_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/stm_lib/inc/stm32f10x_gpio.h -------------------------------------------------------------------------------- /stm_lib/inc/stm32f10x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/stm_lib/inc/stm32f10x_i2c.h -------------------------------------------------------------------------------- /stm_lib/inc/stm32f10x_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/stm_lib/inc/stm32f10x_rcc.h -------------------------------------------------------------------------------- /stm_lib/inc/stm32f10x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/stm_lib/inc/stm32f10x_spi.h -------------------------------------------------------------------------------- /stm_lib/src/stm32f10x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/stm_lib/src/stm32f10x_gpio.c -------------------------------------------------------------------------------- /stm_lib/src/stm32f10x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/stm_lib/src/stm32f10x_i2c.c -------------------------------------------------------------------------------- /stm_lib/src/stm32f10x_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/stm_lib/src/stm32f10x_rcc.c -------------------------------------------------------------------------------- /stm_lib/src/stm32f10x_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aytacdilek/STM32F1_INA219-NOKIA5110/HEAD/stm_lib/src/stm32f10x_spi.c --------------------------------------------------------------------------------