Search found 207 matches

by a_ziliu
27 Mar 2017, 14:03
Forum: Nuvoton Cortex-M0/M23 MCU
Topic: Does ADC (analog-to-digital converter) in the NuMicro? Family series support the recording function?
Replies: 0
Views: 1889

Does ADC (analog-to-digital converter) in the NuMicro? Family series support the recording function?

The 12-bit or 10-bit ADC in the NuMicro? Family series is mainly used for sensor signal sampling and does not produce a good effect in recording. Nevertheless, the I?S interface and audio CODEC can be used to realize the recording function. The NUC505 series is equipped with 24-bit Audio CODEC to su...
by a_ziliu
27 Mar 2017, 14:02
Forum: Nuvoton Cortex-M0/M23 MCU
Topic: Do the Nu-Link, Nu-Link-Pro and Nu-Link-Me support devices from other companies?
Replies: 0
Views: 1994

Do the Nu-Link, Nu-Link-Pro and Nu-Link-Me support devices from other companies?

No, the Nu-Link, Nu-Link-Pro and Nu-Link-Me only support the NuMicro? Family series.
by a_ziliu
27 Mar 2017, 14:01
Forum: Nuvoton Cortex-M0/M23 MCU
Topic: How long can a user clear a time-out event flag before the Watchdog Timer (WDT) generates a system reset signal when the
Replies: 0
Views: 2054

How long can a user clear a time-out event flag before the Watchdog Timer (WDT) generates a system reset signal when the

Depending on the NuMicro? series, before the WDT generates a system reset signal, the Watchdog Timer (WDT) has a different delay period (TRSTD), as listed below:
Note: TWDT = 1 / WDT_CLK, where WDT_CLK is the WDT clock source.
by a_ziliu
27 Mar 2017, 14:01
Forum: Nuvoton Cortex-M0/M23 MCU
Topic: What is the SPI 2-bit transfer mode and how to use it?
Replies: 0
Views: 1825

What is the SPI 2-bit transfer mode and how to use it?

The 2-bit transfer mode means that the SPI controller transmits 2-bit data output at the same edge of serial clock, and meanwhile it also receives 2-bit data input at the opposite edge of serial clock during a serial clock cycle. Accordingly, one SPI Master controller can access data with two extern...
by a_ziliu
27 Mar 2017, 14:00
Forum: Nuvoton Cortex-M0/M23 MCU
Topic: Can the WDT controller wake up the CPU from Power-down mode?
Replies: 0
Views: 1651

Can the WDT controller wake up the CPU from Power-down mode?

Yes, the WDT controller supports the WDT wake-up function. The user has to set the WDT wake-up enable bit (WTWKE = 1). After the WDT wake-up enable bit is set (WTWKE=1) and WDT counter overflow trigger WDT-timeout event flag is set (WTIF=1), the WDT controller will wake up the CPU form Power-down mo...
by a_ziliu
27 Mar 2017, 14:00
Forum: Nuvoton Cortex-M0/M23 MCU
Topic: How to view code size and SRAM usage in the Keil development environment?
Replies: 0
Views: 1686

How to view code size and SRAM usage in the Keil development environment?

After programming, Keil will display the following message: Program Size: Code=86496 RO-data=9064 RW-data=1452 ZI-data=16116 The parameters have the following meanings: Note: The unit is Byte. When programming, the occupied space in Flash is: Code+(RO-data)+(RW-data) When a program is running, the s...
by a_ziliu
27 Mar 2017, 14:00
Forum: Nuvoton Cortex-M0/M23 MCU
Topic: Can the user view the register and variable updates during program free run in Debug mode under the Keil development env
Replies: 0
Views: 1756

Can the user view the register and variable updates during program free run in Debug mode under the Keil development env

he user can open the Nu_Link_Driver.ini file in the project folder, and find the corresponding chip series. For example, if the NUC230_240 series is used, look for [NUC2xx] in the Nu_Link_Driver.ini file, and add MemAccessWhileRun = 1 below [NUC2xx], as shown below. The following table lists search ...
by a_ziliu
27 Mar 2017, 13:54
Forum: Nuvoton Cortex-M0/M23 MCU
Topic: What is the main function of PWM Capture?
Replies: 0
Views: 1706

What is the main function of PWM Capture?

PWM Capture and PWM Output share the same hardware. When a rising edge or a falling edge occurs, the value of a PWM counter will be latched into the corresponding rising or falling latch register. At this time, whether to reload the PWM counter or an interrupt event occurs can be determined. The PWM...
by a_ziliu
27 Mar 2017, 13:54
Forum: Nuvoton Cortex-M0/M23 MCU
Topic: Can UART wake up CPU in Power-down mode?
Replies: 0
Views: 1617

Can UART wake up CPU in Power-down mode?

All the NuMicro ? series chips support the use of CTSn pin to wake up CPU. The user can switch the CTSn pin status to wake up CPU. For some NuMicro ? series chips, such as the Nano series, the UART data wake-up function is also supported. When receiving incoming data, UART can wake up CPU from Power...
by a_ziliu
27 Mar 2017, 13:53
Forum: Nuvoton Cortex-M0/M23 MCU
Topic: How to calculate the PWM frequency and duty cycle?
Replies: 0
Views: 1684

How to calculate the PWM frequency and duty cycle?

The formula is as follows:
PWM frequency = PWM clock source frequency / ((Pre-scale + 1) * frequency divider * (CNR + 1))
Duty Cycle = (CMR + 1) / (CNR + 1)
(CNR: 16-bit counter register; CMR: 16-bit comparator register)