Hi @wesOS
The MCXN947 HPDAC (DAC2) is not currently supported in upstream Zephyr. The FRDM‑MCXN947 board only includes support for the LPDAC (nxp,lpdac), and there is no devicetree binding or driver for HPDAC in Zephyr.
dac0: dac@10f000 {
compatible = "nxp,lpdac";
reg = <0x10f000 0x1000>;
interrupts = <106 0>;
status = "disabled";
voltage-reference = <0>;
#io-channel-cells = <1>;
};
If you need HPDAC functionality now, the recommended approach is to use the MCUXpresso SDK HPDAC driver directly inside your Zephyr application, when a peripheral has no Zephyr driver.
BR
Harry