2019-02-02 06:34 PM
Hi, guys. I bought
https://www.digikey.com/product-detail/en/stmicroelectronics/NUCLEO-F446RE/497-15882-ND/5347712
https://www.digikey.com/product-detail/en/txc-corporation/9B-8.000MEEJ-B/887-1233-ND/2207653
Mostly the internal clock is less accurate than the external crystal. So I'm planning to populate a 8MHz clock to the board.
-Thanks!
Solved! Go to Solution.
2019-02-02 09:08 PM
DAC is an analog static structure. Made short for conceptually understanding it's like a resistor ladder with switches to define a voltage ratio, and an optional buffer to lower the output impedence and have a decent slew rate. The DAC itself does not need clocks, only for the controls. The clock defines how fast the DAC requested voltage update can be, or output sampling rate.
Nucleo all pins are available and not tied to any external components.
For DAC outputs (PA4 and PA5 typically) on Discovery, check for schematics and make sure nothing else is impairing the analog DAC on the board.
In the datasheet, you'll find the max slew rate values. DACs are not intended to make square waves, which push-pull digital pins will do well.
Analog outputs usually are implemented by PWMs with external RC filter, which are "cheap" way to have analog signals.
When it must be high frequency analog signal, or when the analog output must be steady when the STM32 is in clock stop mode (static), DAC then shines.
2019-02-02 09:08 PM
DAC is an analog static structure. Made short for conceptually understanding it's like a resistor ladder with switches to define a voltage ratio, and an optional buffer to lower the output impedence and have a decent slew rate. The DAC itself does not need clocks, only for the controls. The clock defines how fast the DAC requested voltage update can be, or output sampling rate.
Nucleo all pins are available and not tied to any external components.
For DAC outputs (PA4 and PA5 typically) on Discovery, check for schematics and make sure nothing else is impairing the analog DAC on the board.
In the datasheet, you'll find the max slew rate values. DACs are not intended to make square waves, which push-pull digital pins will do well.
Analog outputs usually are implemented by PWMs with external RC filter, which are "cheap" way to have analog signals.
When it must be high frequency analog signal, or when the analog output must be steady when the STM32 is in clock stop mode (static), DAC then shines.