What is Qt Bare Metal?

五迷三道 提交于 2019-12-03 14:08:48

Is it a way to develop Qt for a bare metal system?

No.

Does Qt run on a system with no OS?

No.

Bare Metal means you usually have a few KB of RAM and ROM.

I think you are confusing Qt (framework) with QtCreator (IDE). Tim Sander explains it clearly here at the Qt Developer Days in 2013.

This plugin is used for developing small software for such platforms, but without using the Qt framework itself.

In other words, you can still utilize the generic functionality of the Integrated Development Environment.

So, it is not a runtime aid, but development and build time helper. You can still use qmake for building binaries for such very small embedded environments.

Here you can find more information in the official documentation.

You can see a presentation about it from Qt Dev Days 2013 here: https://www.youtube.com/watch?v=hrKz63Q_Rf0

It is a plugin to allow you to develop and debug programs for bare-metal embedded targets in the QtCreator IDE.

It doesn't support the Qt framework on those embedded targets.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!