Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - GUI
Search - GUI - List
DL : 0
一个简单而又高效的嵌入式操作系统.包括GUI及文件系统.仿Windows设计,类似于MFC风格-a simple and efficient embedded operating system. Including GUI and file system. Fake Windows design, style similar to the MFC
Date : 2008-10-13 Size : 217.08kb User : PeterLee

DL : 0
一个更为先进的嵌入式操作系统.采用RMS线程调度算法,具有信号量等同步对象.亦包括GUI. 通过该系统您可以极大知道Windows的内部秘密.-a more advanced embedded operating system. RMS using thread scheduling algorithm, with the volume of signal synchronization objects. also includes GUI. The system can greatly You know the internal Windows secret.
Date : 2008-10-13 Size : 240.77kb User : PeterLee

简单的GUI界面的开发教程,代码是用汇编语言写的,做成了PDF格式,很不错的资料
Date : 2008-10-13 Size : 53.29kb User : 宋光春

一个完整的GUI界面OS,单盘启动 实现了多线程、FAT32文件读写,GUI图形界面-a complete OS GUI interface, single-disk realized multiple threads, FAT32 file read and write, GUI graphical interface
Date : 2025-12-22 Size : 1.12mb User : 小小

DL : 0
一个简单而又高效的嵌入式操作系统.包括GUI及文件系统.仿Windows设计,类似于MFC风格-a simple and efficient embedded operating system. Including GUI and file system. Fake Windows design, style similar to the MFC
Date : 2025-12-22 Size : 217kb User :

SEAL是DOS 下的32位保护模式的GUI程序,它只能在DOS下才能运行。-SEAL is under the DOS protected mode 32 GUI program, it can only be run under DOS.
Date : 2025-12-22 Size : 1.65mb User : 毛军华

uc/os下的gui,友好的交互界面可以使你的产品更有吸引力,本图形界面开发为uc/os量身打造!-uc/os the gui, a friendly interface can make your product more attractive, The graphical interface development for uc/os mold!
Date : 2025-12-22 Size : 2.71mb User : ZHAO

PIC Serial Port 8 Servo Controller GUI(use to control robot)-PIC Serial Port 8 Servo Controller GUI (use to control robot)
Date : 2025-12-22 Size : 553kb User : 李文昌

简单的GUI界面的开发教程,代码是用汇编语言写的,做成了PDF格式,很不错的资料-A simple GUI interface, the development of tutorials, code is written in assembly language, resulting in a PDF format, very good information
Date : 2025-12-22 Size : 53kb User : 宋光春

ucos是一个非常优秀的嵌入式操作系统,但作者只提供了bc下测试与调试代码,非常难于调试与学习,特别是初学者。vc是windows下非常优秀的IDE,如果把ucos移植到vc下运行,将非常方便ucos的调试与学习,有利于于ucos的推广。此项目的目的是希望能够把ucos及其相关的文件系统ucfs,GUI界面ucgui,网络tcp/ip都移植过来,方便广大爱好者学习。-uCOS is a very good embedded operating system, but the author provides only bc to test and debug code, very difficult to debug and learning, especially for beginners. vc is the windows very good IDE, if transplanted to vc uCOS run will be very convenient for debugging and learning uCOS is conducive to the promotion of uCOS. The purpose of this project is to be able to uCOS and its associated file system ucfs, GUI interface ucgui, the network tcp/ip are transplanted to facilitate learning the broad masses of fans.
Date : 2025-12-22 Size : 327kb User : 黄灿武

DL : 0
一个非常小巧的带Gui界面的操作系统源代码,内含三张图片。给有这方面需要的朋友.-A very compact Gui interface with the operating system source code, containing three pictures. To a need, a friend.
Date : 2025-12-22 Size : 9.41mb User : su

掌握在uC/OS-II 操作系统下使用ZLG/GUI的基本方法。 1. 启动 ADS 1.2,使用 ARM Executable Image for UCOSII(for lpc22xx)工程模板建立一 个工程 gui_ucos,工程存储在 uCOS-II 目录下。 说明:在 uCOS-II 目录下要保存有 uCOS-II 的移植代码和内核源代码。 2. 建立 C 源文件 Test .c,编写实验程序,保存到 gui_ucos\src 目录下,然后添加到工程 的 user组中。 3. 复制 ZLG/GUI 文件。把 ZLG_GUI 整个目录及文件复制到 gui_ucos\SRC 目录下。 4. 添加 ZLG/GUI 文件。在工程管理窗口中新建一个组 ZLG/GUI,然后在这个组内添 加 gui_ucos\SRC\ZLG_GUI下的所有 C 源程序文件和 GUI_CONFIG.H配置文件。 5. 新建驱动程序,在工程管理窗口中新建一个组 lcd_drive,并将驱动程序添加到工程 的 lcd_drive组中。驱动程序文件名比如:LCDDRIVE.c、LCDDRIVE.H,可以保存 在 gui_ucos\SRC 目录下。 6. 修改 CONFIG.H,增加包含 LCDDRIVE.H 头文件和 ZLG/GUI 的所有头文件,如程 序清单 1.3 所示。 -err
Date : 2025-12-22 Size : 179kb User : 阳仲伯

