wip:
This commit is contained in:
		@@ -1,62 +1,76 @@
 | 
				
			|||||||
#pragma once
 | 
					#pragma once
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// #include "FreeRTOS.h"
 | 
					#include "stdio.h"
 | 
				
			||||||
// #include "semphr.h"
 | 
					 | 
				
			||||||
#include "avr_err.h"
 | 
					#include "avr_err.h"
 | 
				
			||||||
 | 
					#include "avr_port.h"
 | 
				
			||||||
#include "stdbool.h"
 | 
					#include "stdbool.h"
 | 
				
			||||||
#include "avr/interrupt.h"
 | 
					#include "avr/interrupt.h"
 | 
				
			||||||
#include "avr/pgmspace.h"
 | 
					// #include "avr/pgmspace.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define ZH_AVR_AC_DIMMER_INIT_CONFIG_DEFAULT() \
 | 
					#define ZH_AVR_AC_DIMMER_INIT_CONFIG_DEFAULT() \
 | 
				
			||||||
    {                                          \
 | 
					    {                                          \
 | 
				
			||||||
        .task_priority = configMAX_PRIORITIES, \
 | 
					        .ac_dimmer_frequency = ZH_50HZ,        \
 | 
				
			||||||
        .stack_size = 124,                     \
 | 
					        .zero_cross_gpio = 0xFF,               \
 | 
				
			||||||
        .queue_size = 1,                       \
 | 
					        .zero_cross_port = 0,                  \
 | 
				
			||||||
        .a_gpio_number = 0,                    \
 | 
					        .triac_gpio = 0xFF,                    \
 | 
				
			||||||
        .b_gpio_number = 0,                    \
 | 
					        .triac_port = 0}
 | 
				
			||||||
        .pullup = false,                       \
 | 
					 | 
				
			||||||
        .encoder_min_value = -100,             \
 | 
					 | 
				
			||||||
        .encoder_max_value = 100,              \
 | 
					 | 
				
			||||||
        .encoder_step = 1,                     \
 | 
					 | 
				
			||||||
        .encoder_number = 0}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef __cplusplus
 | 
					#ifdef __cplusplus
 | 
				
			||||||
