Basics of project file in VMLAB
Lets say you have created a project like in earlier lesson. Then you can see the project window:

project file has extension *.prj. In this file comments are marked with character “;” and directives “.”
In example you see the directives describing microcontroller and its compilation settings. They are created using project wizard.
Then another directive is .TRACE which enables tracing of program flow.
Then follows directives describing working schematic of project.
“.POVER VDD=5 VSS=0” means that microcontroller is powered with 5V voltage supply source.
“.CLOCK 1meg” means that microcontroller is clocked by 1MHz generator.
“.SORE 250m” means amount of ms stored in internal oscilloscope emulator. This parameter is set automatically depending on your RAM amount. But you can change it to other value. This group of parameters are set by default when you select project properties in wizard and create it.
Source: www.avr.h15.ru
Blogsphere: TechnoratiFeedsterBloglines
Bookmark: Del.icio.usSpurlFurlSimpyBlinkDigg
RSS feed for comments on this post | TrackBack URI for this post
New on WinAVR Tutorial
Running TX433 and RX433 RF modules with AVR microcontrollers,Sometimes in embedded design you may want to go wireless. Might be you will want to log various readi …Programming AVR ADC module with WinAVR,Most of AVR microcontrollers have Analog to Digital Converter (ADC) integrated in to chip. Such solut … |
New on WinARM Tutorial
What are differences between WinARM and WinAVR,Everyone who is working with AVR microcontrollers knows this powerful tool – WinAVR (http://win …LPC2000 watchdog timer,As in all microcontrollers watchdog timers purpose isto reset microcontroller after reasonable amount … |
