FRDM-KL03Z Use Internal 1.2 V Reference for ADC

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

FRDM-KL03Z Use Internal 1.2 V Reference for ADC

跳至解决方案
2,223 次查看
Meechy
Contributor I

Hello

I am attempting to use the FRDM-KL03Z ADC with the internal voltage reference instead of  V_REFH which is tied to VDD inside the chip. 

I have the ADC running fine with the VREFH voltage at VDD = 3.3 V. 

I want to instead use the internal voltage reference of 1.2 V.

I have tried the following to change over to the voltage reference: 

1)  Set PMC_HAL_SetBandgapInLowPowerModeCmd(baseAddr, 1); to enable the voltage reference.


2) Set PMC_HAL_SetBandgapBufferCmd(baseAddr, 1); to enable the voltage reference buffer. 

 

3) Set ADC16_HAL_SetRefVoltSrcMode(baseAddr, 1U); to select the alternative reference pair of ValtH and ValtL.

After doing this the ADC producing exactly the same readings as before indicating that it is still using the old reference. Am I missing anything important here? 

0 项奖励
回复
1 解答
2,155 次查看
jingpan
NXP TechSupport
NXP TechSupport

Hi,

I use MCUxpresso IDE and KL03 SDK2.3.1.  It only need several step to enable VREF_OUT.

   PORT_SetPinMux(PORTB, 2U, kPORT_PinDisabledOrAnalog);
   VREF_GetDefaultConfig(&vrefConfigStruct);
   VREF_Init(VREF, &vrefConfigStruct);

 

Regards,

Jing

在原帖中查看解决方案

0 项奖励
回复
6 回复数
2,142 次查看
Meechy
Contributor I

Hello Jing 

Thanks for your help, I have this working on my platform now.

Regards,

James

0 项奖励
回复
2,213 次查看
jingpan
NXP TechSupport
NXP TechSupport

Hi Meechy,

what's the voltage of VREF_OUT pin?

 

Regards,

Jing

0 项奖励
回复
2,201 次查看
Meechy
Contributor I

Hello Jing

Thanks for the fast reply. I get a voltage that floats around 0.05 V when measuring PTB2 with my meter. 

I believe this is wrong and is likely causing the problem. Am I right in thinking that the capacitor required for V_REF is already installed on the FRDM-KL03Z board? 

Do you have any suggestions on how I can troubleshoot this further? 

Best wishes,

James 

0 项奖励
回复
2,187 次查看
jingpan
NXP TechSupport
NXP TechSupport

Hi,

 Please check if you have configure VREF module correctly and mux PTB2 to Vref function.

 

Regards,

Jing

0 项奖励
回复
2,166 次查看
Meechy
Contributor I

Hello Jing

I have configured the mux and now a see a voltage of ~ 3 V between PTB2 and GND. 

Looking at document number: KL03P24M48SF0 it is not clear to me what I need to change to make this voltage 1.2 V. 

Do you have any tips? 

0 项奖励
回复
2,156 次查看
jingpan
NXP TechSupport
NXP TechSupport

Hi,

I use MCUxpresso IDE and KL03 SDK2.3.1.  It only need several step to enable VREF_OUT.

   PORT_SetPinMux(PORTB, 2U, kPORT_PinDisabledOrAnalog);
   VREF_GetDefaultConfig(&vrefConfigStruct);
   VREF_Init(VREF, &vrefConfigStruct);

 

Regards,

Jing

0 项奖励
回复