Search found 58 matches

by yhcheng3
01 Sep 2023, 16:38
Forum: FAQ
Topic: FAQ_MA35D1_ Unable to Execute Code in Openwrt
Replies: 0
Views: 25040

FAQ_MA35D1_ Unable to Execute Code in Openwrt

Question : Use aarch64-openwrt-linux-gcc to compile AP code in openwrt. Error: function is not implemented . Answer. Go to Github to grab the latest OpenWRT for testing. The operation process is as follows: The usage is similar to Buildroot, the steps are as follows: 1. Enter to “$TOPDIR/staging_di...
by yhcheng3
01 Sep 2023, 16:34
Forum: FAQ
Topic: FAQ_MA35D1_Add GPIO-Line-Name
Replies: 0
Views: 21191

FAQ_MA35D1_Add GPIO-Line-Name

Question : Add GPIO-Line-Name Answer. Assuming that GPIO0~GPIO7 are named " test0...test7 " respectively, they need to be configured in ma35d1.dtsi. The relevant configuration is as follows: gpioa: gpioa@40040000 { reg = <0x0 0x40040000 0 0x40>, <0x0 0x40040800 0 0x40>; interrupts = <GIC_SPI 14 IRQ...
by yhcheng3
01 Sep 2023, 16:31
Forum: FAQ
Topic: FAQ_MA35D1_ Reduced Compilation Size of MA35D1 RTP
Replies: 0
Views: 19873

FAQ_MA35D1_ Reduced Compilation Size of MA35D1 RTP

Question : Using the MA35 M4 development platform, the same code compiles to a bin file of 90kb. However, after compiling with nueclipse, the file size exceeds 1mb. How can I configure the compilation options to reduce the size after compiling? Answer. You can use the following commands to reduce t...
by yhcheng3
26 Jul 2023, 15:51
Forum: Quick Start
Topic: MA35D1 HMI QT Quick Start Guide
Replies: 0
Views: 9315

MA35D1 HMI QT Quick Start Guide

Platform: MA35D1 Platform resource link: https://www.nuvoton.com/products/microprocessors/arm-cortex-a35-mpus/ma35d1-high-performance-edge-iiot-series/design-resource/ BSP link: https://github.com/OpenNuvoton/MPU-Family Download link: MA35D1 GUI QT Development Environment_Rev1.00.pdf.zip Brief: 1.Di...
by yhcheng3
26 Jul 2023, 15:50
Forum: Quick Start
Topic: MA35D1 HMI emWin Quick Start Guide
Replies: 0
Views: 6219

MA35D1 HMI emWin Quick Start Guide

Platform: MA35D1 Platform resource link: https://www.nuvoton.com/products/microprocessors/arm-cortex-a35-mpus/ma35d1-high-performance-edge-iiot-series/design-resource/ BSP link: https://github.com/OpenNuvoton/MPU-Family Download link: MA35D1 emWin AppWizard Quick Start_v1.0.pdf.zip Brief: How to use...
by yhcheng3
15 Jun 2023, 14:53
Forum: FAQ
Topic: FAQ_MA35D1_IMAGE_INSTALL _Library_in_Yocto
Replies: 0
Views: 20710

FAQ_MA35D1_IMAGE_INSTALL _Library_in_Yocto

Question : Understand IMAGE_INSTALL Library in Yocto Build System Answer. IMAGE_INSTALL is a variable in the Yocto build system. It is used to specify the list of packages to be installed in the generated image. The variable is set in the image recipe file ( .bb file ). The IMAGE_INSTALL variable i...
by yhcheng3
26 May 2023, 17:51
Forum: FAQ
Topic: FAQ_MA35D1_Change_DDR_Size_Not_Work(IOT-MA35D1_EVB)
Replies: 0
Views: 19338

FAQ_MA35D1_Change_DDR_Size_Not_Work(IOT-MA35D1_EVB)

Question : MA35D1_LQFP216 change DDR size from 128MB to 256/512MB Cannot work on NuMaker-IOT-MA35D1 EVB Board Answer. Package MA35D1_ LQFP216 : MA35D16F787C use internal DDR2_128MB MA35D16F887C use internal DDR3L_256MB MA35D16F987C use internal DDR3L_512MB Please sure supply voltage of MVDD is 1.35...
by yhcheng3
26 May 2023, 17:46
Forum: FAQ
Topic: FAQ_MA35D1_Show_Current_Directory
Replies: 0
Views: 17079

FAQ_MA35D1_Show_Current_Directory

Question : How to display the current directory in buildroot's rootfs? Answer. Modify /etc/profile and add the following definitions: HOSTNAME='/bin/hostname' PS1='[\u@\w]#' export PS1 HOSTNAME After restarting, the prompt will be in the following format: [username@current_path]# [root@/etc/profile...
by yhcheng3
26 May 2023, 17:42
Forum: FAQ
Topic: FAQ_MA35D1_NAND_cannot_Boot_Without_SPI-NAND
Replies: 0
Views: 16687

FAQ_MA35D1_NAND_cannot_Boot_Without_SPI-NAND

Question : NAND cannot boot without SPI-NAND Answer. The boot failure issue after removing SPI-NAND has been resolved by disabling it in the device tree. By adding the following code to MA35D1_Buildroot\output\build\uboot-custom\arch\arm\dts\ma35d1.dts , SPI-NAND is disabled. &qspi0 { spi-nand@0 { ...
by yhcheng3
26 May 2023, 17:40
Forum: FAQ
Topic: FAQ_MA35D1_I2C0_Interface_on_MA35D1_IoT_EVB
Replies: 0
Views: 16451

FAQ_MA35D1_I2C0_Interface_on_MA35D1_IoT_EVB

Question : I2C0 Interface on MA35D1 IoT EVB cannot work Answer. I2C0 is originally reserved for PMIC usage, so it requires modifying the device tree entries for TFA as follows. Please configure it as shown below. The modification to the " ma35d1.dtsi " file in " output/build/arm-trusted-firmware-cu...