ZLG/GUI图形用户界面软件在ucos里的移植 -ZLG/GUI graphical user interface software in uCOS' s transplant
Date : 2025-12-22 Size : 179kb User : jodenboy

A user-space device driver can do many of the things that kernel drivers can t, such as perform a long-running computation, block while waiting for an event, or read files from the file system. Unlike kernel drivers, a user-space device driver can use other device drivers--that is, access the network, talk to a serial port, get interactive input from the user, pop up GUI windows, or read from disks. User-space drivers implemented using FUSD can be much easier to debug it is impossible for them to crash the machine, are easily traceable using tools such as gdb, and can be killed and restarted without rebooting even if they become corrupted. FUSD drivers don t have to be in C--Perl, Python, or any other language that knows how to read from and write to a file descriptor can work with FUSD. User-space drivers can be swapped out, whereas kernel drivers lock physical memory.-A user-space device driver can do many of the things that kernel drivers can t, such as perform a long-running computation, block while waiting for an event, or read files from the file system. Unlike kernel drivers, a user-space device driver can use other device drivers--that is, access the network, talk to a serial port, get interactive input from the user, pop up GUI windows, or read from disks. User-space drivers implemented using FUSD can be much easier to debug it is impossible for them to crash the machine, are easily traceable using tools such as gdb, and can be killed and restarted without rebooting even if they become corrupted. FUSD drivers don t have to be in C--Perl, Python, or any other language that knows how to read from and write to a file descriptor can work with FUSD. User-space drivers can be swapped out, whereas kernel drivers lock physical memory.
Date : 2025-12-22 Size : 1kb User : harish

ucos GUI源代码,大家参考参考。不知道为什么字符还不够啊。-ucosii GUI
Date : 2025-12-22 Size : 7.77mb User : jiangwanwei

uCOS2的GUI设计,用于uCOS2德图形界面设计。-uCOS2 of GUI design, graphical interface design for uCOS2 Germany.
Date : 2025-12-22 Size : 54kb User : 霍光磊

Linux based MGUI Library for cross platform simpe GUI library for DOS, Linux and Windows
Date : 2025-12-22 Size : 1.03mb User : Foo Saa

UCOS+GUI操作系统例程,神州开发板STM32源程序,2.8寸LCD出厂程序为uCOS_UCGUI_DEMO2.8LCD(神舟IV号).神舟IV号uCOS_UCGUI_DEMO的2.8寸LCD源码(使用MDK编译开发环境),3.2寸LCD出厂程序为uCOS_UCGUI_DEMO3.2LCD(神舟IV号)。神舟IV号uCOS_UCGUI_DEMO的3.2寸LCD源码(使用MDK编译开发环境)-UCOS+GUI operating system routines, Shenzhou development board STM32 source, 2.8-inch LCD factory program (Shenzhou IV number). The Shenzhou IV No. uCOS_UCGUI_DEMO 2.8-inch LCD source (MDK compiler development environment), 3.2-inch LCD factory program for uCOS_UCGUI_DEMO2.8LCD uCOS_UCGUI_DEMO3.2LCD (Shenzhou IV,). The Shenzhou IV the No. uCOS_UCGUI_DEMO the 3.2-inch LCD source (MDK compiler development environment)
Date : 2025-12-22 Size : 14.63mb User : 何威

详细介绍了开发一个图形界面操作系统所需的资源, 步骤,代码。-Discrib the neccesary source, step and code used to develop an OS with GUI.
Date : 2025-12-22 Size : 179kb User : 张清华

DL : 0
彩屏应用-GUI示范程序,核心芯片51单片机,C语言编写-Color application-GUI demonstration program, 51 core chip microcontroller, C language
Date : 2025-12-22 Size : 131kb User : jrf
« 12 3 4 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.