blob: 5d5b0dc5b0f8f9bff2c79d82b93df09e7ed91891 (
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
|
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>AVRPWM1Setup</title>
<style type="text/css" media="all">
@import url("scilab_code.css");
@import url("xml_code.css");
@import url("c_code.css");
@import url("style.css");
</style>
</head>
<body>
<div class="manualnavbar">
<table width="100%"><tr>
<td width="30%">
<span class="previous"><a href="AVRPWM1SetDuty.html"><< AVRPWM1SetDuty</a></span>
</td>
<td width="40%" class="center">
<span class="top"><a href="section_35ee3b19a97c75b084122c05ac0777c6.html">Scilab 2 C Converter</a></span>
</td>
<td width="30%" class="next">
<span class="next"><a href="AVRPWM2SetDuty.html">AVRPWM2SetDuty >></a></span>
</td>
</tr></table>
<hr />
</div>
<span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_35ee3b19a97c75b084122c05ac0777c6.html">Scilab 2 C Converter</a> > AVRPWM1Setup</span>
<br /><br />
<div class="refnamediv"><h1 class="refname">AVRPWM1Setup</h1>
<p class="refpurpose">Function to Setup OC1A or OC1B pin for required PWM mode</p></div>
<div class="refsection"><h3 class="title">Parameters</h3>
<dl><dt><span class="term">waveform_mode:</span>
<dd><p class="para">integer, from 0 to 2</p></dd></dt>
<dt><span class="term">output_mode:</span>
<dd><p class="para">integer, from 0 to 1 (or 2) depending on the waveform_mode</p></dd></dt>
<dt><span class="term">output_pin:</span>
<dd><p class="para">0 (for OC1A) or 1 for (OC1B)</p></dd></dt></dl></div>
<div class="refsection"><h3 class="title">Description</h3>
<p class="para">Every Micro controller has PWM pins which can generate varying voltages
from 0V-5V.This function helps to use OC1A or OC1B pin to produces required
output waveform by setting the waveform mode and otput mode.</p>
<p class="para">waveform_mode can take values-
<ul class="itemizedlist"><li><p class="para">0 -> for Phase correct PWM Mode</p></li>
<li><p class="para">1 -> for Fast PWM Mode</p></li>
<li><p class="para">2 -> for CTC Mode</p></li></ul></p>
<p class="para">output_mode can take values-
<ul class="itemizedlist">For Phase correct PWM Mode:
<li><p class="para">0 for Clear OC1A or OC1B on compare match when up-counting. Set OC1A or OC1B on compare match when down-counting.</p></li>
<li><p class="para">1 for Set OC1A or OC1B on compare match when up-counting. Clear OC1A or OC1B on compare match when down-counting.</p></li>
For Fast PWM Mode:
<li><p class="para">0 for non-inverted output i.e Clear OC1A or OC1B on compare match, set OC1A or OC1B at BOTTOM.</p></li>
<li><p class="para">1 for inverted output i.e Set OC1A or OC1B on compare match, clear OC1A or OC1B at BOTTOM.</p></li>
For CTC Mode:
<li><p class="para">0 to Clear OC1A or OC1B on compare match</p></li>
<li><p class="para">1 to Set OC1A or OC1B on compare match</p></li>
<li><p class="para">2 to toggle OC1A or OC1B on compare match</p></li></ul></p>
<p class="para">This is curretly dummy function. It provides no functionality but is required
for providing support for generating C code for AVR.</p>
<p class="para">Example
AVRPWM1Setup(2,0,0); //This function will select CTC mode and will clear OC1A or OC1B
on compare match.Also as defined the output will be produced at
0C1A pin.</p></div>
<div class="refsection"><h3 class="title">See also</h3>
<ul class="itemizedlist"><li class="member"><a href="AVRPWM1SetDuty.html" class="link">AVRPWM1SetDuty</a></li></ul></div>
<div class="refsection"><h3 class="title">Authors</h3>
<ul class="itemizedlist"><li class="member">Ashish Kamble</li></ul></div>
<br />
<div class="manualnavbar">
<table width="100%">
<tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr>
<tr>
<td width="30%">
<span class="previous"><a href="AVRPWM1SetDuty.html"><< AVRPWM1SetDuty</a></span>
</td>
<td width="40%" class="center">
<span class="top"><a href="section_35ee3b19a97c75b084122c05ac0777c6.html">Scilab 2 C Converter</a></span>
</td>
<td width="30%" class="next">
<span class="next"><a href="AVRPWM2SetDuty.html">AVRPWM2SetDuty >></a></span>
</td>
</tr></table>
<hr />
</div>
</body>
</html>
|