0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

STM32 PWM TIMx_BDTRのDTGビットの設定方法

Posted at

初めて投稿します
STM32 ビギナーです。PWMでデッドタイムを設定するにあたり、TIMx_BDTRレジスタを設定しますが、このレジスタのDTGビットの設定についてわかりずらかったので確認してみました。
DTG[7:5」はプリスケーラーの選択になります。
例として 8MHzクロック tdts=1/8MHz=125ns 75μsのデッドタイムを設定したい場合の例
75000ns=(32+DTG[4:0])×16×125ns
32+DTG[4:0]=37.5
DTG[4:0]=37.5-32
DTG「4:0」=5.5 より6として DTG[7:5」=111がプリスケーラ16相当につき
DTG[7:0]=11100110を設定するようです。

レベルの低い投稿でした。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?