关于嵌入式系统的一点思考

通常认为嵌入式系统与桌面系统的一个重要区别是:嵌入式系统的应用程序和操作系统是静态地链接成单个的映像,不能动态加载和执行应用程序。


An important difference between most embedded operating systems and desktop operating systems is that the application, including the operating system, is usually statically linked together into a single executable image. Unlike a desktop operating system, the embedded operating system does not load and execute applications.[1] This means that the system is only able to run a single application.
--->引用自Wikipedia




从这个意义上讲,封闭的专用系统属于嵌入式系统,而对于智能手机和平板等通用移动平台被这个定义排除在外,比如基于Android和IOS系统的手机和平板。个人认为智能手机本身的研发是属于嵌入式系统的研发,而运行于智能手机上的APP的开发,则不属于嵌入式系统的开发。个人认为应该从技术的角度来看待是否是嵌入式开发,智能手机本身的研发涉及到OS对SoC芯片的适配、硬件与OS的适配,是典型的嵌入式研发领域。


你可能感兴趣的:(操作系统)