Program Simulate/de

Aus MCS Wiki AVR
< Program Simulate(Weitergeleitet von Program Simulate)
Wechseln zu: Navigation, Suche

== (**COPIED FROM ENGLISH PAGE**) ==With this option, you can simulate your program.

 

You can simulate your programs with AVR Studio or any other Simulator available or you can use the built in Simulator.

 

The simulator that will be used when you press F2, depends on the selection you made in the Options Simulator TAB. The default is the built in Simulator.

 

 

Program Simulate shortcut : Basc0037 wmf.gif, F2

 

 

To use the built in Simulator the files DBG and OBJ must be selected from the Options Compiler Output TAB.

 

The OBJ file is the same file that is used with the AVR Studio simulator.

 

The DBG file contains info about variables and many other info needed to simulate a program.

 

 

Sim main.png

 

The yellow dot means that the line contains executable code.

 

The Simulator window is divided into a few sections:

 

 

Inhaltsverzeichnis

The Toolbar

The toolbar contains the buttons you can press to start an action.

 

Basc0039.gif This is the RUN button, it starts a simulation. You can also press F5. The simulation will pause when you press the pause button. It is advised, that you step through your code at the first debug session. When you press F8, you step through the code line by line which is a clearer way to see what is happening.

 

Basc0040.gif This is the PAUSE button. Pressing this button will pause the simulation.

 

Basc0041.gif This is the STOP button. Pressing this button will stop the simulation. You can't continue from this point,   because all of the variables are reset. You need to press the RUN button when you want to simulate your program again.

 

Basc0042.gif This is the STEP button. Pressing this button (or F8) will simulate one code line of your BASIC program. The simulator will go to the RUN state. After the line is executed the simulator will be in the PAUSE state. If  you press F8 again, and it takes a long time too simulate the code, press F8 again, and the simulator will go to the pause state.

 

Basc0043.gif This is the STEP OVER button or SHIFT+F8). It has the same effect as the STEP button, but sub programs are executed completely, and th simulator does not step into the SUB program.

 

Basc0044.gif This is the RUN TO button. The simulator will RUN until it gets to the current line. The line must contain executable code. Move the cursor to the desired line before pressing the button.

 

 

Basc0045.gif This button will show the processor registers window.

 

Sim registers.png

 

The values are shown in hexadecimal format. To change a value, click the cell in the VAL column, and type the new value. When you right click the mouse, you can choose between the Decimal, Hexadecimal and Binary formats.

The register window will show the values by default in black. When a register value has been changed, the color will change into red. Each time you step through the code, all changed registers are marked blue. This way, the red colored value indicate the registers that were changed since you last pressed F8(step code). A register that has not been changed at all, will remain black.

 

 

 

Basc0047.gif This is the IO button and will show processor Input and Output registers.

 

Sim io.png

 

The IO window works similar as the Register window.

A right click of the mouse will show a popup menu so you can choose the format of the values.

And the colors also work the same as for the registers : black, value has not been changed since last step(F8). Red : the value was changed the last time your pressed F8. Blue : the value was changed since the begin of simulation. When you press the STOP-button, all colors will be reset to black.

 

Basc0049.gif Pressing this button shows the Memory window.

 

Sim memory.png

 

The values can be changed the same way as in the Register window.

When you move from cell to cell you can view in the status bar which variable is stored at that address.

The SRAM TAB will show internal memory and XRAM memory.

The EEPROM TAB will show the memory content of the EEPROM.

The colors work exactly the same as for the register and IO windows. Since internal ram is cleared by the compiler at startup, you will see all values will be colored blue. You can clear the colors by right clicking the mouse and choosing 'Clear Colors'.

 

 

Simulator refreshvars.png The refresh variables button will refresh all variables during a run (F5). When you use the hardware simulator, the LEDS will only update their state when you have enabled this option. Note that using this option will slow down simulation. That is why it is an option. When you use F8 to step through your code you do not need to turn this option on as the variables are refreshed after each step.

 

 

Simulator simtimers.png When you want to simulate the processors internal timers you need to turn this option on. Simulating the timers uses a lot of processor time, so you might not want this option on in most cases. When you are debugging timer code it is helpful to simulate the timers.

The simulator supports the basic timer modes. As there are many new chips with new timer modes it is possible that the simulator does not support all modes. When you need to simulate a timer the best option may be to use the latest version of AVR Studio and load the BASCOM Object file.

Even AVR Studio may have some flaws, so the best option remains to test the code in a real chip.