extern "C"
 | 
					extern "C"
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    typedef enum
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					        ZH_50HZ = 1,
 | 
				
			||||||
 | 
					        ZH_60HZ,
 | 
				
			||||||
 | 
					        ZH_400HZ
 | 
				
			||||||
 | 
					    } zh_avr_ac_dimmer_frequency_t;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    typedef struct // Structure for initial initialization of AC dimmer.
 | 
					    typedef struct // Structure for initial initialization of AC dimmer.
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        uint8_t task_priority;  // Task priority for the PCF8574 expander isr processing. @note It is not recommended to set a value less than configMAX_PRIORITIES.
 | 
					        uint8_t ac_dimmer_frequency; // AC frequency.
 | 
				
			||||||
        uint8_t stack_size;     // Stack size for task for the PCF8574 expander isr processing processing. @note The minimum size is 124 byte.
 | 
					        uint8_t zero_cross_gpio;     // Zero cross GPIO.
 | 
				
			||||||
        uint8_t i2c_address;    // Expander I2C address.
 | 
					        uint8_t zero_cross_port;     // Zero cross port.
 | 
				
			||||||
        bool p0_gpio_work_mode; // Expander GPIO PO work mode. True for input, false for output.
 | 
					        uint8_t triac_gpio;          // Triac GPIO.
 | 
				
			||||||
        bool p1_gpio_work_mode; // Expander GPIO P1 work mode. True for input, false for output.
 | 
					        uint8_t triac_port;          // Triac port.
 | 
				
			||||||
        bool p2_gpio_work_mode; // Expander GPIO P2 work mode. True for input, false for output.
 | 
					    } zh_avr_ac_dimmer_init_config_t;
 | 
				
			||||||
        bool p3_gpio_work_mode; // Expander GPIO P3 work mode. True for input, false for output.
 | 
					 | 
				
			||||||
        bool p4_gpio_work_mode; // Expander GPIO P4 work mode. True for input, false for output.
 | 
					 | 
				
			||||||
        bool p5_gpio_work_mode; // Expander GPIO P5 work mode. True for input, false for output.
 | 
					 | 
				
			||||||
        bool p6_gpio_work_mode; // Expander GPIO P6 work mode. True for input, false for output.
 | 
					 | 
				
			||||||
        bool p7_gpio_work_mode; // Expander GPIO P7 work mode. True for input, false for output.
 | 
					 | 
				
			||||||
        uint8_t interrupt_gpio; // Interrupt GPIO. @attention Must be same for all PCF8574 expanders.
 | 
					 | 
				
			||||||
        uint8_t interrupt_port; // Interrupt port.
 | 
					 | 
				
			||||||
    } zh_avr_pcf8574_init_config_t;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * @brief Initialize PCF8574 expander.
 | 
					     * @brief Initialize AC dimmer.
 | 
				
			||||||
     *
 | 
					     *
 | 
				
			||||||
     * @param[in] config Pointer to PCF8574 initialized configuration structure. Can point to a temporary variable.
 | 
					     * @param[in] config Pointer to AC dimmer initialized configuration structure. Can point to a temporary variable.
 | 
				
			||||||
     * @param[out] handle Pointer to unique PCF8574 handle.
 | 
					 | 
				
			||||||
     *
 | 
					     *
 | 
				
			||||||
     * @attention I2C driver must be initialized first.
 | 
					     * @note Before initialize the expander recommend initialize zh_avr_ac_dimmer_init_config_t structure with default values.
 | 
				
			||||||
     *
 | 
					     *
 | 
				
			||||||
     * @note Before initialize the expander recommend initialize zh_avr_pcf8574_init_config_t structure with default values.
 | 
					     * @code zh_avr_ac_dimmer_init_config_t config = ZH_AVR_AC_DIMMER_INIT_CONFIG_DEFAULT @endcode
 | 
				
			||||||
     *
 | 
					 | 
				
			||||||
     * @code zh_avr_pcf8574_init_config_t config = ZH_AVR_PCF8574_INIT_CONFIG_DEFAULT() @endcode
 | 
					 | 
				
			||||||
     *
 | 
					     *
 | 
				
			||||||
     * @return AVR_OK if success or an error code otherwise.
 | 
					     * @return AVR_OK if success or an error code otherwise.
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    avr_err_t zh_avr_pcf8574_init(const zh_avr_pcf8574_init_config_t *config, zh_avr_pcf8574_handle_t *handle);
 | 
					    avr_err_t zh_avr_ac_dimmer_init(const zh_avr_ac_dimmer_init_config_t *config);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /**
 | 
				
			||||||
 | 
					     * @brief Start AC dimmer.
 | 
				
			||||||
 | 
					     *
 | 
				
			||||||
 | 
					     * @return AVR_OK if success or an error code otherwise.
 | 
				
			||||||
 | 
					     */
 | 
				
			||||||
 | 
					    avr_err_t zh_avr_ac_dimmer_start(void);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /**
 | 
				
			||||||
 | 
					     * @brief Stop AC dimmer.
 | 
				
			||||||
 | 
					     *
 | 
				
			||||||
 | 
					     * @return AVR_OK if success or an error code otherwise.
 | 
				
			||||||
 | 
					     */
 | 
				
			||||||
 | 
					    avr_err_t zh_avr_ac_dimmer_stop(void);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /**
 | 
				
			||||||
 | 
					     * @brief Set AC dimmer dimming value.
 | 
				
			||||||
 | 
					     *
 | 
				
			||||||
 | 
					     * @param[in] value Dimming value (0 to 100).
 | 
				
			||||||
 | 
					     *
 | 
				
			||||||
 | 
					     * @return AVR_OK if success or an error code otherwise.
 | 
				
			||||||
 | 
					     */
 | 
				
			||||||
 | 
					    avr_err_t zh_avr_ac_dimmer_set(uint8_t value);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef __cplusplus
 | 
					#ifdef __cplusplus
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										
											BIN
										
									
								
								triac_400hz_delay — копия.xlsx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								triac_400hz_delay — копия.xlsx
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -1,12 +1,88 @@
 | 
				
			|||||||
