Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: A3921_2p.cpp
- Revision:
- 3:e40b9af046b8
- Parent:
- 2:918eefae7a4e
--- a/A3921_2p.cpp Thu Jul 15 14:33:02 2021 +0000 +++ b/A3921_2p.cpp Tue Apr 05 16:56:25 2022 +0000 @@ -51,7 +51,7 @@ if(t > period)t = period; //周期を超えないように制限 else if(t < -period)t = -period;//周期を超えないように制限 - duty = int(1000.0 * (t/period));//Duty比を計算 + duty = int(1000.0f * (t/period));//Duty比を計算 if(t < 0.0f){ //マイナスだったらfalse sign = false;