Search found 94 matches

by 9chuckyoung
20 Mar 2020, 13:36
Forum: Nuvoton Arm9
Topic: [N9H20] How to use Non-OS NVTFAT for the case of "SD card + NAND flash"
Replies: 0
Views: 1948

[N9H20] How to use Non-OS NVTFAT for the case of "SD card + NAND flash"

Non-OS N9H20 BSP GitHub download link: https://github.com/OpenNuvoton/N9H20_emWin_NonOS NVTFAT document: \N9H20_emWin_NonOS-master\Documents\N9H20 Non-OS Library Reference Guide.pdf Attched file is a modified example for NVTFAT to use SD card + NAND flash two storages respectively, the password is n...
by 9chuckyoung
20 Mar 2020, 13:12
Forum: Nuvoton HMI/GUI
Topic: [N9Hxx] How to port official emWin sample to Nuvoton platform
Replies: 0
Views: 3045

[N9Hxx] How to port official emWin sample to Nuvoton platform

The attached file is a guide to port emWin sample to Nuvoton platform, the password is nuvoton
by 9chuckyoung
20 Mar 2020, 09:51
Forum: Nuvoton HMI/GUI
Topic: [N9H30F6 NK] Binaries of emWin tutorial examples
Replies: 0
Views: 3017

[N9H30F6 NK] Binaries of emWin tutorial examples

Platform: N9H30F6 NK with 7" LCD Brief: Attached binaries are emWin tutorial examples, the password is nuvoton IDE and tool-chain: Keil professional and ARMCC5 Information: 1. For N9H30F6 NK with 7" LCD only. 2. Use NuWriter to download binary to DDR and run. Please download NuWriter first, the down...
by 9chuckyoung
20 Mar 2020, 09:50
Forum: Nuvoton HMI/GUI
Topic: [N9H26K6 NK] Binaries of emWin tutorial examples
Replies: 0
Views: 3023

[N9H26K6 NK] Binaries of emWin tutorial examples

Platform: N9H26K6 NK with 5" LCD Brief: Attached binaries are emWin tutorial examples, the password is nuvoton IDE and tool-chain: Keil professional and ARMCC5 Information: 1. For N9H26K6 NK with 5" LCD only. 2. To use USB cable to connect N9H26K6 NK and NB/PC, then power on demo board, in Windows, ...
by 9chuckyoung
20 Mar 2020, 09:50
Forum: Nuvoton HMI/GUI
Topic: [N9H20K5 RDK] Binaries of emWin tutorial examples
Replies: 0
Views: 2981

[N9H20K5 RDK] Binaries of emWin tutorial examples

Platform: N9H20K5 RDK with 4.3" LCD Brief: Attached binaries are emWin tutorial examples, the password is nuvoton IDE and tool-chain: Keil professional and ARMCC5 Information: 1. For N9H20K5 RDK with 4.3" LCD only. 2. To use USB cable to connect N9H20K5 RDK and NB/PC, then power on demo board, in Wi...
by 9chuckyoung
20 Mar 2020, 09:40
Forum: Nuvoton Arm9
Topic: [N9H20] How to use SPI flash with Non-OS BSP
Replies: 0
Views: 1908

[N9H20] How to use SPI flash with Non-OS BSP

Q: Is aay hardware modification required? A: No need to modify on N9H20 demo board. Q: Where is the N9H20 board reference guide? A: Nuvoton official website: https://www.nuvoton.com/products/microprocessors/arm9-mpus/-n9h-series/?group=Hardware&tab=2 Q: Any software compiler change setting required?...
by 9chuckyoung
17 Mar 2020, 09:31
Forum: Nuvoton HMI/GUI
Topic: [N9H30] Display JPEG files from SD card with FatFs
Replies: 0
Views: 3138

[N9H30] Display JPEG files from SD card with FatFs

Platform: N9H30 Platform resource link: https://www.nuvoton.com/hq/products/application-specific-socs/hmi-emwin-mpus/?__locale=en BSP link: https://github.com/OpenNuvoton/N9H30_emWin_NonOS BSP contains tool and BSP sample pre-built binaries: https://www.nuvoton.com/products/microprocessors/arm9-mpus...
by 9chuckyoung
16 Mar 2020, 11:14
Forum: Nuvoton Arm9
Topic: [N9H26] How to use Non-OS Ping-Pong buffer to avoid tearing
Replies: 0
Views: 1800

[N9H26] How to use Non-OS Ping-Pong buffer to avoid tearing

step-1
init TIMER

step-2
init VPOST

step-3
trigger user application, e. g., VPE

step-4
trigger VPOST and wait vsync

step-5
toggle VPOST frame buffer address
by 9chuckyoung
13 Mar 2020, 14:46
Forum: Nuvoton Arm9
Topic: [NUC972] How to shift Non-OS CAP (Capture) window start address
Replies: 0
Views: 1892

[NUC972] How to shift Non-OS CAP (Capture) window start address

You set cropping window start address to determine where is the start address of your sensor' module output data:

//Set cropping window start address
pCAP->SetCropWinStartAddr(y,x);

Constrain:
if x or y is out of range, the LCD result will shift.
by 9chuckyoung
13 Mar 2020, 14:22
Forum: Nuvoton Arm9
Topic: [NUC972] How to fix Non-OS LCM vibration
Replies: 0
Views: 1795

[NUC972] How to fix Non-OS LCM vibration

Adjust LCM clock From: // LCD clock is selected from UPLL and divide to 20MHz outpw(REG_CLK_DIVCTL1, (inpw(REG_CLK_DIVCTL1) & ~0xff1f) | 0xe18); To: // LCD clock is selected from UPLL and divide to 20MHz outpw(REG_CLK_DIVCTL1, (inpw(REG_CLK_DIVCTL1) & ~0xff1f) | 0x918); Constrain: Higher FPS will ca...