Last active
November 17, 2019 17:36
-
-
Save anbara/c35ab3d9a1668926d84dc06283ae08f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* PWM | |
*/ | |
#define PWM_INTERFACE PWM | |
#define PWM_INTERFACE_ID ID_PWM | |
#define PWM_FREQUENCY 1000 //ここ | |
#define PWM_MAX_DUTY_CYCLE 255 | |
#define PWM_MIN_DUTY_CYCLE 0 | |
#define PWM_RESOLUTION 8 | |
/* | |
* TC | |
*/ | |
#define TC_INTERFACE TC0 | |
#define TC_INTERFACE_ID ID_TC0 | |
#define TC_FREQUENCY 1000 //ここ | |
#define TC_MAX_DUTY_CYCLE 255 | |
#define TC_MIN_DUTY_CYCLE 0 | |
#define TC_RESOLUTION 8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment