blob: c441981d3b8d79d3c5335d440557b4dfc09aee4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
/*!
\page creator-embedded-platforms.html
\previouspage creator-desktop-platforms.html
\nextpage creator-mobile-platforms.html
\title Embedded Platforms
You can develop applications for the following embedded platforms:
\list
\li \l {Bare Metal}
\li \l {Boot2Qt}
\li \l {Remote Linux}
\li \l {Microcontroller Units (MCU)}
\li \l QNX
\endlist
You must install the tool chain for building applications for the targeted
embedded platform on the development PC and use the Qt Maintenance Tool to
install Qt libraries that are built for the platform. You can then add a
\l{glossary-buildandrun-kit}{kit} with the tool chain and the Qt version
for the device's architecture. When possible, the Maintenance Tool creates
suitable kits for you.
You can connect embedded devices to the development PC to run, debug, and
analyze applications built for them from \QC.
\section1 Bare Metal
You can run and debug applications on small devices that are not supported
by the remote Linux device plugin by using GDB or a hardware
debugger.
For more information about developing applications for Bare Metal devices,
see \l{Connecting Bare Metal Devices}.
\section1 Boot2Qt
The Boot2Qt stack runs on a variety of hardware. License holders can use
tools to customize the contents of the stack and to take it into
production hardware.
You need either Windows 10 64-bit or later or Ubuntu Linux 64-bit 20.04 LTS
or later to install and use Boot2Qt.
The following topics have more information about developing applications
for Boot2Qt devices:
\list
\li \l{https://doc.qt.io/Boot2Qt/qtdc-supported-platforms.html}
{Boot2Qt: Supported Target Devices and Development Hosts}
\li \l{https://doc.qt.io/Boot2Qt/b2qt-installation-guides.html}
{Boot2Qt: Installation Guides}
\li \l{Connecting Boot2Qt Devices}
\li \l{Specifying Run Settings for Boot2Qt Devices}
\li \l{Deploying to Boot2Qt}
\li \l{https://doc.qt.io/qtcreator/creator-overview-qtasam.html}
{Qt Creator Plugin for Qt Application Manager}
\endlist
\section1 Remote Linux
You must have a tool chain for building applications for embedded Linux
devices installed on the development PC.
The following topics have more information about developing applications
for remote Linux devices:
\list
\li \l{Connecting Remote Linux Devices}
\li \l{Deploying to Remote Linux}
\li \l{Specifying Run Settings for Linux-Based Devices}
\li \l{Running on Remote Linux Devices}
\li \l{https://doc.qt.io/qtcreator/creator-overview-qtasam.html}
{Qt Creator Plugin for Qt Application Manager}
\endlist
\section1 Microcontroller Units (MCU)
You need the GNU Arm Embedded GCC compiler, libraries, and other GNU tools
necessary for bare metal software development on devices based on the Arm
Cortex-M processors.
The following topics have more information about developing applications
for MCUs:
\list
\li \l{Connecting MCUs}
\li \l{Running Applications on MCUs}
\li \l{https://doc.qt.io/QtForMCUs/index.html}{Qt for MCUs}
\endlist
\section1 QNX
The QNX Neutrino RTOS has more command line tools
and services, as described in \l {Qt for QNX}.
\note In Qt 6, \QC support for QNX is considered experimental.
The following topics have more information about developing applications
for QNX devices:
\list
\li \l{Connecting QNX Devices}
\li \l{Deploying to QNX Neutrino}
\li \l{Specifying Run Settings for QNX Devices}
\li \l{Running on QNX Devices}
\li \l{Qt for QNX}
\endlist
*/
|