浏览代码

add analogWriteResolution()

teensy4-core
PaulStoffregen 6 年前
父节点
当前提交
efc41ea92d
共有 1 个文件被更改,包括 9 次插入1 次删除
  1. +9
    -1
      teensy4/pwm.c

+ 9
- 1
teensy4/pwm.c 查看文件

@@ -296,7 +296,15 @@ void xbar_connect(unsigned int input, unsigned int output)

uint32_t analogWriteRes(uint32_t bits)
{
return 0;
uint32_t prior;
if (bits < 1) {
bits = 1;
} else if (bits > 16) {
bits = 16;
}
prior = analog_write_res;
analog_write_res = bits;
return prior;
}



正在加载...
取消
保存