Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

C code for activating PWM feature for ATmega AVR microcontroller

Status
Not open for further replies.

madhub63

Junior Member level 1
Joined
Jan 12, 2008
Messages
16
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,370
Hi,
Does any one has an example wriiten in C-language to activate the pwm feature for the atmega avr microcontroller for winavr compiler.
 

pwm avr

The major difference between threads and processes is
1.Threads share the address space of the process that
created it; processes have their own address.

2.Threads have direct access to the data segment of its
process; processes have their own copy of the data segment
of the parent process.

3.Threads can directly communicate with other threads of
its process; processes must use interprocess communication
to communicate with sibling processes.

4.Threads have almost no overhead; processes have
considerable overhead.

5.New threads are easily created; new processes require
duplication of the parent process.

6.Threads can exercise considerable control over threads of
the same process; processes can only exercise control over
child processes.

7.Changes to the main thread (cancellation, priority
change, etc.) may affect the behavior of the other threads
of the process; changes to the parent process does not
affect child processes.



also
Process is a program in execution where as thread is a
seperate path of execution in a program.

Added after 4 minutes:

also refer the following url
https://www.informit.com/articles/article.aspx?p=169479

can refer the following text
Parallel and Distributed Programming Using C++
by Cameron Hughes & Tracey Hughes
 

c programming pwm with avr

PWM can be achieved in the AVR without a program - just set the timers up correctly
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top