![]() |
RA Flexible Software Package Documentation
Release v5.8.0
|
|
Calculation process for the motor control on RA MCUs. This module implements the Motor 120-Degree Driver Interface.
The motor 120 degree driver module is used to translate phase voltage to PWM duty and output PWM, and detect phase current, voltage and main line voltage. This module should be called cyclically at included A/D conversion finish interrupt.
The motor 120 degree driver module has below features.
Configuration | Options | Default | Description |
---|---|---|---|
Parameter Checking |
| Default (BSP) | If selected code for parameter checking is included in the build. |
ADC_B Support |
| Disabled | Select ADC_B module support. |
Shared ADC support |
| Disabled | Select Shared ADC support. |
Support Motor Number | Must be greater than 1. | 1 |
Configuration | Options | Default | Description |
---|---|---|---|
General | |||
Modulation | |||
Interrupts |
Set used clock with included GPT timer.
Depend on included GPT three phase module and ADC module.
Basically no limitation exists.
This is a basic example of minimal use of the Motor 120 degree driver in an application.
Data Structures | |
struct | motor_120_driver_shared_instance_ctrl_t |
struct | motor_120_driver_modulation_t |
struct | motor_120_driver_extended_cfg_t |
Enumerations | |
enum | motor_120_driver_select_adc_instance_t |
enum | motor_120_driver_status_t |
enum | motor_120_driver_type_t |
struct motor_120_driver_shared_instance_ctrl_t |
struct motor_120_driver_modulation_t |
struct motor_120_driver_extended_cfg_t |
Extended configurations for motor 120 driver
Data Fields | ||
---|---|---|
adc_instance_t const * | p_adc_instance | ADC module instance. |
three_phase_instance_t const * | p_three_phase_instance | PWM output module instance (GPT three phase) |
motor_120_driver_type_t | motor_120_type | 120 degree control type |
adc_channel_t | iu_ad_ch | A/D channel for U phase current. |
adc_channel_t | iw_ad_ch | A/D channel for W phase current. |
adc_channel_t | vdc_ad_ch | A/D channel for main line voltage. |
adc_channel_t | vu_ad_ch | A/D channel for U phase voltage. |
adc_channel_t | vv_ad_ch | A/D channel for V phase voltage. |
adc_channel_t | vw_ad_ch | A/D channel for W phase voltage. |
uint8_t | iu_ad_unit | Used A/D unit number for U phase current. |
uint8_t | iw_ad_unit | Used A/D unit number for W phase current. |
uint8_t | vdc_ad_unit | Used A/D unit number for main line voltage. |
uint8_t | vu_ad_unit | Used A/D unit number for U phase voltage. |
uint8_t | vv_ad_unit | Used A/D unit number for V phase voltage. |
uint8_t | vw_ad_unit | Used A/D unit number for W phase voltage. |
bsp_io_port_pin_t | port_up | PWM output port UP. |
bsp_io_port_pin_t | port_un | PWM output port UN. |
bsp_io_port_pin_t | port_vp | PWM output port VP. |
bsp_io_port_pin_t | port_vn | PWM output port VN. |
bsp_io_port_pin_t | port_wp | PWM output port WP. |
bsp_io_port_pin_t | port_wn | PWM output port WN. |
uint32_t | u4_pwm_timer_freq | PWM timer frequency (MHz) |
float | u4_pwm_carrier_freq | PWM carrier frequency (kHz) [DEPRECATED]. |
float | pwm_carrier_freq | PWM carrier frequency (kHz) |
uint32_t | u4_deadtime | PWM deadtime (usec) |
float | f_current_range | A/D current measure range (max current) (A) |
float | f_vdc_range | A/D main line voltage measure range (max voltage) (V) |
float | f_ad_resolution | A/D resolution. |
float | f_ad_current_offset | A/D offset (Center value) |
float | f_ad_voltage_conversion | A/D conversion level. |
uint32_t | u4_offset_calc_count | Calculation counts for current offset. |
motor_120_driver_modulation_t | mod_param | Modulation parameter. |
motor_120_driver_select_adc_instance_t | interrupt_adc | Select which interrupt to use. |
motor_120_driver_extended_shared_cfg_t const * |
p_shared_cfg | shared extended config |
fsp_err_t RM_MOTOR_120_DRIVER_Open | ( | motor_120_driver_ctrl_t *const | p_ctrl, |
motor_120_driver_cfg_t const *const | p_cfg | ||
) |
Opens and configures the motor 120 driver module. Implements motor_120_driver_api_t::open.
Example:
FSP_SUCCESS | Motor 120 driver successfully configured. |
FSP_ERR_ASSERTION | Null pointer, or one or more configuration options is invalid. |
FSP_ERR_ALREADY_OPEN | Module is already open. This module can only be opened once. |
FSP_ERR_INVALID_ARGUMENT | Input parameter error. |
fsp_err_t RM_MOTOR_120_DRIVER_Close | ( | motor_120_driver_ctrl_t *const | p_ctrl | ) |
Disables specified motor 120 driver module. Implements motor_120_driver_api_t::close.
Example:
FSP_SUCCESS | Successfully closed. |
FSP_ERR_ASSERTION | Null pointer. |
FSP_ERR_NOT_OPEN | Module is not open. |
fsp_err_t RM_MOTOR_120_DRIVER_Run | ( | motor_120_driver_ctrl_t *const | p_ctrl | ) |
Run motor (Start motor rotation). Implements motor_120_driver_api_t::run.
Example:
FSP_SUCCESS | Successfully resetted. |
FSP_ERR_ASSERTION | Null pointer. |
FSP_ERR_NOT_OPEN | Module is not open. |
fsp_err_t RM_MOTOR_120_DRIVER_Stop | ( | motor_120_driver_ctrl_t *const | p_ctrl | ) |
Stop motor (Stop motor rotation). Implements motor_120_driver_api_t::stop.
Example:
FSP_SUCCESS | Successfully resetted. |
FSP_ERR_ASSERTION | Null pointer. |
FSP_ERR_NOT_OPEN | Module is not open. |
fsp_err_t RM_MOTOR_120_DRIVER_Reset | ( | motor_120_driver_ctrl_t *const | p_ctrl | ) |
Reset variables of motor 120 driver module. Implements motor_120_driver_api_t::reset.
Example:
FSP_SUCCESS | Successfully reset. |
FSP_ERR_ASSERTION | Null pointer. |
FSP_ERR_NOT_OPEN | Module is not open. |
fsp_err_t RM_MOTOR_120_DRIVER_PhaseVoltageSet | ( | motor_120_driver_ctrl_t *const | p_ctrl, |
float const | u_voltage, | ||
float const | v_voltage, | ||
float const | w_voltage | ||
) |
Set phase voltage data to calculate PWM duty. Implements motor_120_driver_api_t::phaseVoltageSet.
Example:
FSP_SUCCESS | Successfully data is set. |
FSP_ERR_ASSERTION | Null pointer. |
FSP_ERR_NOT_OPEN | Module is not open. |
fsp_err_t RM_MOTOR_120_DRIVER_PhasePatternSet | ( | motor_120_driver_ctrl_t *const | p_ctrl, |
motor_120_driver_phase_pattern_t const | pattern | ||
) |
Set phase voltage pattern. Implements motor_120_driver_api_t::phasePatternSet.
Example:
FSP_SUCCESS | Successfully data is set. |
FSP_ERR_ASSERTION | Null pointer. |
FSP_ERR_NOT_OPEN | Module is not open. |
fsp_err_t RM_MOTOR_120_DRIVER_CurrentGet | ( | motor_120_driver_ctrl_t *const | p_ctrl, |
motor_120_driver_current_status_t *const | p_current_status | ||
) |
Get calculated phase current, Vdc & Va_max data. Implements motor_120_driver_api_t::currentGet.
Example:
FSP_SUCCESS | Successful data get. |
FSP_ERR_ASSERTION | Null pointer. |
FSP_ERR_NOT_OPEN | Module is not open. |
FSP_ERR_INVALID_ARGUMENT | Input parameter error. |
fsp_err_t RM_MOTOR_120_DRIVER_CurrentOffsetCalc | ( | motor_120_driver_ctrl_t *const | p_ctrl | ) |
current offset detection. Implements motor_120_driver_api_t::currentOffsetCalc
Example:
FSP_SUCCESS | Successful data get. |
FSP_ERR_ASSERTION | Null pointer. |
FSP_ERR_NOT_OPEN | Module is not open. |
FSP_ERR_INVALID_ARGUMENT | Input parameter error. |
fsp_err_t RM_MOTOR_120_DRIVER_FlagCurrentOffsetGet | ( | motor_120_driver_ctrl_t *const | p_ctrl, |
motor_120_driver_flag_offset_calc_t *const | p_flag_offset | ||
) |
Get the flag of finish current offset detection. Implements motor_120_driver_api_t::flagCurrentOffsetGet.
Example:
FSP_SUCCESS | Successful data get. |
FSP_ERR_ASSERTION | Null pointer. |
FSP_ERR_NOT_OPEN | Module is not open. |
FSP_ERR_INVALID_ARGUMENT | Input parameter error. |
fsp_err_t RM_MOTOR_120_DRIVER_ParameterUpdate | ( | motor_120_driver_ctrl_t *const | p_ctrl, |
motor_120_driver_cfg_t const *const | p_cfg | ||
) |
Update the parameters of 120 driver module. Implements motor_120_driver_api_t::parameterUpdate.
Example:
FSP_SUCCESS | Successfully data was updated. |
FSP_ERR_ASSERTION | Null pointer. |
FSP_ERR_NOT_OPEN | Module is not open. |
FSP_ERR_INVALID_ARGUMENT | Input parameter error. |