This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

MSP430FR5724: 低功耗程序相关问题

Part Number: MSP430FR5724
Other Parts Discussed in Thread: MSPWARE

    while(1)
    {
		if(count==3)
		{
			ADC10CTL0&=~ADC10ENC;
			TB0CTL|=TBSSEL_1+TBCLR;
			TB0CCR0=50000;
			TB0CCTL0|=CCIE;
			__bis_SR_register(LPM0_bits + GIE);
			while(count==3);
		}
		while(ADC10CTL1&ADC10BUSY);
		ADC10CTL0|=ADC10ENC+ADC10SC;
	}

这里是main函数的一部分,您好,请问一下在低功耗的情况下还能用while做相关的判断吗