Search found 6 matches

by DigiMatrix
Wed 2024-01-17 0:41
Forum: Simulation
Topic: Motorola HC11 Evaluation Board
Replies: 3
Views: 872

Re: Motorola HC11 Evaluation Board

Thank you so much for the detailed reply :D
by DigiMatrix
Thu 2023-08-31 17:37
Forum: Simulation
Topic: Motorola HC11 Evaluation Board
Replies: 3
Views: 872

Motorola HC11 Evaluation Board

I have a question on the watch window in the sample program for the HC11 Evaluation Board. This sample program makes use of the MC68HC24 port replacement unit. I set up a watch window to watch both Port B and C. When I type a value in the virtual terminal, I can see the changes by watching the logic...
by DigiMatrix
Tue 2017-03-28 18:47
Forum: Simulation
Topic: Bug in AVR simulator model
Replies: 5
Views: 1014

Re: Bug in AVR simulator model

My apologies, it appears this is working properly even though the message implies it isn't. I modified the code and got rid of the error, but everything behaved exactly the same. Turns out I didn't understand the code :oops: The code was re-setting the watchdog every 16 msecs, so I assumed the issue...
by DigiMatrix
Sun 2017-03-26 21:24
Forum: Simulation
Topic: Bug in AVR simulator model
Replies: 5
Views: 1014

Re: Bug in AVR simulator model

I have also found bugs - has to do with setting the watchdog in code. Code: void watchdogOn() { MCUSR = MCUSR & 0b11110111; WDTCSR = WDTCSR | 0b00011000; WDTCSR = 0b00100000; WDTCSR = WDTCSR | 0b01000000; MCUSR = MCUSR & 0b11110111; } as soon as WDCE and WDE are set in code I get debug messa...
by DigiMatrix
Sat 2017-02-18 22:43
Forum: Simulation
Topic: Question on 6811 EVB11 demo
Replies: 1
Views: 481

Re: Question on 6811 EVB11 demo

I am still waiting for an answer to this question - any Labcenter people know? It would be nice to have the replaced ports show in the watch window properly. I have also loaded different code into the 6811 and PortC reads correctly in code but the values in the watch window never change from zero fo...
by DigiMatrix
Wed 2015-12-23 5:42
Forum: Simulation
Topic: Question on 6811 EVB11 demo
Replies: 1
Views: 481

Question on 6811 EVB11 demo

I have been evaluating the 6811 EVB11 demo in Proteus and I have a question. I set the watch window to show PortB, PortC and DDRC which are replaced by the MC68HC24 PRU. If I type in the Virtual terminal port C and port B pins show they are changing, but the watch window doesn't show the new values ...