#include "zh_avr_ac_dimmer.h"
 | 
					#include "zh_avr_ac_dimmer.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const static uint8_t _triac_400hz_delay[100] PROGMEM = {0, 155, 153, 152, 150, 148, 147, 145, 144, 142,
 | 
					volatile static bool _is_dimmer_work = false;
 | 
				
			||||||
                                                        141, 139, 137, 136, 134, 133, 131, 130, 128, 127,
 | 
					volatile static uint8_t _dimmer_value = 0;
 | 
				
			||||||
                                                        125, 123, 122, 120, 119, 117, 116, 114, 112, 111,
 | 
					static bool _is_initialized = false;
 | 
				
			||||||
                                                        109, 108, 106, 105, 103, 102, 100, 98, 97, 95,
 | 
					
 | 
				
			||||||
                                                        94, 92, 91, 89, 87, 86, 84, 83, 81, 80,
 | 
					static avr_err_t _zh_avr_ac_dimmer_validate_config(const zh_avr_ac_dimmer_init_config_t *config);
 | 
				
			||||||
                                                        78, 77, 75, 73, 72, 70, 69, 67, 66, 64,
 | 
					
 | 
				
			||||||
                                                        62, 61, 59, 58, 56, 55, 53, 52, 50, 48,
 | 
					static avr_err_t zh_avr_ac_dimmer_init(const zh_avr_ac_dimmer_init_config_t *config)
 | 
				
			||||||
                                                        47, 45, 44, 42, 41, 39, 37, 36, 34, 33,
 | 
					{
 | 
				
			||||||
                                                        31, 30, 28, 27, 25, 23, 22, 20, 19, 17,
 | 
					    ZH_ERROR_CHECK(_is_initialized == false, AVR_ERR_INVALID_STATE);
 | 
				
			||||||
                                                        16, 14, 12, 11, 9, 8, 6, 5, 3, 2};
 | 
					    avr_err_t err = _zh_avr_pcf8574_validate_config(config);
 | 
				
			||||||
 | 
					    ZH_ERROR_CHECK(err == AVR_OK, err);
 | 
				
			||||||
 | 
					    switch (config->zero_cross_port)
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					    case AVR_PORTB:
 | 
				
			||||||
 | 
					        DDRB &= ~(1 << config->zero_cross_gpio);
 | 
				
			||||||
 | 
					        PORTB |= (1 << config->zero_cross_gpio);
 | 
				
			||||||
 | 
					        PCICR |= (1 << PCIE0);
 | 
				
			||||||
 | 
					        PCMSK0 |= (1 << config->zero_cross_gpio);
 | 
				
			||||||
 | 
					        break;
 | 
				
			||||||
 | 
					    case AVR_PORTC:
 | 
				
			||||||
 | 
					        DDRC &= ~(1 << config->zero_cross_gpio);
 | 
				
			||||||
 | 
					        PORTC |= (1 << config->zero_cross_gpio);
 | 
				
			||||||
 | 
					        PCICR |= (1 << PCIE1);
 | 
				
			||||||
 | 
					        PCMSK1 |= (1 << config->zero_cross_gpio);
 | 
				
			||||||
 | 
					        break;
 | 
				
			||||||
 | 
					    case AVR_PORTD:
 | 
				
			||||||
 | 
					        DDRD &= ~(1 << config->zero_cross_gpio);
 | 
				
			||||||
 | 
					        PORTD |= (1 << config->zero_cross_gpio);
 | 
				
			||||||
 | 
					        PCICR |= (1 << PCIE2);
 | 
				
			||||||
 | 
					        PCMSK2 |= (1 << config->zero_cross_gpio);
 | 
				
			||||||
 | 
					        break;
 | 
				
			||||||
 | 
					    default:
 | 
				
			||||||
 | 
					        break;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    switch (config->triac_port)
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					    case AVR_PORTB:
 | 
				
			||||||
 | 
					        DDRB |= (1 << config->triac_gpio);
 | 
				
			||||||
 | 
					        PORTB &= ~(1 << config->triac_gpio);
 | 
				
			||||||
 | 
					        break;
 | 
				
			||||||
 | 
					    case AVR_PORTC:
 | 
				
			||||||
 | 
					        DDRC |= (1 << config->triac_gpio);
 | 
				
			||||||
 | 
					        PORTC &= ~(1 << config->triac_gpio);
 | 
				
			||||||
 | 
					        break;
 | 
				
			||||||
 | 
					    case AVR_PORTD:
 | 
				
			||||||
 | 
					        DDRD |= (1 << config->triac_gpio);
 | 
				
			||||||
 | 
					        PORTD &= ~(1 << config->triac_gpio);
 | 
				
			||||||
 | 
					        break;
 | 
				
			||||||
 | 
					    default:
 | 
				
			||||||
 | 
					        break;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    _is_initialized = true;
 | 
				
			||||||
 | 
					    return AVR_OK;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static avr_err_t zh_avr_ac_dimmer_start(void)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					    ZH_ERROR_CHECK(_is_initialized == true, AVR_ERR_NOT_FOUND);
 | 
				
			||||||
 | 
					    _is_dimmer_work = true;
 | 
				
			||||||
 | 
					    return AVR_OK;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static avr_err_t zh_avr_ac_dimmer_stop(void)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					    ZH_ERROR_CHECK(_is_initialized == true, AVR_ERR_NOT_FOUND);
 | 
				
			||||||
 | 
					    _is_dimmer_work = false;
 | 
				
			||||||
 | 
					    return AVR_OK;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static avr_err_t zh_avr_ac_dimmer_set(uint8_t value)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					    ZH_ERROR_CHECK(_dimmer_value <= 100, AVR_ERR_INVALID_ARG);
 | 
				
			||||||
 | 
					    _dimmer_value = value;
 | 
				
			||||||
 | 
					    return AVR_OK;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static avr_err_t _zh_avr_ac_dimmer_validate_config(const zh_avr_ac_dimmer_init_config_t *config)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					    ZH_ERROR_CHECK(config != NULL, AVR_ERR_INVALID_ARG);
 | 
				
			||||||
 | 
					    ZH_ERROR_CHECK((config->zero_cross_gpio >= 0 && config->zero_cross_gpio <= 7), AVR_ERR_INVALID_ARG);
 | 
				
			||||||
 | 
					    ZH_ERROR_CHECK((config->triac_gpio >= 0 && config->triac_gpio <= 7), AVR_ERR_INVALID_ARG);
 | 
				
			||||||
 | 
					    ZH_ERROR_CHECK(config->zero_cross_port >= AVR_PORTB && config->zero_cross_port <= AVR_PORTD, AVR_ERR_INVALID_ARG);
 | 
				
			||||||
 | 
					    ZH_ERROR_CHECK(config->triac_port >= AVR_PORTB && config->triac_port <= AVR_PORTD, AVR_ERR_INVALID_ARG);
 | 
				
			||||||
 | 
					    ZH_ERROR_CHECK(config->ac_dimmer_frequency >= ZH_50HZ && config->ac_dimmer_frequency <= ZH_400HZ, AVR_ERR_INVALID_ARG);
 | 
				
			||||||
 | 
					    return AVR_OK;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
		Reference in New Issue
	
	Block a user