Skip to content

Commit b557651

Browse files
paresh-bhagat12cshilwant
authored andcommitted
feat: 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 9b11173 commit b557651

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
@@ -365,14 +365,70 @@ _________________________
365365

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

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

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

373429
.. ifconfig:: CONFIG_part_variant in ('AM62X', 'AM62PX')
374430

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

377433
.. Image:: /images/ti-apps-launcher-powermenu1.png
378434
:height: 400
@@ -403,18 +459,33 @@ The source code is available at `TI Apps Launcher <https://github.com/TexasInstr
403459

404460
.. code-block:: console
405461
406-
$ qmake "SOURCES += configs/am62pxx-evm.cpp" "DEFINES += SOC_AM62P" ./ti-apps-launcher.pro ; make
462+
For Linux build
463+
464+
$ qmake "SOURCES += configs/am62pxx-evm.cpp" "DEFINES += SOC_AM62P" "DEFINES += RT_BUILD=0" ./ti-apps-launcher.pro ; make
465+
466+
For RT-Linux build
467+
468+
$ qmake "SOURCES += configs/am62pxx-evm.cpp" "DEFINES += SOC_AM62P" "DEFINES += RT_BUILD=1" ./ti-apps-launcher.pro ; make
407469
408470
|
409471
410472
.. ifconfig:: CONFIG_part_variant in ('AM62X')
411473

412474
.. code-block:: console
413475
414-
$ qmake "SOURCES += configs/am62xx-evm.cpp" "DEFINES += SOC_AM62" ./ti-apps-launcher.pro ; make # For AM62x SK
415-
$ qmake "SOURCES += configs/am62xx-lp-evm.cpp" "DEFINES += SOC_AM62_LP" ./ti-apps-launcher.pro ; make # For AM62x LP SK
416-
$ qmake "SOURCES += configs/am62xxsip-evm.cpp" "DEFINES += SOC_AM62_LP" ./ti-apps-launcher.pro ; make # For AM62xSIP SK
417-
$ qmake "SOURCES += configs/beagleplay.cpp" "DEFINES += SOC_AM62" ./ti-apps-launcher.pro ; make # For Beagleplay
476+
For Linux build
477+
478+
$ qmake "SOURCES += configs/am62xx-evm.cpp" "DEFINES += SOC_AM62" "DEFINES += RT_BUILD=0" ./ti-apps-launcher.pro ; make # For AM62x SK
479+
$ qmake "SOURCES += configs/am62xx-lp-evm.cpp" "DEFINES += SOC_AM62_LP" "DEFINES += RT_BUILD=0" ./ti-apps-launcher.pro ; make # For AM62x LP SK
480+
$ qmake "SOURCES += configs/am62xxsip-evm.cpp" "DEFINES += SOC_AM62_LP" "DEFINES += RT_BUILD=0" ./ti-apps-launcher.pro ; make # For AM62xSIP SK
481+
$ qmake "SOURCES += configs/beagleplay.cpp" "DEFINES += SOC_AM62" "DEFINES += RT_BUILD=0" ./ti-apps-launcher.pro ; make # For Beagleplay
482+
483+
For RT-Linux build
484+
485+
$ qmake "SOURCES += configs/am62xx-evm.cpp" "DEFINES += SOC_AM62" "DEFINES += RT_BUILD=1" ./ti-apps-launcher.pro ; make # For AM62x SK
486+
$ qmake "SOURCES += configs/am62xx-lp-evm.cpp" "DEFINES += SOC_AM62_LP" "DEFINES += RT_BUILD=1" ./ti-apps-launcher.pro ; make # For AM62x LP SK
487+
$ qmake "SOURCES += configs/am62xxsip-evm.cpp" "DEFINES += SOC_AM62_LP" "DEFINES += RT_BUILD=1" ./ti-apps-launcher.pro ; make # For AM62xSIP SK
488+
$ qmake "SOURCES += configs/beagleplay.cpp" "DEFINES += SOC_AM62" "DEFINES += RT_BUILD=1" ./ti-apps-launcher.pro ; make # For Beagleplay
418489
419490
|
420491

0 commit comments

Comments
 (0)