完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
我有 44 个 ADC 通道配置为队列扫描。 我使用给定的函数初始化它们,但是尽管我选择了采样时间为 1e-7,但我无法让它们更快地采样
有什么建议吗? /* Function to initialize the EVADC group with default parameters */void initEVADCGroup(IfxEvadc_GroupId grpId, IfxEvadc_GroupId grpIdMstr, IfxEvadc_Adc_Group *adcGroup){ /* Create and initialize group configuration with default values */ IfxEvadc_Adc_GroupConfig adcGroupConfig; IfxEvadc_Adc_initGroupConfig( adcGroupConfig, g_evadc); /* Setting user configuration using group 2 */ adcGroupConfig.groupId = grpId; adcGroupConfig.master = grpIdMstr; adcGroupConfig.startupCalibration = TRUE; adcGroupConfig.inputClass->sampleTime = 1e-7; /* Enable queued source */ adcGroupConfig.arbiter.requestSlotQueue0Enabled = TRUE; /* Enable all gates in "always" mode (no edge detection) */ adcGroupConfig.queueRequest[0].triggerConfig.gatingMode = IfxEvadc_GatingMode_always; /* Initialize the group */ IfxEvadc_Adc_initGroup(adcGroup, adcGroupConfig);} |
|
相关推荐
1个回答
|
|
unction(&adcGroupConfig, grpId); /* Assign the ADC master group */ adcGroupConfig.master = grpIdMstr; /* Set the sampling time for all channels */ adcGroupConfig.sampleTime[0].onTime = 1.0e-7; /* set ON time to 100ns */ adcGroupConfig.sampleTime[0].offTime = 1.0e-7; /* set OFF time to 100ns */ adcGroupConfig.sampleTime[14].onTime = 1.0e-7; /* set ON time to 100ns for channel 14 */ adcGroupConfig.sampleTime[14].offTime = 1.0e-7; /* set OFF time to 100ns for channel 14 */ /* Initialize the ADC group with the configuration */ IfxEvadc_Adc_initGroup(adcGroup, &adcGroupConfig);} /* In main function */int main(void){ IfxEvadc_Adc_Group adcGroup[2]; /* ADC groups */ /* Initialize ADC groups */ initEVADCGroup(IfxEvadc_GroupId_0, IfxEvadc_GroupId_0, &adcGroup[0]); initEVADCGroup(IfxEvadc_GroupId_1, IfxEvadc_GroupId_0, &adcGroup[1]);}
|
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
494 浏览 0 评论
使用Keil建立完整的工程,并使用外部中断0触发数码管显示903
1050 浏览 0 评论
嵌入式学习-飞凌嵌入式ElfBoard ELF 1板卡-使用AHT20进行环境监测之AHT20传感器介绍
1151 浏览 0 评论
887 浏览 0 评论
928 浏览 1 评论
【youyeetoo X1 windows 开发板体验】少儿AI智能STEAM积木平台
11847 浏览 31 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-2 20:14 , Processed in 0.607088 second(s), Total 76, Slave 58 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号