Phatline Posted December 13, 2020 Report Posted December 13, 2020 on the LPC core, i should get a DAC-Output on Pin: (at least the shematic says that) J5A A3 on App - init i put: aout_config_t config; config = AOUT_ConfigGet(); config.if_type = AOUT_IF_INTDAC; config.if_option = 0; config.num_channels = 1; // INTDAC: only 2 channels supported, 8 channels pre-configured for your own comfort config.chn_inverted = 0; AOUT_ConfigSet(config); AOUT_IF_Init(0); (there is only one Internal Dac on LPC?) and in the programm itself (app-tic) i update the CV voltage like this: AOUT_PinSet(0, CV_OUT); AOUT_Update(); while CV_OUT is a value from 0-65535.... (?) (or what Bitrate has the Internal DAC?) or is there also a Pin-Crossing like on the STM-Core (SD-Card)? for the moment it doesnt work... maybe i miss something - but with the things i wrote above - i get a Aout-NG working in the past... best-mike. Quote
Phatline Posted December 15, 2020 Author Report Posted December 15, 2020 by the way my code works with a AOUT_NG connected --- but on int-dac -i get nothting! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.