summaryrefslogtreecommitdiff
path: root/tool/mbed/mbed-sdk/libraries/tests/mbed/pwm/main.cpp
blob: b7b35500982575ab8d6f3054b63ad0c74760eda9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#include "test_env.h"

/* Timer/Match Register    Pinout Options

CT16B0/MR0  p5 (P0_9)
CT16B0/MR1  p6 (P0_8)
CT16B0/MR2  p34 (P1_15)

CT16B1/MR0  p36 (P0_21)
CT16B1/MR1  p20 (P0_22) and p14 (P1_23)

CT32B0/MR0  p25 (P1_24)
CT32B0/MR1  p26 (P1_25) and USBTX (P0_19)
CT32B0/MR2  p10 (P1_26)
 */

float value = 0.75;

int main() {
#if defined(TARGET_FF_ARDUINO)
    PwmOut pwm(D9);

    pwm.period_ms(10);
    pwm.write(value);

    float result = floor(pwm.read() * 100 + 0.5) / 100; // round it to 0.xx
    printf("Initialize PWM on pin D9 with duty cycle: %.2f\n", result);

    notify_completion(result == value ? true : false);

#elif defined(TARGET_LPC1768) || defined(TARGET_LPC2368) || defined(TARGET_LPC11U24) || defined(TARGET_LPC4088)
    PwmOut pwm_p25(p25);
    PwmOut pwm_p26(p26);

    pwm_p25.write(0.75);
    pwm_p26.write(0.50);

    printf("Initialize PWM on pin 25 with duty cycle: %.2f\n", pwm_p25.read());
    printf("Initialize PWM on pin 26 with duty cycle: %.2f\n", pwm_p26.read());

#elif defined(TARGET_LPC1114)
    PwmOut pwm_dp24(dp24); // P0_1
    PwmOut pwm_dp18(dp18); // P1_9

    pwm_dp24.write(0.75);
    pwm_dp18.write(0.50);

    printf("Initialize PWM on pin 24 with duty cycle: %.2f\n", pwm_dp24.read());
    printf("Initialize PWM on pin 18 with duty cycle: %.2f\n", pwm_dp18.read());

#elif defined(TARGET_nRF51822)
    PwmOut pwm_p24(p24);
    PwmOut pwm_p25(p25);

    pwm_p24.write(0.75);
    pwm_p25.write(0.50);

    printf("Initialize PWM on pin 24 with duty cycle: %.2f\n", pwm_p24.read());
    printf("Initialize PWM on pin 25 with duty cycle: %.2f\n", pwm_p25.read());

#elif defined(TARGET_DISCO_F100RB)
    PwmOut pwm_1(PB_3);
    PwmOut pwm_2(PB_4);

    pwm_1.write(0.75);
    pwm_2.write(0.50);

    printf("Initialize PWM on pin PB_3 with duty cycle: %.2f\n", pwm_1.read());
    printf("Initialize PWM on pin PB_4 with duty cycle: %.2f\n", pwm_2.read());
#elif defined(TARGET_DISCO_F051R8)
    PwmOut pwm_1(PA_7);
    PwmOut pwm_2(PC_7);

    pwm_1.write(0.75);
    pwm_2.write(0.50);

    printf("Initialize PWM on pin PA_7 with duty cycle: %.2f\n", pwm_1.read());
    printf("Initialize PWM on pin PC_7 with duty cycle: %.2f\n", pwm_2.read());
#elif defined(TARGET_DISCO_F303VC)
    PwmOut pwm_1(PA_8);
    PwmOut pwm_2(PA_9);

    pwm_1.write(0.75);
    pwm_2.write(0.50);

    printf("Initialize PWM on pin PA_7 with duty cycle: %.2f\n", pwm_1.read());
    printf("Initialize PWM on pin PC_7 with duty cycle: %.2f\n", pwm_2.read());
#elif defined(TARGET_MAXWSNENV)
    PwmOut pwm_1(TP2);
    PwmOut pwm_2(TP4);

    pwm_1.write(0.75);
    pwm_2.write(0.50);

    printf("Initialize PWM on pin TP2 with duty cycle: %.2f\n", pwm_1.read());
    printf("Initialize PWM on pin TP4 with duty cycle: %.2f\n", pwm_2.read());
#elif defined(TARGET_DISCO_F407VG)
    PwmOut pwm_1(PD_12);
    PwmOut pwm_2(PD_13);

    pwm_1.write(value);
    pwm_2.write(0.50);
    
    float result = floor(pwm_1.read() * 100 + 0.5) / 100; // round it to 0.xx

    printf("Initialize PWM on pin PD_12 with duty cycle: %.2f\n", result);
    printf("Initialize PWM on pin PD_13 with duty cycle: %.2f\n", pwm_2.read());

    notify_completion(result == value ? true : false);
#elif defined(TARGET_DISCO_F429ZI)
    PwmOut pwm_1(PA_0);

    pwm_1.write(value);
    
    float result = floor(pwm_1.read() * 100 + 0.5) / 100; // round it to 0.xx

    printf("Initialize PWM on pin PD_12 with duty cycle: %.2f\n", result);

    notify_completion(result == value ? true : false);
#elif defined(TARGET_MTS_MDOT_F405RG)
    PwmOut pwm_1(PA_0);

    pwm_1.write(value);
    
    float result = floor(pwm_1.read() * 100 + 0.5) / 100; // round it to 0.xx

    printf("Initialize PWM on pin PD_12 with duty cycle: %.2f\n", result);

    notify_completion(result == value ? true : false);
#elif defined(TARGET_MTS_DRAGONFLY_F411RE)
    PwmOut pwm_1(PA_0);

    pwm_1.write(value);
    
    float result = floor(pwm_1.read() * 100 + 0.5) / 100; // round it to 0.xx

    printf("Initialize PWM on pin PD_12 with duty cycle: %.2f\n", result);

    notify_completion(result == value ? true : false);
#elif defined(TARGET_MTS_MDOT_F411RE)
    PwmOut pwm_1(PA_0);

    pwm_1.write(value);
    
    float result = floor(pwm_1.read() * 100 + 0.5) / 100; // round it to 0.xx

    printf("Initialize PWM on pin PD_12 with duty cycle: %.2f\n", result);

    notify_completion(result == value ? true : false);
#elif defined(TARGET_UBLOX_C029)
    PwmOut pwm_1(PA_0);

    pwm_1.write(value);
    
    float result = floor(pwm_1.read() * 100 + 0.5) / 100; // round it to 0.xx

    printf("Initialize PWM on pin PD_12 with duty cycle: %.2f\n", result);

    notify_completion(result == value ? true : false);
#elif defined(TARGET_MAX32600MBED)
    PwmOut pwm_1(P1_2);
    PwmOut pwm_2(P1_3);

    pwm_1.write(0.75);
    pwm_2.write(0.50);

    printf("Initialize PWM on pin P1.2 with duty cycle: %.2f\n", pwm_1.read());
    printf("Initialize PWM on pin P1.3 with duty cycle: %.2f\n", pwm_2.read());
#else
#error This test is not supported on this target.
#endif

    notify_completion(true);
}