TI中文支持网
TI专业的中文技术问题搜集分享网站

Z-Stack Lighting 1.0.2 中PWM 的亮度为何 限定不能100%?

void halTimer1SetChannelDuty (uint8 channel, uint16 promill)
{
#define MIN_PROMILL 20
uint16 count;
if (promill < MIN_PROMILL)
promill = 0;
/* Load count = ((sec/tick) x clock) / prescale */
count = (uint16)( ((uint32)(Timer1MaxCount) * promill + 500)/ 1000 );
count = ( (count >= Timer1MaxCount) ? Timer1MaxCount-1 : (count == 0 ? 1 : count) ); halTimer1SetChannelCount(channel, count);
}

count 限定 Timer1MaxCount – 1 到 1之间。

请教下!

Ann Shen:

怎么没有人回答啊,工程师们,我现在也有同样的疑问,求解答!

赞(0)
未经允许不得转载:TI中文支持网 » Z-Stack Lighting 1.0.2 中PWM 的亮度为何 限定不能100%?
分享到: 更多 (0)