MeterLogger
pwm.h
Go to the documentation of this file.
1 /*
2  * ESPRSSIF MIT License
3  *
4  * Copyright (c) 2016 <ESPRESSIF SYSTEMS (SHANGHAI) PTE LTD>
5  *
6  * Permission is hereby granted for use on ESPRESSIF SYSTEMS ESP8266 only, in which case,
7  * it is free of charge, to any person obtaining a copy of this software and associated
8  * documentation files (the "Software"), to deal in the Software without restriction, including
9  * without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the Software is furnished
11  * to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in all copies or
14  * substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
18  * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
19  * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
20  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22  *
23  */
24 
25 #ifndef __PWM_H__
26 #define __PWM_H__
27 
28 /*pwm.h: function and macro definition of PWM API , driver level */
29 /*user_light.h: user interface for light API, user level*/
30 /*user_light_adj: API for color changing and lighting effects, user level*/
31 
32 
33  /*NOTE!! : DO NOT CHANGE THIS FILE*/
34 
35  /*SUPPORT UP TO 8 PWM CHANNEL*/
36 #define PWM_CHANNEL_NUM_MAX 8
37 
38 struct pwm_param {
41  uint32 duty[PWM_CHANNEL_NUM_MAX]; //PWM_CHANNEL<=8
42 };
43 
44 
45 /* pwm_init should be called only once, for now */
46 void pwm_init(uint32 period, uint32 *duty,uint32 pwm_channel_num,uint32 (*pin_info_list)[3]);
47 void pwm_start(void);
48 
49 void pwm_set_duty(uint32 duty, uint8 channel);
50 uint32 pwm_get_duty(uint8 channel);
51 void pwm_set_period(uint32 period);
53 
55 void set_pwm_debug_en(uint8 print_en);
56 
57 #endif
58 
void pwm_set_period(uint32 period)
#define PWM_CHANNEL_NUM_MAX
Definition: pwm.h:36
uint32 duty[PWM_CHANNEL_NUM_MAX]
Definition: pwm.h:41
uint32 pwm_get_period(void)
unsigned char uint8
Definition: c_types.h:45
uint32 freq
Definition: pwm.h:40
void pwm_init(uint32 period, uint32 *duty, uint32 pwm_channel_num, uint32(*pin_info_list)[3])
unsigned int uint32
Definition: c_types.h:54
uint32 get_pwm_version(void)
void set_pwm_debug_en(uint8 print_en)
Definition: pwm.h:38
uint32 pwm_get_duty(uint8 channel)
void pwm_start(void)
void pwm_set_duty(uint32 duty, uint8 channel)
uint32 period
Definition: pwm.h:39