ソースを参照

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;
}



読み込み中…
キャンセル
保存