Search found 334 matches

by Andrew
Mon 2019-11-04 10:32
Forum: Simulation
Topic: usb drivers on Windows 10
Replies: 3
Views: 2667

Re: usb drivers on Windows 10

Hello,

It is better to install virtual USB drivers on a virtual machine in any case. It's been significantly improved in Windows 10, but still sometimes USB failures may cause an OS crash.
by Andrew
Wed 2019-06-26 10:34
Forum: Simulation
Topic: WinAVR project generates error with .cpp source files
Replies: 5
Views: 3496

Re: WinAVR project generates error with .cpp source files

If it compiles and works well, then it doesn't need any other files added to the project.
by Andrew
Wed 2019-06-26 10:12
Forum: Simulation
Topic: WinAVR project generates error with .cpp source files
Replies: 5
Views: 3496

Re: WinAVR project generates error with .cpp source files

It is compiled good because it is included whole into 13cm.cpp. To separate it from there, you have to move declarations into the corresponding .h file, and include it instead of .cpp file.

It is not Proteus bug or WinAVR bug, just project structured this way.
by Andrew
Wed 2019-06-26 8:52
Forum: Simulation
Topic: WinAVR project generates error with .cpp source files
Replies: 5
Views: 3496

Re: WinAVR project generates error with .cpp source files

Hello,

It looks like you have not included all required headers into avr232.cpp.

Best regards,
Andrew
by Andrew
Wed 2019-05-15 8:19
Forum: Simulation
Topic: Piccolo (tms320f28027pt) not working on proteus 8.8!?
Replies: 3
Views: 3011

Re: Piccolo (tms320f28027pt) not working on proteus 8.8!?

Hello,

Could you please send me the project via PM?

Thanks!
by Andrew
Mon 2019-04-15 9:33
Forum: Simulation
Topic: Setting breakpoints
Replies: 5
Views: 4568

Re: Setting breakpoints

Hello Marek,

It looks like optimizer has removed some lines of code. You need to set it to the lower value in the Source Code project settings.

Best regards,
Andrew
by Andrew
Fri 2018-11-16 14:26
Forum: Simulation
Topic: ESP8266 Simulation
Replies: 1
Views: 465

Re: ESP8266 Simulation

Hello,

Unfortunately we don't support Arduino for ESP8266 simulation. It works only as part of IoT Builder projects.

Best regards,
Andrew
by Andrew
Mon 2018-07-09 8:46
Forum: Simulation
Topic: Serial Monitor not synchronized with program flow
Replies: 2
Views: 504

Re: Serial Monitor not synchronized with program flow

Hello, Serial.print() is not synchronized with the program flow. It is simply pushing data into the buffer, which is transferred in the "UDR Empty" interrupt handler. If you want your program to wait for the transfer, you have to call Serial.flush() right after Serial.print(). Best regards...
by Andrew
Thu 2018-06-07 9:52
Forum: Simulation
Topic: avrdude.exe: Yikes! Invalid device signature.
Replies: 5
Views: 596

Re: avrdude.exe: Yikes! Invalid device signature.

Hello,

You should connect the ICSP wires to a separate connector, as on the attached picture.

Best regards,
Andrew
by Andrew
Thu 2018-06-07 8:16
Forum: Simulation
Topic: avrdude.exe: Yikes! Invalid device signature.
Replies: 5
Views: 596

Re: avrdude.exe: Yikes! Invalid device signature.

Hello, It looks like AVRDUDE on the ESP-12F side does not properly initialize ATMega2560, so when it is trying to read its signature, it is getting 0xffffff (all 1 bits) back. Does your ESP-12F board have an ICSP connector? It is a separate 6-pin connector on the back of the board. If it doesn't, it...
by Andrew
Wed 2018-05-16 10:29
Forum: Simulation
Topic: pic cpu variables in assembler
Replies: 2
Views: 252

Re: pic cpu variables in assembler

Hi,

This is happening because Assembler does not provide variables information in the firmware files, when C compiler does.

Best regards,
Andrew
by Andrew
Wed 2018-04-25 8:40
Forum: Simulation
Topic: Hardware interrupt problem with Arduino in Proteus 8.7SP3
Replies: 1
Views: 358

Re: Hardware interrupt problem with Arduino in Proteus 8.7SP3

Hi,

This issue has been fixed, and the fix will be available in the next Proteus version.

Cheers,
Andrew
by Andrew
Mon 2017-12-18 11:19
Forum: Simulation
Topic: ATTiny10 Model doesn't work
Replies: 1
Views: 233

Re: ATTiny10 Model doesn't work

Hello,

The current ATtiny10 model has to be removed from Proteus completely. The one in Proteus is a very old ATtiny10, which was discontinued by Atmel ages ago. Then they decided to use the same name for the new microcontroller by some reasons.

Best regards,
Andrew
by Andrew
Wed 2017-12-13 12:16
Forum: PCB Layout
Topic: Issues Importing from PCB Library Expert (PADS ASCII Format)
Replies: 1
Views: 394

Re: Issues Importing from PCB Library Expert (PADS ASCII Format)

Hello,

It is not imported from PADS ASCII 9.5, as there is no corner radius information in the file. As regards of 2007 bug with 3D Viewer, I confirm that I can reproduce it. Hopefully it will be fixed for the next Service Pack.

Cheers,
Andrew
by Andrew
Tue 2017-12-12 11:16
Forum: Simulation
Topic: Can we use an external code editor
Replies: 8
Views: 599

Re: Can we use an external code editor

Hello, We are aware of the performance issues in the current model of Cortex M3. Recently quite a bit of work was done to improve it. Currently it is in the testing stage, and will be available in the next Proteus service pack. As regards of the skipping code lines, you need to check the optimisatio...