CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - main.c
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - main.c - List
[
Other Embeded program
]
电表---MAIN
DL : 1
C-用LPC932的电表主程序-C-meter with the main program LPC932
Date
: 2025-12-19
Size
: 3kb
User
:
王宾
[
Other Embeded program
]
Demo_ST44B0X
DL : 0
44binit.s ----- 初始化中断、存储器、堆栈等,进行系统初始化,建立C程序运行环境。 memcfg.inc ----- 定义存储器延时、SDRAM配置等参数 option.inc ----- 定义系统时钟频率等 main.c ----- 系统主程序(Main函数等) 44blib.c ----- IO端口初始化、延时和异步串口通讯等基本子程序-44binit.s----- initialization interrupt, memory, stack, for system initialization and establish procedures C runtime environment. Memcfg.inc----- definition of memory delay, SDRAM configuration parameters option.inc----- definition of system clock frequency main.c----- system main program (Main function etc.) 44blib.c----- IO port initialization. Delay and asynchronous serial communications, and other basic subroutine
Date
: 2025-12-19
Size
: 1.39mb
User
:
张锡良
[
Other Embeded program
]
1302_V2
DL : 0
使用凌阳61单片机和1302时间芯片完成时钟功能并使用CH451LS芯片显示(程序中只在0号LED上显示秒)。是使用时,main.c是1302时间芯片的驱动,CH451LS0811.h是简单CH451LS芯片驱动。-The use of Sunplus 61-chip MCU and 1302 hours to complete and use the clock function CH451LS chip display (program only in its LED display 0 seconds). Is used, main.c is the 1302 driver chip time, CH451LS0811.h is simple chip CH451LS drive.
Date
: 2025-12-19
Size
: 40kb
User
:
林
[
Other Embeded program
]
MAIN
DL : 0
液晶lcd1602基于at89c51的c源码-LCD lcd1602 the c-source based on AT89C51
Date
: 2025-12-19
Size
: 2kb
User
:
唐厚阳
[
Other Embeded program
]
the
DL : 0
本系统的控制部分是以89C51为核心,采用集温度采集、A/D转化于一体数字温度传感器18B20作为温度处理部分。键盘控制接口采用键盘接口7279,通过其可以设定温度,设定PID算法的参数,并且可以设定当前时间,进行温度与时间显示的切换.采用数码管显示,可以实时显示实际温度。主电路是由光偶和晶闸管所组成的开关电路。控制电路通过PID算法,产生PWM波来控制主电路的通断,从而控制电炉的输出功率,达到温度控制的目的.-The system control part of the 89C51 as the core, the use of set temperature acquisition, A/D conversion in the integrated digital temperature sensor 18B20 treatment as part of the temperature. Keyboard control interface using the keyboard interface 7279, can be set through its temperature, set the parameters of PID algorithm, and can set the current time, temperature and time display switch. Using digital control, it can be real-time display the actual temperature. Main circuit is a dual optical and composed of thyristor switching circuits. Control circuit through the PID algorithm, generate PWM wave to control the main circuit of the on-off and thus control the output of electric power, to achieve the purpose of temperature control.the use of set temperature acquisition, A/D conversion in the integrated digital temperature sensor 18B20 treatment
Date
: 2025-12-19
Size
: 159kb
User
:
朱平华
[
Other Embeded program
]
Main
DL : 0
c est un exemple de gestion d image bmp
Date
: 2025-12-19
Size
: 2kb
User
:
immy
[
Other Embeded program
]
MILCMAIDFiles
DL : 0
These files are my effort for a simple RFID scanner, using the TRF7960 and an Atmel AVR644. The included files only extend to the RFID capabilities of my circuit, and are with realevance to the ISO14443A standard. rfid.c governs all card communication protocols inmcluding polling times and data format. rfid_comm.c governs commands for the TRF7960 and also contains code for initialisation, and reading/writing data to registers. The comments explain what needs to be written into the registers for particular modes. rfid_interupt.c and rfid_timing are simple and govern interupt handling, delays, and resets. main.c contains the initialisation sequence for the AVR and provides feedback on the i/o lines such as a song from the buzzer and flashing LED s for user feedback. It also contains interupt initialisations for the TRF.
Date
: 2025-12-19
Size
: 13kb
User
:
Billy
[
Other Embeded program
]
Atmega8
DL : 0
机器人程序,Atmega8是前后传感器小板上的芯片的程序(前后都有,但用的是同一个程序),它将数据处理后通过异步串口(uart)传给主芯片。*_project是完整的工程文件,很多文件是编译器自动生成的,只有.c和.h的文件是自己写的,我把它们单独放在*_useful里了。提示一下:1. config.h中定义了所有的引用(include),其他xxx.h中引用config.h,相当于引用了所有的需要的xxx.h。 2. 每一个xxx.c文件都和一个同名的xxx.h文件对应(main.c和config.h除外),xxx.h引用config.h并定义所有xxx.c中的函数,以便yyy.c能调用xxx.c中的函数。-Robot program, Atmega8 is a small plate of chips before and after the sensor program (after all, but use the same program), it will post data processing asynchronous serial (uart) to the primary chip.* _project Is a complete project file, many files are automatically generated compiler only. C and. H files are write, I put them in a single place* _useful. Reminder: 1. Config.h defines all of the references (include), the other xxx.h reference config.h, the equivalent of all the necessary references xxx.h. Two. Xxx.c each file and a file corresponding to the same name xxx.h (main.c and config.h exception), xxx.h reference to config.h and define the function of all xxx.c to yyy.c can call xxx.c the function.
Date
: 2025-12-19
Size
: 69kb
User
:
Jake
[
Other Embeded program
]
Atmega128
DL : 0
机器人程序,Atmega128是主芯片程序。*_project是完整的工程文件,很多文件是编译器自动生成的,只有.c和.h的文件是自己写的,我把它们单独放在*_useful里了。提示一下:1. config.h中定义了所有的引用(include),其他xxx.h中引用config.h,相当于引用了所有的需要的xxx.h。 2. 每一个xxx.c文件都和一个同名的xxx.h文件对应(main.c和config.h除外),xxx.h引用config.h并定义所有xxx.c中的函数,以便yyy.c能调用xxx.c中的函数。-Robot program, Atmega128 is the main chip program.* _project Is a complete project file, many files are automatically generated compiler only. C and. H files are write, I put them in a single place* _useful. Reminder: 1. Config.h defines all of the references (include), the other xxx.h reference config.h, the equivalent of all the necessary references xxx.h. Two. Xxx.c each file and a file corresponding to the same name xxx.h (main.c and config.h exception), xxx.h reference to config.h and define the function of all xxx.c to yyy.c can call xxx.c the function.
Date
: 2025-12-19
Size
: 212kb
User
:
Jake
[
Other Embeded program
]
7699_main
DL : 0
CPU采用LPC1768,main.c中为芯片ad7966的驱动,以调试成功,保证能用!-ad7966 driver
Date
: 2025-12-19
Size
: 2kb
User
:
hs
[
Other Embeded program
]
main
DL : 0
用c语言编写的2119检测程序代码 简单易懂 -2119 using c language test program is straightforward
Date
: 2025-12-19
Size
: 1kb
User
:
hanyu
[
Other Embeded program
]
main
DL : 0
主芯片采用AT89C51芯片编写的EEPROM源代码 C程序-Main chip EEPROM AT89C51 chip source code written in C program
Date
: 2025-12-19
Size
: 1kb
User
:
lujuhai
[
Other Embeded program
]
GPSLoc
DL : 0
This zip file interfaces a GPS module with the AVR ATMega64. The main.c file contains the algorithm to sort out the data from PMTK format to GPS co-ordinates
Date
: 2025-12-19
Size
: 38kb
User
:
Yogesh
[
Other Embeded program
]
tem_c
DL : 0
恒温控制源程序(AVR M16+DS18B20) main.c-Thermostatically controlled source main.c
Date
: 2025-12-19
Size
: 3kb
User
:
jiangsh0208
[
Other Embeded program
]
main
DL : 0
用C编程实现AVR单片机的设置时钟功能。AVR单片机功能强大,可以实现很多功能,此功能是设置时钟功能,对初学AVR有很大的帮助。-C programming the AVR microcontroller to set the clock function.Powerful AVR microcontroller, and can achieve a lot of features, this feature is to set the clock function, a great help for beginners AVR.
Date
: 2025-12-19
Size
: 4kb
User
:
陈亮
[
Other Embeded program
]
main
DL : 0
Am2303的c语言操作程序,包括主函数,以及操作函数-The am2303 c language operating procedures, including the main function, and operating functions
Date
: 2025-12-19
Size
: 3kb
User
:
yanke
[
Other Embeded program
]
ap_radio_58071
DL : 0
应用在z80编译环境的RDA5807收音机芯片驱动程序-ap_rda5807\ap_fmradio.dtp .........\ap_fmradio.hex .........\ap_fmradio.prj .........\ap_fmradio.XCL .........\ap_radio.bat .........\ap_radio.h .........\AutoSearchHandle.c .........\basal_fmradio.c .........\fmradio.ap .........\fmradio.apc .........\main.c .........\......\RDA5807_COM.C .........\......\RDA5807_COM.h .........\......\RDA5807_DRV.c .........\......\RDA5807_DRV.h .........\......\qnio.c .........\......\qnio.h .........\SearchHandle.c .........\tryplaying.c .........\RDA5807 ap_RDA5807
Date
: 2025-12-19
Size
: 563kb
User
:
Jack
[
Other Embeded program
]
main
DL : 0
简单的数码管显示c编程源码压缩包-Simple digital tube display C51 programming tarball. . . . . . . . . . .
Date
: 2025-12-19
Size
: 1kb
User
:
牛蛮
[
Other Embeded program
]
Sources
DL : 0
智能车源代码 AutoControl.c datapage.c Display.c Drives.c GetDomain.c ImageProcess.c Interrupts.c KeyProcess.c main.c printp.c Sources.zip Start12.c -smart car II AutoControl.c datapage.c Display.c Drives.c GetDomain.c ImageProcess.c Interrupts.c KeyProcess.c main.c printp.c Sources.zip Start12.c
Date
: 2025-12-19
Size
: 26kb
User
:
shennushi
[
Other Embeded program
]
main
DL : 0
stm8s M24C64 iic eeprom 源码-This firmware provides a basic example of how to use the I2C firmware library and an associate I2C EEPROM driver to communicate with an I2C EEPROM device (here the example is interfacing with M24C64 EEPROM) I2C peripheral is configured in Master transmitter during write operation and in Master receiver during read operation I2C EEPROM. The speed is set to 200kHz and can be configured by modifying the related define in stm8s_ _i2c_ee.h file. For M24C64 devices all the memory is accessible through the two-bytes addressing mode and need to define block addresses. In this case, only the physical address has to be defined (according to the address pins (E0,E1 and E2) connection). This address is defined in stm8s_ _i2c_ee.h (default is 0xA0: E0, E1 and E2 tied to ground). The EEPROM addresses where the program start the write and the read operations is defined in the main.c file. First, the content of Tx1_Buffer is written to the EEPROM_WriteAddress1 and the wr
Date
: 2025-12-19
Size
: 3kb
User
:
ken
«
1
2
3
4
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.