搜尋

已選項目

搜尋結果

搜尋learning , 共找到 29 筆
  • 排序
  • 依時間
  • 依熱門度
前瞻應用  學習  影片長度 - 7:32
此影片將教各位從零開始使用 Chili Board,下載新唐提供的虛擬環境、BSP、Linux 環境設定、Image 編譯與燒錄、Chili Board 開機。基於新唐提供的開發平台,能有效縮短使用者在 Linux 的環境設定時間,直接進入開發應用程式的階段。 【步驟&時間軸】 00:00​ Intro 簡介 00:23 下載 Linux 開發環境 VMware 虛擬機、NUC980 Linux V4.4 BSP 00:59 開啟 VMware 主程式 01:42 更新 Buildroot 工具 02:44 開發板的編譯設定 03:31 抓取 Image 檔 04:12 uboot 啟動參數 04:23 安裝 NuWriter 所需要的相關檔案 05:15 將開發板兩個 Micro USB 接上 PC 05:20 執行 NuWriter 05:34 打開 PuTTY 06:10 開始燒錄 Image 【Linux 開發環境 VMware 虛擬機】 https://www.nuvoton.com/resource-download.jsp?tp_GUID=SW1320200406183205 【NUC980 Linux V4.4 BSP】 https://www.nuvoton.com/resource-download.jsp?tp_GUID=SW1820200909165814 【更新 Buildroot 工具】 進入 Buildroot 資料夾後請輸入以下指令: git reset --hard git pull 更新完成後進入 dl 資料夾,先將既有的 linux kernel 與 u-boot 刪除,並輸入以下指令: sudo rm -rf linux-master.tar.gz 輸入密碼 user,並輸入以下指令: sudo rm -rf uboot-master.tar.gz 離開 dl 資料夾,進入 Builroot 資料夾下 make clean。 【開發板的編譯設定】 進入 configs 資料夾,找到開發板名稱後回到 buildroot,輸入: make nuvoton_nuc980_chili_defconfig 產生預設的 configuration file,設定完成後輸入 make 開始編譯。 編譯完成後,點選左方檔案系統至各個地方抓取 Image 檔複製到 PC 資料夾,請參考以下路徑: /NUC970_Buildroot-master/output/images/uImage /NUC970_Buildroot-master/output/build/uboot-master/u-boot.bin env.txt 則需要自己建立,此檔案為 uboot 啟動參數,請參考下方文字: baudrate=115200 bootdelay=1 stderr=serial stdin=serial stdout=serial setspi=sf probe 0 30000000 loadkernel=sf read 0x7fc0 0x200000 0x800000 bootcmd=run setspi;run loadkernel;bootm 0x7fc0 #Linux #IoT #工業物聯網 #物聯網 #NUC980 #ChiliBoard #NuMaker-RTU-NUC980 #NK-RTU980 #RTU #application #learning #intermediate #zh-Hant - 更多產品資訊,請至新唐科技網站 https://bit.ly/3hVdcmC 購買管道:https://direct.nuvoton.com/tw 聯絡我們: SalesSupport@nuvoton.com
工具  前瞻應用  學習  影片長度 - 7:34
此影片將教大家如何使用 Chili Board 完成遠端監控與資料存取應用。一步步教學完成從網路 IP 設定到遠端操控 Child Board 及內部資料存取的實例操作。 【步驟&時間軸】 00:00​ Intro 簡介 00:31 網頁與開發板的互動範例 01:03 接下來設定網路 IP 位址 01:24 更改 PC 的 IP 位址 02:07 修改 Ubuntu 內部網路設定 02:39 測試網路是否通順 03:05 開啟 Chili Board 終端機介面 03:37 Web Server 04:15 遠端資料存取與監控的範例 04:48 修改 Ubuntu 內部網路設定 05:10 開啟終端機介面 05:37 使用跳線將 USB0_H 接地並且拔除 USB0_D 05:59 創建分享給開發板的資料夾 06:39 插入 USB Webcam 06:48 創建 nfs 資料夾 07:05 使用 Webcam 拍攝照片 【推薦觀看】 新唐 Chili Board – 開發板與平台介紹:https://youtu.be/tkYXZoYUY68 新唐 Chili Board (1) – 下載、編譯與燒錄教學:https://youtu.be/9W8HGrzjGZ8 #網頁與開發板互動範例 (1) 檢查開發板 Network File System Support 是否有開啟 (2) 輸入: linux-menuconfig (3) 進入 configuration 選單 (4) 依序選擇 File Systems、Network File System (5) 檢查以下選項是否開啟: NFS client support NFS client support for NFS version 2 NFS client support for NFS version 3 (如果有任意選項未開啟,則需要重新編譯後燒錄至開發板) #設定網路IP位址 (1) 將開發板、PC 與 Ubuntu 設定為同一網域 (2) 將 Chili Board 網路孔與 PC 連接 (3) 在 Chili Board 終端機輸入: ifconfig (4) 確認 IP 位址為 192.168.0.100 #虛擬機透過PC端網路連上網 (1) 將網路設定設為可連上網路的狀態 (2) 在 Ubuntu 上安裝 Network File System Server (3) 虛擬機的部分需要先到 VMware Network Adapter (4) Network Connection 選擇 NAT #修改Ubuntu內部網路設定 (1) 從右上角進入 Wired Settings (2) 將網路關閉為 OFF,點選齒輪進入設定 (3) 點選 IPv4,將 IPv4 Methoad 改為 Automatic (DHCP) (4) 關閉後將網路開啟為 ON (5) 設定完成後開啟終端機介面,輸入已下指令: sudo apt-get install nfs-kernel-server rpcbind 此為安裝 Network File System Server 的套件 能將此 Ubuntu 虛擬機設為網路共享資料夾的主機 其他有安裝 Network File System Client 的套件的開發板經過一次設定後 都能存取特定資料夾 #創建分享給開發板的資料夾 (1) 於終端機介面創建資料夾 (2) 在 /home/user 底下輸入指令: mkdir -p nfs (3) 創建完成後輸入以下指令更改設定檔: sudo gedit /etc/exports (4) 將以下指令加進去: /home/user/nfs 192.168.0.100(rw,sync,no_root_squash) (5) 輸入以下指令,重啟 Network File System Server 加載剛剛的設定檔: sudo /etc/init.d/nfs-kernel-server restart #設定Network_File_System (1) 在來到 mnt 資料夾下創建 nfs 資料夾 (與 Ubuntu 的 nfs 資料夾共享) (2) 輸入以下指令完成設定 Network File System: mount -o nolock -t nfs 192.168.0.102:/home/user/nfs /mnt/nfs #使用Webcam拍攝照片 (1) 進入 nfs 資料夾 (2) 輸入以下指令使用 Webcam 拍攝照片: fswebcam -r 640x480 test.jpg #NUC980 #NuMaker-RTU-NUC980 #Linux #IoT #物聯網 #遠端監控 #遠端資料存取 #RemoteMonitoring #RemoteControl #RTU #新唐科技 #Nuvoton #application #tool #learning #intermediate #zh-Hant - 更多產品資訊,請至新唐科技網站 https://bit.ly/3hVdcmC 購買管道:https://direct.nuvoton.com/tw 聯絡我們: SalesSupport@nuvoton.com
工具  學習  影片長度 - 4:1
新唐推出的 Chili Board 開發平台,支援豐富的軟硬體設備,不須額外安裝與編譯,設定完成後即可開發周邊應用程式。Chili Board 更專注在物聯網的開發環境上,支援各種網路通訊協議(SNMP、Web Server、HTTP(S))、雲端(Arm Pelion、AWS、Microsoft Azure、Aliyun)以及加解密引擎(PRNG、AES256、SHA, ECC、RSA2048),搭配新唐提供的 BSP 包,有效縮短開發時間。 #Linux #IoT #工業物聯網 #物聯網 #NUC980 #ChiliBoard #NuMaker-RTU-NUC980 #NK-RTU980 #RTU #Nuvoton #新唐科技 #NuMicro #Chili #tool #learning #basic #zh-Hant - 更多產品資訊,請至新唐科技網站 https://bit.ly/3hVdcmC 購買管道:https://direct.nuvoton.com/tw 聯絡我們: SalesSupport@nuvoton.com
創新產品  網路研討會  影片長度 - 1:1:9
基於雙核 64 位 Cortex-A35 高效能核心與單核 Cortex-M4 即時核心的 NuMicro MA35D1 系列微處理器,Cortex-A35 內核運行速度可達 1 GHz。MA35D1 高效能異核同構微處理器,強調其先進安全特點、硬體圖像加速器、高速連接介面、豐富的外設接口。適用於 Edge Gateway、機器學習、人機介面、工業控制、新能源多種應用場景。 【講師】 微處理器產品經理:Vic 時間:2022/09/28 #CortexA35 #CortexM4 #MA35D1 #MPU #異核同構 #EdgeGateway #MachineLearning #HMI #IndustrialControl #NewEnergy #HeterogeneousMulti-Core #General #Product #Webinar #zh-Hant - 更多產品資訊,請至新唐科技網站 https://bit.ly/3hVdcmC 購買管道:https://direct.nuvoton.com/tw 聯絡我們: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
創新產品  學習  影片長度 - 3:52
M0A23 is an automotive grade microcontroller which passed AEC-Q100 Grade 1. M0A23 is an microcontroller based on Cortex-M0. The NuMicro® M0A23U series runs up to 48 MHz and supports hardware divider. It provides 32 Kbytes Flash memory, 4 Kbytes SRAM. It provides compact package, rich analog peripherals, -40°C to 125°C operating temperature, 2.4V ~ 5.5V operating voltage, CAN 2.0B and LIN interface for robust communication. #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
創新產品  學習  影片長度 - 5:29
This video will introduce NuMaker-HMI-MA35D1-S1 Quick Start to you. 1. Unboxing 2. Power On and Demonstration 3. NuMaker-HMI-MA35D1-S1 Introduction 4. Development Platform 5. Development Environment Setup #HMI #SoM #System-on-Module #Yocto #DevelopmentBoard #Product #general #en #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:35
Nuvoton NuMicro M031BT: Dual-mode Bluetooth Low Energy 5.0 (BLE5.0) and open 2.4G proprietary microcontroller platform, in addition to the advantages of the controller built in the high-precision and multiple I/O peripheral, it also provides pass-through, HOGP and Heartbeat profiles, which is a good choice for product to upgrade with wireless functions #product #learning #basic #en - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC buy now: https://direct.nuvoton.com/tw/ contact us: SalesSupport@nuvoton.com
培訓  工具  學習  影片長度 - 5:53
Hello everyone, I am Morgan, the principal engineer of Nuvoton Technology. Today, I will show you how to connect to AWS IoT service using MbedOS on NuMaker-IoT-M487 development board The sample code is on GitHub, the URL is https://github.com/OpenNuvoton/Mbed-to-AWS-IoT To avoid typos, use keyword “OpenNuvoton” to search on google. Find the Nuvoton on GitHub, and click it On the Nuvoton GitHub page, use AWS as keyword to search the sample code: Mbed-to-AWS-IoT Right click to copy the URL for later use. Then enter the URL https://ide.mbed.com After log in, make sure the NuMaker-IoT-M487 board has selected in the upper right corner. If not, please refer Nuvoton IoT Tutorial series “Get Started with Mbed OS”. There is detailed description of how to add a board. Click the “Import” on the left of menu bar. In the “Import Wizard”, click “Click here” Please paste or key in the sample code URL to “Source URL:”, Select Import as “Program” Click “Import Name”, the project name “Mbed-to-AWS-IoT” will be filled automatically. Then click “Import”. After sample code imported, click “mbed_app.json” to open it. To use Wi-Fi, you have to configure SSID and password to match your Wi-Fi AP setting. In NuMaker_IOT_M487 session of mbed_app.json file, find the “wifi-ssid” to set your SSID. It is at line 44. And then set password to “wifi-password”. It is at line 45. Save it and click “Compile” to build the code. It takes time to compile code, please wait. You need an AWS account to use AWS IoT Core service. To create a thing, a policy, and certificates, then put the certificate to MQTT_server_setting.h file in the sample code. The sample code has included a certificate provided by Nuvoton for test only, so that you can quickly operate this example. If you don’t have an AWS account, it is recommended that you apply for an account and use your certificates in the example to observe the connection status on AWS IoT console page. After completed, “Success” will appear in the compile output window. The browser downloads the binary firmware file directly after a successful compiling. It will be saved in a default download folder. In Chrome, you can click download file and select “Show in folder”. Then we connect the NuMaker-IoT-M487 USB port to your computer. Please find the virtual COM port assigned for NuMaker-IoT-M487 in Device Manager. In the tutorial, the “Nu-Link Virtual Com Port” is COMx. Then use your favorite terminal tool. Here we use Putty. Open the COMx port with 115200 baud rate. And no flow control settings. Then “Open” it. Back to the folder you just download the binary firmware file (Mbed-to-AWS-IoT.NUMAKER_IOT_M487.bin). Drag and drop the file to NuMicro MCU drive. You will see the copying progress dialog box. You can see the messages on terminal. The device has acquired IP address from Wi-Fi AP, then successfully connect to AWS IoT and subscribe a topic. Then press button (SW2) on board to send a message. You can see the message published to server and received a message from server. That’s all for this tutorial. Thank you for watching. Welcome to subscribe to our channel. If you want to get more information, please contact us “SalesSupport@nuvoton.com” - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC Buy now: https://direct.nuvoton.com/tw/numaker-iot-m487 Contact us: SalesSupport@nuvoton.com #tool #training #learning #intermediate #en
前瞻應用  學習  影片長度 - 4:59
新唐作為微控制器的領導廠商之一,Arm9工業處理器系列為LQFP內建DRAM,工業操作溫度,還包括強大的硬體加解密引擎以及豐富的周邊介面,同時我們也提供各種聯網協議的BSP軟體。 上尚科技為專業工業控制方案廠商,採用新唐的工業級Arm9微處理器設計出多款應用產品,這些產品可以應用在不同的工業現場,本影片介紹產品如下: ● 工業等級Security Switch系列:EHG2408 ● 工業等級 串列伺服器系列:SE5201 ● 工業等級 物聯網遠端控制IO系列:IO5202 - 合作夥伴 - 上尚科技 官網:http://www.atop.com.tw 信箱:service@atop.com.tw - 更多產品資訊,請至新唐科技網站 https://bit.ly/3hVdcmC 聯絡我們: SalesSupport@nuvoton.com 購買資訊:http://direct.nuvoton.com/arm9-mpus/ #application #learning #basic #zh-Hant
前瞻應用  學習  影片長度 - 4:3
The purpose of video is to demonstrate functions of NuMaker-RTU-NUC980 within 5 minutes, including Ethernet webserver, Wi-Fi webserver, USB camera, and NFS function. If you get the NuMaker-RTU-NUC980 board, you can follow this video to implement all the functions #application #learning #intermediate #en - For more information, please visit: https://bit.ly/3hVdcmC Buy now: https://direct.nuvoton.com/tw/numaker-rtu-nuc980?search_query=Chili&results=1 Contact us: SalesSupport@nuvoton.com
前瞻應用  學習  影片長度 - 1:33
新唐全新推出小辣椒 (Chili) 開發平台,採用 NUC980 家族 IC 所設計,提供一個已經安裝 Linux 的平台,無須處理複雜的交叉編譯環境,僅需在 VMware 環境下執行 NUC980 的 BSP,即可於拿到板子 15 分鐘內進行應用程序的開發,由於體積小,安裝容易,可於開發完成後直接安裝在既有的系統中,進行聯網的操控及應用。 #application #learning #intermediate #zh-Hant - 更多產品資訊,請至新唐科技網站 https://bit.ly/3hVdcmC 購買管道:https://direct.nuvoton.com/tw/numaker-rtu-nuc980?search_query=Chili&results=1 聯絡我們: SalesSupport@nuvoton.com
本網站使用cookie作為與網站互動時識別瀏覽器之用,瀏覽本網站即表示您同意本網站對cookie的使用及相關隱私權政策
OK