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.

what is the use of defining a variable as volatile..

Status
Not open for further replies.

sivamit

Full Member level 4
Joined
Dec 1, 2005
Messages
201
Helped
20
Reputation
40
Reaction score
14
Trophy points
1,298
Activity points
2,651
Please give a real time exmple..


Thanks,
Siva
 

A volatile variable is one that can be changed outside the program flow. For instance, an input port on a micro or a global variable that is changed in an interrupt routine.
A compiler will optimise code so that sometimes it puts a variable in a reg and asumes it hasn't changed.
The volatile directive tells the compiler that the value of the variable must be read before using it.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top