搜尋
搜尋結果
搜尋Online programming ,
共找到 22 筆
- 排序
- 依時間
- 依熱門度
工具
學習
影片長度 - 3:38
The NuEzAI development tool, combined with the NuEzAI-M55M1 development board and the online model training platform, allows customers to train an image recognition model in three minutes without extensive programming knowledge or a deep understanding of complex algorithms. The model can then be easily deployed onto the NuEzAI-M55M1 board, significantly lowering the barrier to AI development. Even without any prior experience in Edge AI development, you can seamlessly begin creating your first AI application with the NuEzAI-M55M1 board.
System developers are welcome to contact the Nuvoton team via the "Contact Us" form on the Nuvoton AI webpage at www.nuvoton.com/ai, and explore the new value of Edge AI together.
#Nuvoton #NuMicro #Microcontroller #MCU #en #M55M1 #TinyML #AI #MachineLearning #NuEzAI-M55M1 #General #Tool #Learning
-
For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC
buy now: https://direct.nuvoton.com/
contact us: SalesSupport@nuvoton.com
創新產品
學習
影片長度 - 2:12
NuMaker-Volcano is the development board for Nuvoton NuMicro® M0A21/M0A23 microcontrollers. This board stands out with its compact size of only 2.5x5 millimeters, slightly larger than a coin. It comes equipped with the powerful M0A23 microcontroller, and all 28 pins are accessible for circuit board connections. Additionally, it features a Nu-Link2-Me for programming and debugger purposes. NuMaker-Volcano serves as a versatile platform for evaluating, developing, and validating industrial and automotive applications.
#AEC-Q100 #125degree #Volcano #Microcontroller #Automotive #MCU #Nuvoton #NuMicro #M0A23 #Basic #Product #learning #en
-
For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC
buy now: https://direct.nuvoton.com/
contact us: SalesSupport@nuvoton.com
創新產品
工具
學習
影片長度 - 8:24
The video introduces Nuvoton's MPU N9H30's development set-up for Linux and Non-OS, taking NuMaker-emWin-RDK-N9H30 for example. Starting from the EVB introduction to BSP and related software downloads.
-
User manuals and related resource can be downloaded
https://www.nuvoton.com/products/gui-solution/gui-reference-design/numaker-emwin-rdk-n9h30/
First, we introduce how to program Linux OS to the N9H30 evaluation board
Find the N9H30 evaluation board resource that we used on Nuvoton’s Github and download the VMware Image
https://github.com/OpenNuvoton/MPU-Family
VMware application can be downloaded from the VMware website
https://www.vmware.com/tw/products/workstation-player/workstation-player-evaluation.html
First, open the VMware
Find the ubuntu_NUC970_980_Linux folder we downloaded
Choose Ubuntu 64-bit_nuvoton.vmx
Choose Play virtual machine
The password is “user”
It will take a while to open this application for the first time
Open the terminal when the system is ready
Enter NUC970_Buildroot-master folder
After entering the folder, we need to update the Buildroot tool
Enter the command as shown below
“git reset –hard”
“git pull”
After updating, enter the dl folder
Remove the original Linux kernel and u-boot
Enter the command as shown below
“sudo rm -rf linux-master.tar.gz uboot-master.tar.gz”
After entering, enter the password “user”
Leave the dl folder and enter the Buildroot folder
Enter the “make clean” command
You don’t need to do these steps unless updating Buildroot tools
Now, we set up the evaluation board configuration
Enter configs folder to search evaluation board name
Back to buildroot after searching
Enter “make nuvoton_n9h30_emwin_defconfig” to generate configuration file
After finishing these step, enter “make” to compile
It will take about three hours to compile
After compiling, copy the two files below to windows
“/NUC970_Buildroot-master/output/images/uImage”
“/NUC970_Buildroot-master/output/build/uboot-master/u-boot.bin”
Create text file ”env-nor.txt”
The content is shown below:
baudrate=115200
bootdelay=1
stderr=serial
stdin=serial
stdout=serial
setspi=sf probe 0 50000000
loadkernel=sf read 0x7fc0 0x200000 0x600000
bootcmd=run setspi;run loadkernel;bootm 0x7fc0
bootargs=noinitrd root=/dev/mtdblock2 rw rootfstype=jffs2 console=ttyS0 rdinit=/sbin/init mem=32M mtdparts=m25p80:0x200000@0x0(u-boot),0x600000@0x200000(kernel),-(user) ignore_loglevel
Then, we need to install NuWriter and related file
The NuWriter is a programming tool provided by Nuvoton. The NuWriter application and firmware code are open-sourced, and users can add new features or develop new user interfaces per user’s application
NuWriter: https://github.com/OpenNuvoton/MPU-Family
Open “NUC970_NuWriter-master”
Enter Driver folder and install “WinUSB4NuVCOM.exe”
Enter /Nuwriter/Release and execute NuWriter
Choose IC number based on the evaluation board
We need to program Image to SPI Flash, so we choose SPI
Here we need to turn the all Power-On Setting to ON
Push Reset button
Return to NuWriter to check the green light and the connection
If it is not connecting, click Re-Connect to reconnect
After confirm the connection, start to program Image
Program the three files to particular address
u-boot.bin program to 0xe00000
env.nor.txt program to 0x80000
uImage program to 0x200000
After programming, turn the Power-On Setting to off
Push the Reset button
Evaluation board can start to boot from SPI-NOR
After booting, we need to find the rcS demo application under/etc/init.d
Enter “chmod 777 rcS” to modify the application
Now, you can see the application on the evaluation board panel
Here, we finish compiling and programming
The next topic is how to compile and program Non-OS code
First, download MDK-Arm from the link below
https://www.keil.com/download/product/
Download the Non-OS BSP provided by Nuvoton
https://github.com/OpenNuvoton/MPU-Family
The BSP includes Keil environment set up user manual
Use Keil need to purchase the related license
After downloading, Open Keil uVision
Click the File on the upper left and choose Open
Go to the BSP that we downloaded choose BSP, SampleCode, emWin_SimpleDemo, KEIL and emWin_SimpleDemo.uvproj
Click Option for Target
Click Device and choose NuMicro ARM9 Database and N9H_series
After setting up, click Rebuild, and it will generate a sample code application which is a binary file
Open the NuWriter and connect it to the evaluation board
Choose SPI and search the application we built
\N9H30_emWin_Non-OS_BSP_v1.04.000\N9H30_emWin_Non-OS_BSP_v1.04.000\BSP\SampleCode\emWin_SimpleDemo\KEIL\obj\emWin_SimpleDemo_FW070TFT_24BPP.bin
Follow the setting and program the file to 0x0
After programming, turn the Power-On Setting to boot from SPI
You can see the demo application on the evaluation
#Basic #Product #Tool #Learning #en
-
For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC
buy now: https://direct.nuvoton.com/
contact us: SalesSupport@nuvoton.com
培訓
工具
學習
影片長度 - 4:8
展示 Nu-Link2-Pro 如何在 PC 上搭配 ICP Programming Tool 將 ISP Bootloader 燒錄至 LDROM,再使用 Nu-Link2-Pro 的 Bridge I2C 介面搭配 ISP Programming Tool 來升級目標晶片的韌體。
#zh-Hant #Tool #Training #Intermediate #Learning
-
更多產品資訊,請至新唐科技網站 https://bit.ly/3hVdcmC
購買管道:https://direct.nuvoton.com/tw/nu-link2-pro
聯絡我們:SalesSupport@nuvoton.com
培訓
工具
學習
影片長度 - 3:40
Show how Nu-Link2-Pro uses ICP Programming Tool on PC to program ISP Bootloader to LDROM, and then use Nu-Link2-Pro Bridge I2C interface with ISP Programming Tool to upgrade the firmware of the target chip.
#en #Tool #Training #Intermediate #Learning
-
For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC
Buy now: https://bit.ly/3bk0AD8
Contact us: SalesSupport@nuvoton.com
培訓
工具
學習
影片長度 - 3:15
1. 展示如何使用 ICP Programming Tool 將韌體存放至 Nu-Link2-Pro 內部的 SPI Flash 裝置,接著連接目標晶片後,按下觸發按鈕完成離線燒錄。
2. 展示如何使用ICP Programming Tool 將韌體存放至Nu-Link2-Pro 內部的SPI Flash 裝置,接著連接目標晶片後,外部信號透過Control Bus介面完成離線燒錄,此介面連接自動燒錄機台非常方便。
#zh-Hant #Tool #Training #Intermediate #Learning
-
更多產品資訊,請至新唐科技網站 https://bit.ly/3hVdcmC
購買管道:https://direct.nuvoton.com/tw/nu-link2-pro
聯絡我們:SalesSupport@nuvoton.com
培訓
工具
學習
影片長度 - 2:16
1. 說明如何使用 ICP Programming Tool 來對 Nu-Link2-Pro 自身的韌體進行更新。
2. 說明如何使用上電前按下觸發按鍵再上電並拖拉檔案至 Nu-Link2 磁碟機的方式來對 Nu-Link2-Pro 自身的韌體進行更新。
#zh-Hant #Tool #Training #Intermediate #Learning
-
更多產品資訊,請至新唐科技網站 https://bit.ly/3hVdcmC
購買管道:https://direct.nuvoton.com/tw/nu-link2-pro
聯絡我們:SalesSupport@nuvoton.com
培訓
工具
學習
影片長度 - 3:23
Demonstrate how to use the ICP Programming Tool to generate a programming file, and use the PC to save the firmware to the USB/SD storage device, insert the USB/SD storage device into Nu-Link2-Pro, and then connect the target chip, press the trigger button to complete offline programming.
-
For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC
Buy now: https://bit.ly/3bk0AD8
Contact us: SalesSupport@nuvoton.com
#en #Tool #Training #Intermediate #Learning
培訓
工具
學習
影片長度 - 2:1
1. Explain how to use ICP Programming Tool to update Nu-Link2-Pro's firmware.
2. Explain how to update the Nu-Link2-Pro's firmware by pressing the trigger button before power is on. Then the power is on and dragging files to the Nu-Link2 drive.
-
For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC
Buy now: https://bit.ly/3bk0AD8
Contact us: SalesSupport@nuvoton.com
#en #Tool #Training #Intermediate #Learning
培訓
工具
學習
影片長度 - 4:36
1. Show how Nu-Link2-Pro can use ICP Programming Tool on PC to program target chips online
2. Show how Nu-Link2-Pro drag and drop files to the NuMicro MCU drive to program the target chip online
-
For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC
Buy now: https://bit.ly/3bk0AD8
Contact us: SalesSupport@nuvoton.com
#en #Tool #Training #Intermediate #Learning
培訓
工具
學習
影片長度 - 0:41
The new-generation Nu-Link2-Pro has debugging functions, ETM tracking, serial data analysis, and USB-to-serial communication bridge. The fast programming speed and convenient firmware upgrade of ISP products allow customers to process more quickly and conveniently at every stage from development to mass production, increasing the development and mass production efficiency. It is an indispensable weapon for engineers' product development and mass production upgrade.
-
For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC
Buy now: https://bit.ly/3bk0AD8
Contact us: SalesSupport@nuvoton.com
#en #Tool #Training #Intermediate #Learning
培訓
工具
學習
影片長度 - 3:24
1. Show how to use the ICP Programming Tool to store the firmware to the SPI Flash device inside Nu-Link2-Pro, then after connecting the target chip, press the trigger button to complete offline programming.
2. Demonstrate how to use the ICP Programming Tool to store the firmware to the SPI Flash device inside Nu-Link2-Pro, and then connect the target chip. The external signal completes offline programming through the Control Bus interface. This interface connecting to the automatic programming machine is very convenience.
-
For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC
Buy now: https://bit.ly/3bk0AD8
Contact us: SalesSupport@nuvoton.com
#en #Tool #Training #Intermediate #Learning