├── DIY手表_PCB.zip ├── DIY手表_SHEET.pdf ├── Picture ├── 300.bmp ├── BP1.BMP ├── BP2.BMP ├── BP3.BMP ├── ROTA.BMP ├── UI.BMP ├── ZY.BMP ├── beep.BMP ├── beep1.BMP ├── blbl.BMP ├── gamebox.bmp ├── inta.BMP ├── shoudiantong.BMP ├── tim.BMP ├── time_sec.BMP └── txxt.BMP ├── README.md └── Software ├── Doc └── ReadMe.txt ├── Libraries ├── CMSIS │ ├── core_cm3.c │ ├── core_cm3.h │ ├── startup │ │ ├── startup_stm32f10x_cl.s │ │ ├── startup_stm32f10x_hd.s │ │ ├── startup_stm32f10x_hd_vl.s │ │ ├── startup_stm32f10x_ld.s │ │ ├── startup_stm32f10x_ld_vl.s │ │ ├── startup_stm32f10x_md.s │ │ ├── startup_stm32f10x_md_vl.s │ │ └── startup_stm32f10x_xl.s │ ├── stm32f10x.h │ ├── system_stm32f10x.c │ └── system_stm32f10x.h └── STM32F10x_StdPeriph_Driver │ ├── Release_Notes.html │ ├── inc │ ├── misc.h │ ├── stm32f10x_adc.h │ ├── stm32f10x_bkp.h │ ├── stm32f10x_can.h │ ├── stm32f10x_cec.h │ ├── stm32f10x_crc.h │ ├── stm32f10x_dac.h │ ├── stm32f10x_dbgmcu.h │ ├── stm32f10x_dma.h │ ├── stm32f10x_exti.h │ ├── stm32f10x_flash.h │ ├── stm32f10x_fsmc.h │ ├── stm32f10x_gpio.h │ ├── stm32f10x_i2c.h │ ├── stm32f10x_iwdg.h │ ├── stm32f10x_pwr.h │ ├── stm32f10x_rcc.h │ ├── stm32f10x_rtc.h │ ├── stm32f10x_sdio.h │ ├── stm32f10x_spi.h │ ├── stm32f10x_tim.h │ ├── stm32f10x_usart.h │ └── stm32f10x_wwdg.h │ └── src │ ├── misc.c │ ├── stm32f10x_adc.c │ ├── stm32f10x_bkp.c │ ├── stm32f10x_can.c │ ├── stm32f10x_cec.c │ ├── stm32f10x_crc.c │ ├── stm32f10x_dac.c │ ├── stm32f10x_dbgmcu.c │ ├── stm32f10x_dma.c │ ├── stm32f10x_exti.c │ ├── stm32f10x_flash.c │ ├── stm32f10x_fsmc.c │ ├── stm32f10x_gpio.c │ ├── stm32f10x_i2c.c │ ├── stm32f10x_iwdg.c │ ├── stm32f10x_pwr.c │ ├── stm32f10x_rcc.c │ ├── stm32f10x_rtc.c │ ├── stm32f10x_sdio.c │ ├── stm32f10x_spi.c │ ├── stm32f10x_tim.c │ ├── stm32f10x_usart.c │ └── stm32f10x_wwdg.c ├── Project ├── BH-F103.uvguix.asus ├── BH-F103.uvoptx ├── BH-F103.uvprojx ├── DebugConfig │ ├── Target_1_STM32F103C8.dbgconf │ └── Target_1_STM32F103ZE.dbgconf ├── EventRecorderStub.scvd └── Objects │ └── BH-F103.hex ├── User ├── BUTTON │ ├── BUTTON.C │ └── BUTTON.H ├── BUZZER │ ├── BUZZER.C │ └── BUZZER.H ├── DISPLAY │ ├── ANIMOTION.C │ ├── ANIMOTION.H │ ├── BREATHSCREEN.C │ ├── BREATHSCREEN.H │ ├── DISPLAY.C │ └── DISPLAY.H ├── ITEM │ ├── ITEM1.C │ ├── ITEM1.H │ ├── ITEM1 │ │ ├── ITEM_LIGHT.C │ │ ├── ITEM_LIGHT.H │ │ ├── ITEM_SOUND.C │ │ ├── ITEM_SOUND.H │ │ ├── ITEM_TIMESET.C │ │ └── ITEM_TIMESET.H │ ├── ITEM2.C │ ├── ITEM2.H │ ├── ITEM2 │ │ ├── GAME1.C │ │ ├── GAME1.H │ │ ├── GAME2.C │ │ └── GAME2.H │ ├── ITEM3.C │ ├── ITEM3.H │ ├── ITEM4.C │ ├── ITEM4.H │ ├── ITEM5.C │ └── ITEM5.H ├── MENU │ ├── MENU.C │ ├── MENU.H │ └── MENU_TITLE.H ├── MPU6050 │ ├── bsp_SysTick.c │ ├── bsp_SysTick.h │ ├── bsp_mpu6050.c │ ├── bsp_mpu6050.h │ └── eMPL │ │ ├── dmpKey.h │ │ ├── dmpmap.h │ │ ├── inv_mpu.c │ │ ├── inv_mpu.h │ │ ├── inv_mpu_dmp_motion_driver.c │ │ └── inv_mpu_dmp_motion_driver.h ├── MY_MENU │ ├── MY_MENU.C │ └── MY_MENU.H ├── WATCH │ ├── DS3231.C │ ├── DS3231.H │ ├── WATCH.C │ ├── WATCH.H │ ├── bsp_power.c │ └── bsp_power.h ├── bsp_GENERALTIME │ ├── bsp_time.c │ └── bsp_time.h ├── bsp_OLED │ ├── bsp_Font.c │ ├── bsp_Font.h │ ├── bsp_oled.c │ └── bsp_oled.h ├── bsp_USART │ ├── bsp_usart.c │ └── bsp_usart.h ├── bsp_rtc │ ├── bsp_rtc.c │ └── bsp_rtc.h ├── main.c ├── read.txt ├── stm32f10x_conf.h ├── stm32f10x_it.c └── stm32f10x_it.h └── read.txt /DIY手表_PCB.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/DIY手表_PCB.zip -------------------------------------------------------------------------------- /DIY手表_SHEET.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/DIY手表_SHEET.pdf -------------------------------------------------------------------------------- /Picture/300.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Picture/300.bmp -------------------------------------------------------------------------------- /Picture/BP1.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Picture/BP1.BMP -------------------------------------------------------------------------------- /Picture/BP2.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Picture/BP2.BMP -------------------------------------------------------------------------------- /Picture/BP3.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Picture/BP3.BMP -------------------------------------------------------------------------------- /Picture/ROTA.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Picture/ROTA.BMP -------------------------------------------------------------------------------- /Picture/UI.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Picture/UI.BMP -------------------------------------------------------------------------------- /Picture/ZY.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Picture/ZY.BMP -------------------------------------------------------------------------------- /Picture/beep.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Picture/beep.BMP -------------------------------------------------------------------------------- /Picture/beep1.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Picture/beep1.BMP -------------------------------------------------------------------------------- /Picture/blbl.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Picture/blbl.BMP -------------------------------------------------------------------------------- /Picture/gamebox.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Picture/gamebox.bmp -------------------------------------------------------------------------------- /Picture/inta.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Picture/inta.BMP -------------------------------------------------------------------------------- /Picture/shoudiantong.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Picture/shoudiantong.BMP -------------------------------------------------------------------------------- /Picture/tim.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Picture/tim.BMP -------------------------------------------------------------------------------- /Picture/time_sec.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Picture/time_sec.BMP -------------------------------------------------------------------------------- /Picture/txxt.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Picture/txxt.BMP -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/README.md -------------------------------------------------------------------------------- /Software/Doc/ReadMe.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software/Libraries/CMSIS/core_cm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/CMSIS/core_cm3.c -------------------------------------------------------------------------------- /Software/Libraries/CMSIS/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/CMSIS/core_cm3.h -------------------------------------------------------------------------------- /Software/Libraries/CMSIS/startup/startup_stm32f10x_cl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/CMSIS/startup/startup_stm32f10x_cl.s -------------------------------------------------------------------------------- /Software/Libraries/CMSIS/startup/startup_stm32f10x_hd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/CMSIS/startup/startup_stm32f10x_hd.s -------------------------------------------------------------------------------- /Software/Libraries/CMSIS/startup/startup_stm32f10x_hd_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/CMSIS/startup/startup_stm32f10x_hd_vl.s -------------------------------------------------------------------------------- /Software/Libraries/CMSIS/startup/startup_stm32f10x_ld.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/CMSIS/startup/startup_stm32f10x_ld.s -------------------------------------------------------------------------------- /Software/Libraries/CMSIS/startup/startup_stm32f10x_ld_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/CMSIS/startup/startup_stm32f10x_ld_vl.s -------------------------------------------------------------------------------- /Software/Libraries/CMSIS/startup/startup_stm32f10x_md.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/CMSIS/startup/startup_stm32f10x_md.s -------------------------------------------------------------------------------- /Software/Libraries/CMSIS/startup/startup_stm32f10x_md_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/CMSIS/startup/startup_stm32f10x_md_vl.s -------------------------------------------------------------------------------- /Software/Libraries/CMSIS/startup/startup_stm32f10x_xl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/CMSIS/startup/startup_stm32f10x_xl.s -------------------------------------------------------------------------------- /Software/Libraries/CMSIS/stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/CMSIS/stm32f10x.h -------------------------------------------------------------------------------- /Software/Libraries/CMSIS/system_stm32f10x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/CMSIS/system_stm32f10x.c -------------------------------------------------------------------------------- /Software/Libraries/CMSIS/system_stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/CMSIS/system_stm32f10x.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/Release_Notes.html -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/misc.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_adc.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_bkp.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_can.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_cec.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_crc.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dac.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dbgmcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dbgmcu.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dma.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_exti.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_flash.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_fsmc.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_gpio.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_i2c.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_iwdg.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_pwr.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_rcc.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_rtc.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_sdio.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_spi.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_tim.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_usart.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_wwdg.h -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/misc.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_adc.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_bkp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_bkp.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_can.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_cec.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_crc.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dac.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dbgmcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dbgmcu.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dma.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_exti.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_flash.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_fsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_fsmc.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_gpio.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_i2c.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_iwdg.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_pwr.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rcc.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rtc.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_sdio.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_spi.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_tim.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_usart.c -------------------------------------------------------------------------------- /Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_wwdg.c -------------------------------------------------------------------------------- /Software/Project/BH-F103.uvguix.asus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Project/BH-F103.uvguix.asus -------------------------------------------------------------------------------- /Software/Project/BH-F103.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Project/BH-F103.uvoptx -------------------------------------------------------------------------------- /Software/Project/BH-F103.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Project/BH-F103.uvprojx -------------------------------------------------------------------------------- /Software/Project/DebugConfig/Target_1_STM32F103C8.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Project/DebugConfig/Target_1_STM32F103C8.dbgconf -------------------------------------------------------------------------------- /Software/Project/DebugConfig/Target_1_STM32F103ZE.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Project/DebugConfig/Target_1_STM32F103ZE.dbgconf -------------------------------------------------------------------------------- /Software/Project/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Project/EventRecorderStub.scvd -------------------------------------------------------------------------------- /Software/Project/Objects/BH-F103.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/Project/Objects/BH-F103.hex -------------------------------------------------------------------------------- /Software/User/BUTTON/BUTTON.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/BUTTON/BUTTON.C -------------------------------------------------------------------------------- /Software/User/BUTTON/BUTTON.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/BUTTON/BUTTON.H -------------------------------------------------------------------------------- /Software/User/BUZZER/BUZZER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/BUZZER/BUZZER.C -------------------------------------------------------------------------------- /Software/User/BUZZER/BUZZER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/BUZZER/BUZZER.H -------------------------------------------------------------------------------- /Software/User/DISPLAY/ANIMOTION.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/DISPLAY/ANIMOTION.C -------------------------------------------------------------------------------- /Software/User/DISPLAY/ANIMOTION.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/DISPLAY/ANIMOTION.H -------------------------------------------------------------------------------- /Software/User/DISPLAY/BREATHSCREEN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/DISPLAY/BREATHSCREEN.C -------------------------------------------------------------------------------- /Software/User/DISPLAY/BREATHSCREEN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/DISPLAY/BREATHSCREEN.H -------------------------------------------------------------------------------- /Software/User/DISPLAY/DISPLAY.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/DISPLAY/DISPLAY.C -------------------------------------------------------------------------------- /Software/User/DISPLAY/DISPLAY.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/DISPLAY/DISPLAY.H -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM1.C -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM1.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM1.H -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM1/ITEM_LIGHT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM1/ITEM_LIGHT.C -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM1/ITEM_LIGHT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM1/ITEM_LIGHT.H -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM1/ITEM_SOUND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM1/ITEM_SOUND.C -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM1/ITEM_SOUND.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM1/ITEM_SOUND.H -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM1/ITEM_TIMESET.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM1/ITEM_TIMESET.C -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM1/ITEM_TIMESET.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM1/ITEM_TIMESET.H -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM2.C -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM2.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM2.H -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM2/GAME1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM2/GAME1.C -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM2/GAME1.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM2/GAME1.H -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM2/GAME2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM2/GAME2.C -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM2/GAME2.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM2/GAME2.H -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM3.C -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM3.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM3.H -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM4.C -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM4.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM4.H -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM5.C -------------------------------------------------------------------------------- /Software/User/ITEM/ITEM5.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/ITEM/ITEM5.H -------------------------------------------------------------------------------- /Software/User/MENU/MENU.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/MENU/MENU.C -------------------------------------------------------------------------------- /Software/User/MENU/MENU.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/MENU/MENU.H -------------------------------------------------------------------------------- /Software/User/MENU/MENU_TITLE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/MENU/MENU_TITLE.H -------------------------------------------------------------------------------- /Software/User/MPU6050/bsp_SysTick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/MPU6050/bsp_SysTick.c -------------------------------------------------------------------------------- /Software/User/MPU6050/bsp_SysTick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/MPU6050/bsp_SysTick.h -------------------------------------------------------------------------------- /Software/User/MPU6050/bsp_mpu6050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/MPU6050/bsp_mpu6050.c -------------------------------------------------------------------------------- /Software/User/MPU6050/bsp_mpu6050.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/MPU6050/bsp_mpu6050.h -------------------------------------------------------------------------------- /Software/User/MPU6050/eMPL/dmpKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/MPU6050/eMPL/dmpKey.h -------------------------------------------------------------------------------- /Software/User/MPU6050/eMPL/dmpmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/MPU6050/eMPL/dmpmap.h -------------------------------------------------------------------------------- /Software/User/MPU6050/eMPL/inv_mpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/MPU6050/eMPL/inv_mpu.c -------------------------------------------------------------------------------- /Software/User/MPU6050/eMPL/inv_mpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/MPU6050/eMPL/inv_mpu.h -------------------------------------------------------------------------------- /Software/User/MPU6050/eMPL/inv_mpu_dmp_motion_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/MPU6050/eMPL/inv_mpu_dmp_motion_driver.c -------------------------------------------------------------------------------- /Software/User/MPU6050/eMPL/inv_mpu_dmp_motion_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/MPU6050/eMPL/inv_mpu_dmp_motion_driver.h -------------------------------------------------------------------------------- /Software/User/MY_MENU/MY_MENU.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/MY_MENU/MY_MENU.C -------------------------------------------------------------------------------- /Software/User/MY_MENU/MY_MENU.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/MY_MENU/MY_MENU.H -------------------------------------------------------------------------------- /Software/User/WATCH/DS3231.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/WATCH/DS3231.C -------------------------------------------------------------------------------- /Software/User/WATCH/DS3231.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/WATCH/DS3231.H -------------------------------------------------------------------------------- /Software/User/WATCH/WATCH.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/WATCH/WATCH.C -------------------------------------------------------------------------------- /Software/User/WATCH/WATCH.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/WATCH/WATCH.H -------------------------------------------------------------------------------- /Software/User/WATCH/bsp_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/WATCH/bsp_power.c -------------------------------------------------------------------------------- /Software/User/WATCH/bsp_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/WATCH/bsp_power.h -------------------------------------------------------------------------------- /Software/User/bsp_GENERALTIME/bsp_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/bsp_GENERALTIME/bsp_time.c -------------------------------------------------------------------------------- /Software/User/bsp_GENERALTIME/bsp_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/bsp_GENERALTIME/bsp_time.h -------------------------------------------------------------------------------- /Software/User/bsp_OLED/bsp_Font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/bsp_OLED/bsp_Font.c -------------------------------------------------------------------------------- /Software/User/bsp_OLED/bsp_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/bsp_OLED/bsp_Font.h -------------------------------------------------------------------------------- /Software/User/bsp_OLED/bsp_oled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/bsp_OLED/bsp_oled.c -------------------------------------------------------------------------------- /Software/User/bsp_OLED/bsp_oled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/bsp_OLED/bsp_oled.h -------------------------------------------------------------------------------- /Software/User/bsp_USART/bsp_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/bsp_USART/bsp_usart.c -------------------------------------------------------------------------------- /Software/User/bsp_USART/bsp_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/bsp_USART/bsp_usart.h -------------------------------------------------------------------------------- /Software/User/bsp_rtc/bsp_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/bsp_rtc/bsp_rtc.c -------------------------------------------------------------------------------- /Software/User/bsp_rtc/bsp_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/bsp_rtc/bsp_rtc.h -------------------------------------------------------------------------------- /Software/User/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/main.c -------------------------------------------------------------------------------- /Software/User/read.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Software/User/stm32f10x_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/stm32f10x_conf.h -------------------------------------------------------------------------------- /Software/User/stm32f10x_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/stm32f10x_it.c -------------------------------------------------------------------------------- /Software/User/stm32f10x_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CN-Mple/CN-Mple-N-WATCH-Imitate/HEAD/Software/User/stm32f10x_it.h -------------------------------------------------------------------------------- /Software/read.txt: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------