实例介绍
【实例截图】
【核心代码】
.
├── STM32示波器
│ └── 程序
│ ├── APP
│ │ ├── app.bak
│ │ ├── app.c
│ │ ├── app.h
│ │ ├── app_cfg.h
│ │ ├── includes.h
│ │ ├── os_cfg.bak
│ │ ├── os_cfg.h
│ │ ├── task_gui.bak
│ │ ├── task_gui.c
│ │ ├── task_gui.h
│ │ ├── task_main.bak
│ │ ├── task_main.c
│ │ ├── task_main.h
│ │ ├── task_rtc.bak
│ │ ├── task_rtc.c
│ │ ├── task_rtc.h
│ │ ├── task_sd.bak
│ │ ├── task_sd.c
│ │ ├── task_sd.h
│ │ ├── task_touchscreen.c
│ │ └── task_touchscreen.h
│ ├── CM3
│ │ ├── core_cm3.c
│ │ ├── core_cm3.h
│ │ ├── stm32f10x.h
│ │ ├── system_stm32f10x.c
│ │ └── system_stm32f10x.h
│ ├── FWlib
│ │ ├── 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
│ │ │ └── system_stm32f10x.c
│ │ └── inc
│ │ ├── misc.h
│ │ ├── stm32f10x_adc.h
│ │ ├── stm32f10x_bkp.h
│ │ ├── stm32f10x_can.h
│ │ ├── stm32f10x_cec.h
│ │ ├── stm32f10x_conf.bak
│ │ ├── stm32f10x_conf.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
│ ├── GUI
│ │ ├── Config
│ │ │ ├── GUIConf.h
│ │ │ ├── GUITouchConf.h
│ │ │ ├── LCDConf.h
│ │ │ └── vssver.scc
│ │ ├── Core
│ │ │ ├── CCGUICore.bat
│ │ │ ├── GUI.h
│ │ │ ├── GUIDebug.h
│ │ │ ├── GUIType.h
│ │ │ ├── GUIVersion.h
│ │ │ ├── GUI_ConfDefaults.h
│ │ │ ├── GUI_FontIntern.h
│ │ │ ├── GUI_Private.h
│ │ │ ├── GUI_Protected.h
│ │ │ ├── GUI_VNC.h
│ │ │ ├── GUI_X.h
│ │ │ ├── LCD.h
│ │ │ ├── LCDSIM.h
│ │ │ ├── LCD_ConfDefaults.h
│ │ │ ├── LCD_Private.h
│ │ │ ├── LCD_Protected.h
│ │ │ └── vssver.scc
│ │ ├── GUI.H
│ │ │ ├── BUTTON.h
│ │ │ ├── BUTTON_Private.h
│ │ │ ├── CHECKBOX.h
│ │ │ ├── CHECKBOX_Private.h
│ │ │ ├── DIALOG.h
│ │ │ ├── DIALOG_Intern.h
│ │ │ ├── DROPDOWN.h
│ │ │ ├── DROPDOWN_Private.h
│ │ │ ├── EDIT.h
│ │ │ ├── EDIT_Private.h
│ │ │ ├── FRAMEWIN.h
│ │ │ ├── FRAMEWIN_Private.h
│ │ │ ├── GUI.h
│ │ │ ├── GUIDebug.h
│ │ │ ├── GUIType.h
│ │ │ ├── GUIVersion.h
│ │ │ ├── GUI_ARRAY.h
│ │ │ ├── GUI_ConfDefaults.h
│ │ │ ├── GUI_FontIntern.h
│ │ │ ├── GUI_HOOK.h
│ │ │ ├── GUI_Private.h
│ │ │ ├── GUI_Protected.h
│ │ │ ├── GUI_VNC.h
│ │ │ ├── GUI_X.h
│ │ │ ├── HEADER.h
│ │ │ ├── HEADER_Private.h
│ │ │ ├── LCD.h
│ │ │ ├── LCDSIM.h
│ │ │ ├── LCD_ConfDefaults.h
│ │ │ ├── LCD_IncludeDriver.h
│ │ │ ├── LCD_Private.h
│ │ │ ├── LCD_Protected.h
│ │ │ ├── LISTBOX.h
│ │ │ ├── LISTBOX_Private.h
│ │ │ ├── LISTVIEW.h
│ │ │ ├── LISTVIEW_Private.h
│ │ │ ├── MENU.h
│ │ │ ├── MENU_Private.h
│ │ │ ├── MESSAGEBOX.h
│ │ │ ├── MULTIEDIT.h
│ │ │ ├── MULTIPAGE.h
│ │ │ ├── MULTIPAGE_Private.h
│ │ │ ├── PROGBAR.h
│ │ │ ├── RADIO.h
│ │ │ ├── RADIO_Private.h
│ │ │ ├── SCROLLBAR.h
│ │ │ ├── SCROLLBAR_Private.h
│ │ │ ├── SLIDER.h
│ │ │ ├── TEXT.h
│ │ │ ├── TEXT_Private.h
│ │ │ ├── WIDGET.h
│ │ │ ├── WINDOW_Private.h
│ │ │ ├── WM.h
│ │ │ ├── WM_GUI.h
│ │ │ ├── WM_Intern.h
│ │ │ ├── WM_Intern_ConfDep.h
│ │ │ ├── jconfig.h
│ │ │ ├── jdct.h
│ │ │ ├── jdhuff.h
│ │ │ ├── jerror.h
│ │ │ ├── jinclude.h
│ │ │ ├── jmemsys.h
│ │ │ ├── jmorecfg.h
│ │ │ ├── jpegint.h
│ │ │ ├── jpeglib.h
│ │ │ └── jversion.h
│ │ ├── LCDDriver
│ │ │ ├── CCLCDDriver.bat
│ │ │ ├── LCD_GUI_Interface.c
│ │ │ └── vssver.scc
│ │ └── uCGUI_Lib.lib
│ ├── GUI_X
│ │ ├── GUI_X.c
│ │ ├── GUI_X_Touch.c
│ │ └── GUI_X_uCOS.c
│ ├── JLink Regs CM3.txt
│ ├── JLinkLog.txt
│ ├── JLinkSettings.ini
│ ├── STM32-FD-FLASHLED.map
│ ├── STM32示波器 GUI.uvopt
│ ├── STM32示波器 GUI.uvproj
│ ├── STM32示波器 GUI_Target 1.dep
│ ├── STM32示波器 GUI_uvopt.bak
│ ├── STM32示波器 GUI_uvproj.bak
│ ├── UCOS GUI.uvopt
│ ├── UCOS GUI_Target 1.dep
│ ├── UCOS GUI_uvopt.bak
│ ├── UCOS GUI_uvproj.bak
│ ├── os_cpu_a.lst
│ ├── startup
│ │ └── startup_stm32f10x_hd.s
│ ├── startup_stm32f10x_hd.lst
│ ├── stm32-fd-FlashLED.Uv2.bak
│ ├── stm32-fd-FlashLED.opt.bak
│ ├── stm32-fd-FlashLED.uvopt
│ ├── stm32-fd-FlashLED_Opt.Bak
│ ├── stm32-fd-FlashLED_Target 1.dep
│ ├── stm32-fd-FlashLED_Uv2.Bak
│ ├── stm32-fd-FlashLED_uvopt.bak
│ ├── stm32-fd-FlashLED_uvproj.bak
│ ├── uCOS-II
│ │ ├── Ports
│ │ │ ├── os_cpu.h
│ │ │ ├── os_cpu_a.asm
│ │ │ ├── os_cpu_c.c
│ │ │ └── os_dbg.c
│ │ └── Source
│ │ ├── os_core.c
│ │ ├── os_dbg_r.c
│ │ ├── os_flag.c
│ │ ├── os_mbox.c
│ │ ├── os_mem.c
│ │ ├── os_mutex.c
│ │ ├── os_q.c
│ │ ├── os_sem.c
│ │ ├── os_task.c
│ │ ├── os_time.c
│ │ ├── os_tmr.c
│ │ ├── ucos_ii.c
│ │ └── ucos_ii.h
│ └── user
│ ├── EXTI.c
│ ├── EXTI.h
│ ├── GBK_Small.h
│ ├── LED.H
│ ├── LED.c
│ ├── adc.c
│ ├── adc.h
│ ├── ascii_font.h
│ ├── bitband.h
│ ├── dac v2.0.c
│ ├── dac.c
│ ├── dac.h
│ ├── delay v2.0.c
│ ├── delay.c
│ ├── delay.h
│ ├── indkey.c
│ ├── indkey.h
│ ├── iwdg.c
│ ├── iwdg.h
│ ├── main.c
│ ├── oscilloscope.c
│ ├── oscilloscope.h
│ ├── pincfg.c
│ ├── pincfg.h
│ ├── pwm.c
│ ├── pwm.h
│ ├── readme.txt
│ ├── sdcard.c
│ ├── sdcard.h
│ ├── stdarg.h
│ ├── stm32f10x_it.c
│ ├── stm32f10x_it.h
│ ├── tft_api.c
│ ├── tft_api.h
│ ├── tft_drive.c
│ ├── tft_drive.h
│ ├── timer.c
│ ├── timer.h
│ ├── tsc2046.c
│ ├── tsc2046.h
│ ├── usart1.c
│ └── usart1.h
├── 好例子网_利用STM32做的示波器源代码.zip
└── 完整包百度网盘下载链接.txt
18 directories, 254 files
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
网友评论
我要评论