※ 引述《Hyozero (123)》之铭言:
原文恕删
: 好奇wiki里写的:
: 1.An "emulator" gets its name because it emulates (imitates) the central
: processing unit of the embedded system's computer.
: 请问它是怎么模拟CPU的阿?本来在板子上的CPU不是还在上面吗?
那篇前面有提到一开始的emulator的确是可以插在板子上模拟CPU
不过以现在ICE的用途其实是误称(misnomer),我其实比较习惯讲debugger
现在还是有些CPU可以用emulator模拟,不过都是比较小的MCU像是8051和AVR
: 2.Notably, when their program fails, most embedded systems simply become inert
: lumps of nonfunctioning electronics . Embedded systems often lack basic
: functions to detect signs of software failure, such as an MMU to catch memory
: access errors.
: 请问为何说Embedded system没有可以检查software failure的功能呢?
: 小弟的公司是用uart或I2C去读code run时的print message或register值,这样的功能
: 算是后来再附加上去的吗?
用UART或I2C debug的前提是CPU还可以执行程式
如果因为一些原因bus hang住了,或是CPU读到错的指令跑飞了,就没办法这样debug
这种情况就要靠ICE透过JTAG直接控制CPU来debug
: 3.With an ICE, the programmer can usually test pieces of code, then isolate the
: fault to a particular section of code, and then inspect the failing code and
: rewrite it to solve the problem.
: 这部份实在无法理解了,为何ICE能够做到把code切分段去debug呢?
你可以在code里面加break point,当CPU跑到break point的时候就会停下来
停下来之后可以透过ICE检察系统状态看是否正常
所以就可以知道跑到那段code前是没问题的
另外也可以用step一步一步执行看程式会挂在那里
以上是个人浅见,如有误还请帮忙指正~