Notice.jpgThe TIMER simulation only simulates TIMER0 and 16 bit TIMER1. And only counting/time modes are supported. PWM mode is not simulated.

 

 

Simulator realterm.png This option allows you to use a real terminal emulator for the serial communication simulation.

Normally the simulator prints serial output to the blue window, and you can also enter data that needs to be sent to the serial port.

When you enable the terminal option, the data is sent to the actual serial port, and when serial data is received by the serial port, it will be shown.

 

Under the toolbar section there is a TAB with a number of pages:

 

VARIABLES

Simulator vars.png

 

 

This section allows you to see the value of program variables. You can add variables by double clicking in the Variable-column. A list will pop up from which you can select the variable.

To watch an array variable, type the name of the variable with the index.

 

During simulation you can change the values of the variables in the Value-column, Hex-column or Bin-column. You must press ENTER to store the changes.

 

To delete a variable, you can press CTRL+DEL.

 

To enter more variables, press the DOWN-key so a new row will become visible.

 

It is also possible to watch a variable by selecting it in the code window, and then pressing enter. It will be added to the variable list automatically.

Notice that it takes time to refresh the variables. So remove variables that do not need to be watched anymore for faster simulation speed.

 

 

LOCALS

Simulator locals.png

 

The LOCALS window shows the variables found in a SUB or FUNCTION. Only local variables are shown. You can not add variables in the LOCALS section.

Changing the value of local variables works the same as in the Variables TAB.

 

 

WATCH

Simulator watch.png


The Watch-TAB can be used to enter an expression that will be evaluated during simulation. When the expression is true the simulation is paused.

 

To enter a new expression, type the expression in the text-field below the Remove button, and press the Add-button.

When you press the Modify-button, the current selected expression from the list will be replaced with the current typed value in the text field.

 

To delete an expression, select the desired expression from the list, and press the Remove-button.

During simulation when an expression becomes true, the expression that matches will be selected and the Watch-TAB will be shown.

 

 

uP

 

Simulator up.png

 

This TAB shows the value of the microprocessor status register (SREG).

 

The flags can be changed by clicking on the check boxes.

 

The software stack, hardware stack, and frame pointer values are shown. The minimum or maximum value that occurred during simulation is also shown. When one of these data areas enter or overlap another one, a stack or frame overflow occurs.

This will be signaled with a pause and a check box.

 

Pressing the snapshot-button will save a snapshot of the current register values and create a copy of the memory.

You will notice that the Snapshot-button will change to ‘Stop’

 

Now execute some code by pressing F8 and press the Snapshot-button again.

 

A window will pop up that will show all modified address locations.

This can help to determine which registers or memory a statement uses.

 

Simulator snapshot.png

 

When you write an ISR (Interrupt Service Routine) with the NOSAVE option, you can use this to determine which registers are used and then save only the modified registers.

 

 

INTERRUPTS

Simulator ints.png

 

This TAB shows the interrupt sources. When no ISR's are programmed all buttons will be disabled.

When you have written an ISR (using ON INT...), the button for that interrupt will be enabled.  Only the interrupts that are used will be enabled.

 

By clicking an interrupt button the corresponding ISR is executed.

This is how you simulate the interrupts. When you have enabled 'Sim Timers' it can also trigger the event.

 

The pulse generator can be used to supply pulses to the timer when it is used in counter mode.

First select the desired pin from the pull down box. Depending on the chip one or more pins are available. Most chips have 2 counters so there will usually be 2 input pins.

Next, select the number of pulses and the desired delay time between the pulses, then press the Pulse-button to generate the pulses.

 

The delay time is needed since other tasks must be processed as well.

 

The option ‘Sim timers’ must be selected when you want to simulate timers/counters.

 

 

 

TERMINAL Section

Under the window with the TABS you will find the terminal emulator window. It is the dark blue area.

 

In your program when you use PRINT, the output will be shown in this window.

 

When you use INPUT in your program, you must set the focus to the terminal window and type in the desired value.

 

You can also make the print output go directly to the COM port.

Check the Terminal option to enable this feature.

The terminal emulator settings will be used for the baud rate and COM port.

Any data received by the COM port will also be shown in the terminal emulator window.

 

Notice that most microprocessors have only 1 UART. The UART0-TAB is used to communicate with tis UART. The UART1-TAB need to be selected in order to view the UART1 output, or to send data to UART1.

 

Software UARTS are not supported by the simulator. They can not be simulated.

 

 

SOURCE Section

Under the Terminal section you find the Source Window.

It contains the source code of the program you are simulating. All lines that contain executable code have a yellow point in the left margin.

