Search found 97 matches

by ytliu6
23 Mar 2023, 10:30
Forum: FAQ
Topic: FAQ_MA35D1_There is no response when trying to connect to the IoT board via JTAG.
Replies: 0
Views: 16477

FAQ_MA35D1_There is no response when trying to connect to the IoT board via JTAG.

Change 0 Ω on R145, R146, R147, R149, R151 to R41, R42, R43, R44, R45.
FAQ_MA35D1_There is no response when trying to connect to the IoT board via JTAG2..png
FAQ_MA35D1_There is no response when trying to connect to the IoT board via JTAG2..png (17.24 KiB) Viewed 16477 times
FAQ_MA35D1_There is no response when trying to connect to the IoT board via JTAG..png
FAQ_MA35D1_There is no response when trying to connect to the IoT board via JTAG..png (27.37 KiB) Viewed 16477 times
by ytliu6
24 Feb 2023, 15:05
Forum: FAQ
Topic: FAQ_MA35D1 Build Gstreamer by Buildroot
Replies: 0
Views: 16661

FAQ_MA35D1 Build Gstreamer by Buildroot

The default configuration of an Image built by Buildroot is minimalistic, which means you need to manually enable the libraries you need to use. If you want to use Gstreamer-related libraries, you can follow the steps below to build them. There are many options that can be enabled or disabled. You s...
by ytliu6
14 Feb 2023, 13:51
Forum: FAQ
Topic: FAQ_MA35D1_M4 BSP Build Error
Replies: 0
Views: 15884

FAQ_MA35D1_M4 BSP Build Error

If you occur M4 BSP build error like below, you need to detele all of the folder and use Docker to build it.
If you build the Image without using Docker, it may occur other error
You can refer to Qick Start Guild to restart the building.
FAQ_MA35D1_M4 BSP Build Error.png
FAQ_MA35D1_M4 BSP Build Error.png (338.18 KiB) Viewed 15884 times
by ytliu6
14 Feb 2023, 13:33
Forum: FAQ
Topic: FAQ_MA35D1_Replace part of Linux Image
Replies: 0
Views: 15103

FAQ_MA35D1_Replace part of Linux Image

When you build a pack from Buildroot, Yocto, or OpenWRT, you need to choose the file already been pack The pack.josn is located at NuWriter inside Buildroot, Yocto, or OpenWRT. Acrodding to pack-sd.jason content is shown below, you can replace part of Image when you already write the Image to the ta...
by ytliu6
14 Feb 2023, 13:16
Forum: FAQ
Topic: FAQ_MA35D1_M4 Peripheral List when A35 Power Down
Replies: 0
Views: 15346

FAQ_MA35D1_M4 Peripheral List when A35 Power Down

This list show M4 control what peripheral when A35 power down
FAQ_MA35D1_M4 Peripheral List when A35 Power Down.png
FAQ_MA35D1_M4 Peripheral List when A35 Power Down.png (25.67 KiB) Viewed 15346 times
by ytliu6
30 Jan 2023, 13:32
Forum: FAQ
Topic: FAQ_MA35D1_Auto Load Linux Kernel Modules by Yocto
Replies: 0
Views: 16029

FAQ_MA35D1_Auto Load Linux Kernel Modules by Yocto

If you need to auto load the Linux kernel modules, you have to create the recipe to add the .ko to /lib/modules/5.10.140 first. Add the following three statement to local.conf DISTRO_FEATURES_append = " recipe_name " KERNEL_MODULE_AUTOLOAD += " recipe_name " IMAGE_INSTALL_append += " kernel-modules ...
by ytliu6
11 Jan 2023, 18:15
Forum: FAQ
Topic: FAQ_MA35D1_Change Display Clock
Replies: 0
Views: 14800

FAQ_MA35D1_Change Display Clock

If you need to change the display panel or change the display clock First, you need to modify MA35D1 device tree description. There are two methods you can use You can modify ma35d1.dtsi or modify dts to override the description The display clock use clk_VPLL, so you need to modify it to match your ...
by ytliu6
11 Jan 2023, 16:41
Forum: FAQ
Topic: FAQ_MA35D1_H.264 Decoder with MP4 Video
Replies: 0
Views: 14571

FAQ_MA35D1_H.264 Decoder with MP4 Video

Nuvoton provides hardware decoder VC8000 to decode H.264 format video First, you need to check the MP4 files is H.264 format or not. If not, you need to translate it to H.264. You can use FFmpeg to translate them and change the resolution to match your display ffmpeg -i input.mp4 -c:v libx264 -profi...
by ytliu6
03 Jan 2023, 14:11
Forum: FAQ
Topic: FAQ_MA35D1_Build and Enable Secure Boot Image
Replies: 0
Views: 15814

FAQ_MA35D1_Build and Enable Secure Boot Image

First, you need to write the public and private key to OTP Refer to UM_EN_MA35D1_NuWriter for writing key to OTP Buildroot: 1. Enable MA35D1 Secure Boot and enter the key you want $ make menuconfig Bootloaders ---> [*] MA35D1 Secure Boot () AES Key () ECDSA Key 2. Rebuild the Image $ make 3. The otp...
by ytliu6
23 Dec 2022, 13:39
Forum: FAQ
Topic: FAQ_MA35D1_Cross-Compiler Toolchain
Replies: 0
Views: 16028

FAQ_MA35D1_Cross-Compiler Toolchain

Yocto and Buildroot both have their own cross-compile toolchain. Build the Image first and the Buildroot toolchain will be generate at /Buildroot/output/host/usr/bin/aarch64-nuvoton-linux-gnu-gcc Refer to UM_MA35D1_Yocto for generating toolchain After you source the toolchain, it will automatically ...