Skip to content

Commit 89093e0

Browse files
Update demos and build instruction for ti-apps-launcher
- Add info about Wi-Fi demo showing steps including how to enable Wi-Fi, scanning SSIDs and handling connections. - Add info about terminal demo for accessing terminal from the ti-apps-launcher. - Update build instruction for Linux and RT-Linux build. Signed-off-by: Paresh Bhagat <[email protected]>
1 parent cb6a028 commit 89093e0

File tree

5 files changed

+77
-6
lines changed

5 files changed

+77
-6
lines changed

source/images/terminal.png

89.2 KB
Loading

source/images/wifi_connected.png

104 KB
Loading

source/images/wifi_home.png

89.4 KB
Loading

source/images/wifi_ssid.png

171 KB
Loading

source/system/Demo_User_Guides/TI_Apps_Launcher_User_Guide.rst

Lines changed: 77 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -367,14 +367,70 @@ _________________________
367367

368368
3. Once you enter the necessary values for both HTTPS and No proxy, click on `Set Proxy` to set the proxy configuration.
369369

370+
371+
Using terminal
372+
______________
373+
374+
.. ifconfig:: CONFIG_sdk in ('SITARA')
375+
376+
The terminal button on the left panel can be used to open a terminal application, which is
377+
based on QMLtermwidget.
378+
379+
.. Image:: /images/terminal.png
380+
:height: 400
381+
382+
.. ifconfig:: CONFIG_sdk not in ('SITARA')
383+
384+
This section is not valid for this platform.
385+
386+
Using Wi-Fi Demo
387+
________________
388+
389+
.. ifconfig:: CONFIG_part_variant in ('AM62X', 'AM62PX')
390+
391+
The *Wifi* button on the left panel allows you to connect to an external Wi-Fi network.
392+
393+
Ensure the required overlay is applied and the WiFi card is connected to SK-EVM. For more
394+
information, refer to :ref:`enable_m2cc3301`.
395+
396+
Click the toggle button to turn on Wi-Fi.
397+
398+
.. Image:: /images/wifi_home.png
399+
:height: 400
400+
401+
* Click on the *Refresh* button to scan for available SSIDs.
402+
* Select an SSID from the list, then enter the passphrase and Wi-Fi security type.
403+
* For certain security types, you may need to provide additional details.
404+
* After entering all the required info, click on *Connect*.
405+
406+
.. Image:: /images/wifi_ssid.png
407+
:height: 400
408+
409+
If the all entered details are correct, device will be connected to the selected Wi-Fi
410+
network. If needed, click *Disconnect* to disconnect from the network and return to
411+
SSID selection menu.
412+
413+
.. Image:: /images/wifi_connected.png
414+
:height: 400
415+
416+
.. ifconfig:: CONFIG_part_variant in ('AM62X')
417+
418+
.. note::
419+
420+
This section is not valid for AM62xLP and AM62xSIP.
421+
422+
.. ifconfig:: CONFIG_part_variant not in ('AM62X', 'AM62PX')
423+
424+
This section is not valid for this platform.
425+
370426
Power Menu
371427
__________
372428

373429
1. The top right corner of the TI Apps Launcher is dedicated for the Power Menu.
374430

375431
.. ifconfig:: CONFIG_part_variant in ('AM62X', 'AM62PX')
376432

377-
2. The Power Menu supports Shutdown, Reboot, Suspend to RAM and Exit (from TI Apps Launcher) functions.
433+
2. The Power Menu supports Shutdown, Reboot, Suspend to RAM (For NON RT Build) and Exit (from TI Apps Launcher) functions.
378434

379435
.. Image:: /images/ti-apps-launcher-powermenu1.png
380436
:height: 400
@@ -405,18 +461,33 @@ The source code is available at `TI Apps Launcher <https://github.com/TexasInstr
405461

406462
.. code-block:: console
407463
408-
$ qmake "SOURCES += configs/am62pxx-evm.cpp" "DEFINES += SOC_AM62P" ./ti-apps-launcher.pro ; make
464+
For Linux build
465+
466+
$ qmake "SOURCES += configs/am62pxx-evm.cpp" "DEFINES += SOC_AM62P" "DEFINES += RT_BUILD=0" ./ti-apps-launcher.pro ; make
467+
468+
For RT-Linux build
469+
470+
$ qmake "SOURCES += configs/am62pxx-evm.cpp" "DEFINES += SOC_AM62P" "DEFINES += RT_BUILD=1" ./ti-apps-launcher.pro ; make
409471
410472
|
411473
412474
.. ifconfig:: CONFIG_part_variant in ('AM62X')
413475

414476
.. code-block:: console
415477
416-
$ qmake "SOURCES += configs/am62xx-evm.cpp" "DEFINES += SOC_AM62" ./ti-apps-launcher.pro ; make # For AM62x SK
417-
$ qmake "SOURCES += configs/am62xx-lp-evm.cpp" "DEFINES += SOC_AM62_LP" ./ti-apps-launcher.pro ; make # For AM62x LP SK
418-
$ qmake "SOURCES += configs/am62xxsip-evm.cpp" "DEFINES += SOC_AM62_LP" ./ti-apps-launcher.pro ; make # For AM62xSIP SK
419-
$ qmake "SOURCES += configs/beagleplay.cpp" "DEFINES += SOC_AM62" ./ti-apps-launcher.pro ; make # For Beagleplay
478+
For Linux build
479+
480+
$ qmake "SOURCES += configs/am62xx-evm.cpp" "DEFINES += SOC_AM62" "DEFINES += RT_BUILD=0" ./ti-apps-launcher.pro ; make # For AM62x SK
481+
$ qmake "SOURCES += configs/am62xx-lp-evm.cpp" "DEFINES += SOC_AM62_LP" "DEFINES += RT_BUILD=0" ./ti-apps-launcher.pro ; make # For AM62x LP SK
482+
$ qmake "SOURCES += configs/am62xxsip-evm.cpp" "DEFINES += SOC_AM62_LP" "DEFINES += RT_BUILD=0" ./ti-apps-launcher.pro ; make # For AM62xSIP SK
483+
$ qmake "SOURCES += configs/beagleplay.cpp" "DEFINES += SOC_AM62" "DEFINES += RT_BUILD=0" ./ti-apps-launcher.pro ; make # For Beagleplay
484+
485+
For RT-Linux build
486+
487+
$ qmake "SOURCES += configs/am62xx-evm.cpp" "DEFINES += SOC_AM62" "DEFINES += RT_BUILD=1" ./ti-apps-launcher.pro ; make # For AM62x SK
488+
$ qmake "SOURCES += configs/am62xx-lp-evm.cpp" "DEFINES += SOC_AM62_LP" "DEFINES += RT_BUILD=1" ./ti-apps-launcher.pro ; make # For AM62x LP SK
489+
$ qmake "SOURCES += configs/am62xxsip-evm.cpp" "DEFINES += SOC_AM62_LP" "DEFINES += RT_BUILD=1" ./ti-apps-launcher.pro ; make # For AM62xSIP SK
490+
$ qmake "SOURCES += configs/beagleplay.cpp" "DEFINES += SOC_AM62" "DEFINES += RT_BUILD=1" ./ti-apps-launcher.pro ; make # For Beagleplay
420491
421492
|
422493

0 commit comments

Comments
 (0)