You can set a breakpoint on these lines by selecting the line and pressing F9.

 

By holding the mouse cursor over a variable name, the value of the variable is shown in the status bar.

If you select a variable, and press ENTER, it will be added to the Variable window.

 

In order to use the function keys (F8 for stepping for example), the focus must be set to the Source Window.

 

A blue arrow will show the line that will be executed next..

 

 

The hardware simulator.

 

By pressing the hardware simulation button Basc0055.gif the windows shown below will be displayed.

 

Basc0056.gif

 

The top section is a virtual LCD display. It works to display code in PIN mode, and bus mode. For bus mode, only the 8-bit bus mode is supported by the simulator.

 

Below the LCD display area are LED bars which give a visual indication of the ports.

 

By clicking an LED it will toggle.

PA means PORTA, PB means PORTB, etc.

IA means PINA, IB means PINB etc. (Shows the value of the Input pins)

It depends on the kind of microprocessor you have selected, as to which ports will be shown.

 

Right beside the PIN led's, there is a track bar. This bar can be used to simulate the input voltage applied the ADC converter. Note that not all chips have an AD converter. You can set a value for each channel by selecting the desired channel below the track bar.

 

Next to the track bar is a numeric keypad. This keypad can be used to simulate the GETKBD() function.

 

When you simulate the Keyboard, it is important that you press/click the keyboard button before simulating the getkbd() line !!!

 

To simulate the Comparator, specify the comparator input voltage level using Comparator IN0.

 

 

Enable Real Hardware Simulation

By clicking the Basc0057.gif button you can simulate the actual processor ports in-circuit!

The processor chip used must have a serial port.

 

In order simulate real hardware you must compile the basmon.bas file.

 

To do this, follow this example:

Lets say you have the DT006 simmstick, and you are using a 2313 AVR chip.

 

Open the basmon.bas file and change the line $REGFILE = "xxx" to $REGFILE = "2313def.dat"

Now compile the program and program the chip.

It is best to set the lock bits so the monitor does not get overwritten if you accidentally press F4.

The real hardware simulation only works when the target micro system has a serial port. Most have and so does the DT006.

 

Connect a cable between the COM port of your PC and the DT006. You probably already have one connected. Normally it is used to send data to the terminal emulator with the PRINT statement.

 

The monitor program is compiled for 19200 baud. The Options Communication settings must be set to the same baud rate!

The same settings for the monitor program are used for the Terminal emulator, so select the COM port, and the baud rate of 19200.

 

Power up or reset the DT006. It probably already is powered since you just previously compiled the basmon.bas program and stored it in the 2313.

When you press the real hardware simulation button now the simulator will send and receive data when a port, pin or DDR register is changed.

 

This allows you to simulate an attached hardware LCD display for example, or something simpler, like an LED. In the SAMPLES dir, you will find the program DT006. You can compile the program and press F2.

 

When you step through the program the LED's will change!

 

All statements can be simulated this way but they have to be able to use static timing. Which means that 1-wire will not work because it depends on timing. I2C has a static bus and thus will work.

 

NOTE: It is important that when you finish your simulation sessions that you click the button again to disable the Real hardware simulation.

 

When the program hangs it probably means that something went wrong with the serial communication. The only way to escape is to press the Real hardware Simulation Image1764821748.jpg button again.

 

The Real Hardware Simulation is a cost effective way to test attached hardware.

 

Notice.jpg The refresh variables button will refresh all variables during a run(F5). When you use the hardware simulator, the LEDS will only update their state when you have enabled this option. Note that using this option will slow down the simulation.

 

 

Watchdog Simulation

Most AVR chips have an internal Watchdog. This Watchdog timer is clocked from an internal oscillator. The frequency is approximately 1 MHz. Voltage and temperature variations can have an impact on the WD timer. It is not a very precise timer. So some tolerance is needed when you refresh/reset the WD-timer. The Simulator will warn you when a WD overflow will occur. But only when you have enabled the WD timer.

 

The status bar

Simulator sttausbar.png

The status bar shows the PC (program counter) and the number of cycles. You can reset the cycles by positioning the mouse cursor on the status bar and then right click. You will then get a pop up menu with the option to reset the cycles.

You can use this to determine how much time a program statement takes.

Do not jump to a conclusion too quick, the time shown might also depend on the value of a variable.

For example, with WAITMS var  this might be obvious, but with the division of a value the time might vary too.



Languages   English Deutsch  
Meine Werkzeuge
Namensräume
Varianten
Aktionen
Navigation
In anderen Sprachen
Sprache