Micro Printer

  • Watch time - 3:31
    以新唐 NuMaker NUC980 IIoT 為平台,使用 Linux 進行開發,學習開發各式功能,觀看本片,您將學會如何控制 GPIO 使 LED 閃爍。 哈囉大家好,我是新唐工程師 Kevin,今天為大家介紹如何在 NuMaker NUC980 IIoT 板子上透過 GPIO 讓 LED 燈閃爍。 NuMaker NUC980 IIoT 板子的 Power-on Setting上方有 3 個 LED 燈,分別由不同的 GPIO 控制。最左邊,編號 LED03 的 LED 燈是由 GPIO B8 這根 pin 控制。今天示範如何用程式控制 GPIO B8 讓 LED 燈閃爍。 這是 LED 燈閃爍的程式,在看程式之前,我先為各位說明,在 Linux kernel 中,每一根 GPIO pin 都有編號。每一個 GPIO Group 占用 32個編號,編號為 0 到 31,分配給 GPIO Port A 這個 group,編號 32 到 63 分配給 GPIO Port B,以此類推。 LED03 這個 LED 燈是由 GPIO B8 這根 pin 控制,GPIO B8 在 Linux 中的編號是 40。 回到程式中,我們看到這個程式是透過 system function 執行系統命令,透過 Linux kernel 的 sysfs 控制 GPIO。 第 23 行 system("echo40 /sys/class/gpio/export"); 是將 GPIO B8 設定成可以用sysfs 控制。 第 24 行 system("echo out /sys/class/gpio/gpio40/direction"); 是將 GPIO B8 設定為 output。 接下來在 while loop 中,透過 system("echo 1/sys/class/gpio/gpio40/value"); 讓 GPIO B8 輸出 high;再透過 system("echo 0 /sys/class/gpio/gpio40/value"); 讓 GPIO B8 輸出 low,中間延遲 1 秒鐘,就可以做到 LED 燈閃爍的功能。 這個程式,main.c,儲存後,進行 compile 輸入 arm-linux-gcc main.c -o gpio_toggle (輸入 ls) 產生一個執行檔 gpio_toggle 將 gpio_toggle 拷貝到 root file system 目錄中, (輸入 sudo cp gpio_toggle ../rootfs) 然後重新 compile Linux Kernel 透過 NuWriter 將 Linux kernel 下載到NuMaker NUC980 IIoT 板子上執行 Linux Kernel 開機完成後,輸入 ./gpio_toggle,執行閃爍 LED 的程式。 此時可以看到 NuMaker NUC980 IIoT 板子上的 LED 正在閃爍。 - 更多產品資訊,請至新唐科技網站 https://bit.ly/3hVdcmC 購買管道:https://direct.nuvoton.com/tw/numaker-nuc980-iiot 聯絡我們: SalesSupport@nuvoton.com
  • Watch time - 4:59
    Secure Smart Metering Communication Reference Design Hi everybody, today we are going to introduce a reference design of Smart-Metering communication card based on NuMicro M2351 Series microcontroller. You can find useful security features based on the Arm Cortex-M23 CPU core with Nuvoton’s in-house technology integration. The auto-metering is an infrastructure for automatic, remotely, wire or wireless meter data reading. It’s highly possible to be intervened if there is no security mechanism. That is a very typical IoT security issue in the IoT era. In many countries, there are a lot of Auto-Metering Infrastructure (AMI) projects being undertaken by main electricity power companies worldwide. Most projects start from upgrading the communication modem cards as the first step rather than retiring the meters. The modem card can play as a gateway to monitor the incorrect device operation and data transmission security. Issues of modem card security are covering: First, a limited performance due to crypto computation efficiency Second, speed limitation due to interface choice The third, cost burden due to extra hardware modules for different communication protocols Nuvoton’s reference design of Secure Smart Meter Communication is an end-to-end security solution for AMI. With the collaboration with SPI-Korea, the solution incorporates a lot of advantages such as TrustZone security for firmware, a range of interfaces for device communication, secure over-the-air firmware update, and remote management. With the complete hardware specification of M2351, a security software company, SPI-Korea, can easily implement their secure AMI solution for modem card which connects meters and cloud servers. M2351 also contributes the crypto acceleration during the cryptographic computing in order to save CPU time for different communication protocol modules by its powerful hardware functionalities during message transmission outside of a microcontroller unit. SPI-Korea has developed a range of Armv8-M TrustZone based technologies. Her expertise covers Boot Manager, Key Manager, and Device Manager, which is very useful for microcontroller security and certainly shows the stability of a microcontroller device. Also, they are certified by Korea Electricity Company. We hope this successful experience can be further adopted in other areas worldwide because it’s a secure, accurate and environmentally safe solution for AMI. This slide is a picture for SPI-Korea AMI modem card design. NuMicro Family microcontrollers can be utilized for designs of auto-metering infrastructure devices. We start from AMI modem card and we are confident to support meters of any next-generation of AMI. We now integrate M23-based microcontroller with M4-based or Arm9-based microcontroller as a proposal for next-generation modem card of Korea AMI and we hope to provide high-performing cost-effective solution for all AMI devices in the future. - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC contact us: SalesSupport@nuvoton.com
  • Watch time - 4:14
    以新唐 NuMaker NUC980 IIoT 為平台,使用 Linux 進行開發,學習開發各式功能,觀看本片,您將學會安裝 NuMaker NUC980 IIoT 的開發環境。 哈囉大家好,我是新唐工程師 Kevin,今天為大家介紹如何安裝新唐 NuMaker NUC980 IIOT 開發環境,NuMaker NUC980 IIOT是以基於Linux 系統的Buildroot做為開發環境。 在安裝 Buildroot 之前,請先瀏覽這個網頁 https://buildroot.org/downloads/manual/manual.html#requirement ,這個頁面提到 Buildroot是基於 Linux 系統;安裝 Buildroot 需要一些 package,如果缺少package 或者版本太舊的話,安裝過程會出現錯誤。所以請先確認您的 Linux 系統是否有這些 package,以及 package版本是否太舊,然後再進行安裝。 接下來在 Linux Terminal 輸入 git clone https://github.com/OpenNuvoton/NUC970_Buildroot 就可以下載 NUC980開發環境 - Buildroot。 下載完成後,產生一個新的目錄 NUC970_Buildroot,目錄名稱叫做 NUC970_Buildroot ,新唐的 NUC980 和 NUC970 系列產品共用 Buildroot,目錄名稱則以NUC970 開頭。 透過 cd NUC970_Buildroot,切換到 NUC970_Buildroot 目錄中,準備進行Compile Buildroot。 Compile分為三個步驟: (1) 輸入 make nuvoton_nuc980_iot_defconfig,產生一個預設的 configuration file。預設的 configuration 會連網安裝 U-Boot、Linux Kernel、root file system、toolchain …… 等常用的工具。 (2) 如果想要修改預設的 configuration,請輸入 make menuconfig,進入視窗選單來增加或刪減選項,修改完成後離開視窗前,請記得選擇視窗下方的 “(Save)”,儲存修改後的 configuration,然後再選擇視窗下方的 “(Exit)”,離開視窗。 (3) 回到 Linux Terminal後,輸入 make,開始進行Compile。 Compile的時間大約 1 個小時左右,如果電腦速度比較慢,就需要更久的時間。Compile成功後,NUC980 BSP 就會出現在NUC970_Buildroot目錄下面的 output 這個子目錄。 - 更多產品資訊,請至新唐科技網站 https://bit.ly/3hVdcmC 購買管道:https://direct.nuvoton.com/tw/numaker-nuc980-iiot 聯絡我們: SalesSupport@nuvoton.com
  • Product  Learning  Watch time - 5:23
    IEEE 802.15.4 Thread Module Reference Design #Product #Learning #Basic #en For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC
  • Product  Learning  Watch time - 7:17
    .Why FIDO Authentication .Security Device for Personal Identity .USB Dongles Usage .M2351 USB FIDO Key SDK .Support Capacitive Fingerprint Sensors .M2351 USB FIDO Key with TrustZone .Values Brought by M2351 .Collaborative Software Development .An Open Platform with Content Protection .Leading Market Position for Software Protection For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC #Product #Learning #Basic #en 0:00 簡介 0:28 Why FIDO Authentication 1:19 Security Device for Personal Identity 2:01 USB Dongles Usage 2:29 M2351 USB FIDO Key SDK 3:36 M2351 USB FIDO Key with TrustZone 4:07 Values Brought by M2351 4:55 Collaborative Software Development (2) 6:10 An Open Platform with Content Protection
  • Product  Learning  Watch time - 3:48
    This video is going to show you our latest Low power ML51 series microcontroller. The ML51 platform features high performance and pin-to-pin compatibility with our 32-bit microcontrollers, such as M480, M031, and M261 series . ML51 series supports up to 24MHz operation frequency, and 1.8V to 5.5V operating voltage, it provides four power modes: normal run mode, low power run mode, low power idle mode, and power down mode. In power down mode with multiple wake-up sources. The power consumption in low power idle mode is down to 13 μA and in power down mode it is less than 0.8 μA. When the clock runs at internal RC oscillator can also allow 9600 baud rate for UART communication. ADC supports up to 8 channels of 12-bit ADC, analog comparator and five levels of the internal reference voltage, ML51 provide two channels of PDMA, strong immunity like 8 kV ESD and 4.4 kV EFT. - For more information, please visit: http://www.nuvoton.com buy now: NuMaker-ML51PC/ http://direct.nuvoton.com/numaker-ml51pc NuTiny-ML51EB9AE/ http://direct.nuvoton.com/nutiny-ml51eb9ae contact us: SalesSupport@nuvoton.com #Product #Learning #Basic #en
  • Watch time - 2:57
    新唐低功耗8051微控制器 - ML51 系列 產品、應用及開發環境介紹。 ML51 平台的速度高達 24 MHz。並具有 1.8 ~ 5.5V 的寬工作電壓,同時功耗也提供非常低,在正常運行模式下功耗僅需 80 μA / MHz,在休眠模式下功耗更可以低至 0.8 μA;類比部分我們提供 8 組 12 位 ADC、2 組比較器以及 5 階內置參考電壓。另外我們也內建 2 組 PDMA,ESD 部分可以高達 8 kV 以及 EFT 可以高達 4.4 kV,我們還提供許多豐富週邊、像是三路串口以及 2 路 I2C 還有 2 路 SPI。 ML51 系列適合於在各種需要電池的裝置,舉例來說,我們可以讓一個225mAh 的鈕扣電池持續工作 3 年而不需要更換電池。另外我們提供的寬工作電壓可以供電低至 1.8V 也不需要外加 LDO 在 PCB 板、舉例像是 TWS 的無線藍芽耳機或者是獨立式的煙霧感測器都是非常適合 ML51 的產品。 ML51 提供的開發板可以直接與電腦相連,不需要額外的燒錄器。ML51 提供的開發板以及相關的 sample code 都能讓各位快速上手、另外我們新的開發板上面,背面都印有一個短網址、輸入短網址進入網頁後可以在上面找到相關的開發資訊。 - 更多產品資訊,請至新唐科技網站 https://bit.ly/3hVdcmC 購買網址: NuMaker-ML51PC/ http://direct.nuvoton.com/numaker-ml51pc NuTiny-ML51EB9AE/ http://direct.nuvoton.com/nutiny-ml51eb9ae 聯絡我們:SalesSupport@nuvoton.com This video is going to show you our latest Low power ML51 series microcontroller. The ML51 platform features high performance and pin-to-pin compatibility with our 32-bit microcontrollers, such as M480, M031, and M261 series . ML51 series supports up to 24MHz operation frequency, and 1.8V to 5.5V operating voltage, it provides four power modes: normal run mode, low power run mode, low power idle mode, and power down mode. In power down mode with multiple wake-up sources. The power consumption in low power idle mode is down to 13 μA and in power down mode it is less than 0.8 μA. When the clock runs at internal RC oscillator can also allow 9600 baud rate for UART communication. ADC supports up to 8 channels of 12-bit ADC, analog comparator and five levels of the internal reference voltage, ML51 provide two channels of PDMA, strong immunity like 8 kV ESD and 4.4 kV EFT.
  • Watch time - 3:12
    本方案使用 NuMicro M480 高效能 M4 微控制器,搭配 emWin library 進行 GUI 圖像化人機介面設計,將結果顯示在 2” OLED 上。NuMicro M480 系列微控制器是新唐的最新產品,透過這個系列產品高達 192 MHz 的強大運算能力和多達 160 KB 的 SRAM,並且搭配 2 吋 OLED 螢幕,來達到流暢地解碼及播放 GIF 動態影像,那這個方案包含了三大重點: 第一點:我們使用了新唐 M480 高效能微控制器,透過高速 SPI 控制 OLED 來顯示炫麗的動態效果 第二點:本方案已內建 GIF 解碼和多種字型的 Library,如果有其他字型需求,可以透過新唐字型轉換工具載入其他字庫,再加上 emWin Library 的使用,快速開發完成高質感使用者介面。 第三點:本方案可以應用於有顯示功能需求的產品,如電競主機板,可以高效地動態顯示溫度、風扇轉速和硬碟狀態等 - 更多產品資訊,請至新唐科技網站 https://bit.ly/3hVdcmC 聯絡我們:SalesSupport@nuvoton.com ---- Today we are going to introduce our reference design OLED Display with GIF Format Decode featuring the NuMicro M480 series microcontroller. As you can see, the microcontroller controls the 2-inch OLED screen and GIF files can be played on it. The M480 series runs up to 192 MHz with 512 KB embedded Flash memory and 160 KB embedded SRAM. The high-performance MCU decodes GIF motion graphics smoothly. There are three major features about this reference design: First: We use the Nuvoton M480 high-performance microcontroller to control the OLED through high-speed SPI to showcase dynamic effects. Second: This solution has built-in GIF decoding and various font libraries. If there are other font requirements, you can load other fonts through the Nuvoton font conversion tool, and use the emWin Library to develop a high-quality user interface quickly. Third: It can be applied to products requiring display functions, such as e-sports motherboards, which can dynamically display temperature, the speed of the fan and the status of the hard disk. The OLED device has a 2-inch OLED screen with a resolution of 256*64. There is an SD card slot underneath, which obviously is for data storage and the storage status is shown on the OLED screen. The right side, there is a high-speed USB for PC connection as a flash drive. A headphone jack is on the left, I’m sure you all know how it works.
  • Watch time - 7:44
    As a leading supplier of 8051 microcontrollers (MCUs) , Nuvoton offers a variety of products with the best performance critical to the success of consumers and industrial products. NuMicro® 8051 industrial series microcontrollers is based on 1T 8051 core, running up to 24 MHz, with up to 32 Kbyte of Flash memory and up to 2 Kbyte of SRAM. It supports one high precision 24 MHz allowing ± 1 % deviation and one 10 kHz internal RC Oscillators, operating at 2.4 V ~ 5.5 V voltage and - 40 ℃ ~ 105 ℃. NuMicro® 8051 industrial series is equipped with special features such as up to 15 channels of 500k SPS 12-bit ADC, up to 12 channels of PWM with independent counters and GPIO supports 20 mA driving capability, also with ESD resistivity 8 kV and EFT resistivity 4.4 kV. Combined all these above high performance features, and provides 10-33 pin packages for a broad range of applications.
  • Watch time - 4:40
    說明Nuvoton Nu-Link Debug Adapter是一個基於SWD(串列調試)信號介面的USB調試及燒錄器,可應用在Nuvoton NuMicro™ 家族晶片的開發中。用戶可以用ICP工具進行批量燒錄。Nu-Link Adapter也支援協力廠商的開發工具。本視頻介紹Nu-Link Adapter的種類、功能,及如何搭配KEIL使用。
  • Watch time - 4:52
    說明Nuvoton Nu-Link Debug Adapter是一個基於SWD(串列調試)信號介面的USB調試及燒錄器,可應用在Nuvoton NuMicro™ 家族晶片的開發中。用戶可以用ICP工具進行批量燒錄。Nu-Link Adapter也支援協力廠商的開發工具。本視頻介紹Nu-Link Adapter的種類、功能,及如何搭配IAR使用。
  • Watch time - 6:17
    本視頻介紹如何使用NuMicro ICP Programming Tool 達到線上批量程式設計目標板,並實際演示操作流程‧ NuMicro ICP Programming 介面簡單、易於操作,是開發、量產過程的得力助手。
This website uses cookies to ensure you get the best experience on our website. Learn more
OK