Digital Power Starter Kit 3 Firmware
dsPIC33C Buck Converter Voltage Mode Control Example
app_power_config.c
1 /*
2  * File: app_power_config.c
3  * Author: M91406
4  *
5  * Created on January 13, 2021, 12:18 PM
6  */
7 
8 
9 #include <xc.h> // include processor files - each processor file is guarded.
10 #include <stdint.h> // include standard integer data types
11 #include <stdbool.h> // include standard boolean data types
12 #include <stddef.h> // include standard definition data types
13 
14 #include "config/hal.h" // include hardware abstraction layer declarations
15 #include "app_power_control.h"
16 
17 #include "devices/dev_buck_converter.h"
18 #include "drivers/v_loop.h"
19 
20 
33 {
34  volatile uint16_t retval = 1;
35 
36  // Initialize Buck Converter Object Status
37  buck.status.bits.ready = false; // Clear READY flag
38  buck.status.bits.adc_active = false; // Clear ADC STARTED flag
39  buck.status.bits.pwm_active = false; // clear PWM STARTED flag
40  buck.status.bits.fault_active = true; // Set global FAULT flag
41 
42  buck.status.bits.cs_calib_enable = BUCK_ISNS_OFFSET_CALIBRATION_ENABLE; // Disable current sense feedback calibration
43  buck.status.bits.async_mode = false; // Start up converter in synchronous mode
44  buck.status.bits.autorun = true; // Allow the buck converter to start automatically when cleared of faults
45  buck.status.bits.enabled = false; // Disable buck converter
46 
47  // Set Initial State Machine State
48  buck.state_id.value = BUCK_OPSTATE_INITIALIZE; // Reset Buck State Machine
49 
50  // Set Reference values
51  buck.set_values.control_mode = BUCK_CONTROL_MODE_VMC; // Set Control Mode
52  buck.set_values.no_of_phases = BUCK_NO_OF_PHASES; // Set number of power train phases
53  buck.set_values.i_ref = BUCK_ISNS_REF; // Set current loop reference
54  buck.set_values.v_ref = BUCK_VOUT_REF; // Set voltage loop reference
55 
56  // Clear Runtime Data
57  buck.data.v_out = 0; // Reset output voltage value
58  buck.data.i_sns[0] = 0; // Reset output current value
59  buck.data.v_in = 0; // Reset input voltage value
60  buck.data.temp = 0; // Reset output temperature value
61 
62  // Initialize Switch Node
69  buck.sw_node[0].sync_drive = true;
81 
82  // Initialize additional GPIOs
83 
84  // ~~~ EXTERNAL ENABLE INPUT ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
85  buck.gpio.EnableInput.enabled = false; // this converter doesn't support external enable control
86  // ~~~ EXTERNAL ENABLE INPUT END ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
87 
88  // ~~~ POWER GOOD OUTPUT ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
89 
90  buck.gpio.PowerGood.enabled = true; // This converter supports an additional POWER GOOD output
91  buck.gpio.PowerGood.port = PWRGOOD_PORT; // Number of the GPIO port (0=A, 1=B, 2=C, etc.)
92  buck.gpio.PowerGood.pin = PWRGOOD_PIN; // Number of the GPIO port pin
93  buck.gpio.PowerGood.polarity = 0; // This pin is ACTIVE HIGH (only required if io_type = OUTPUT)
94  buck.gpio.PowerGood.io_type = 0; // This pin is configured as Push-Pull OUTPUT
95 
96  // ~~~ POWER GOOD OUTPUT END ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
97 
98 
99  // Initialize Feedback Channels
100 
101  // ~~~ OUTPUT VOLTAGE FEEDBACK ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
102 
103  buck.feedback.ad_vout.enabled = true; // Use this channel
104 
109 
115 
119 
121 
122  // ~~~ OUTPUT VOLTAGE FEEDBACK END ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
123 
124  // ~~~ INPUT VOLTAGE FEEDBACK ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
125 
126  buck.feedback.ad_vin.enabled = true; // Use this channel
127 
132 
138 
142 
144 
145  // ~~~ INPUT VOLTAGE FEEDBACK END ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
146 
147  // ~~~ OUTPUT CURRENT FEEDBACK ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
148 
149  buck.feedback.ad_isns[0].enabled = true; // Use this channel
150 
155 
160  buck.feedback.ad_isns[0].signed_result = false;
161 
165 
167 
168  // ~~~ OUTPUT CURRENT FEEDBACK END ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
169 
170  // ~~~ TEMPERATURE FEEDBACK ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
171 
172  buck.feedback.ad_temp.enabled = true; // Use this channel
173 
178 
184 
186 
187  // ~~~ TEMPERATURE FEEDBACK END ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
188 
189  // Initialize Startup Settings
190 
195 
199  if (buck.startup.v_ramp.ref_inc_step == 0)
202 
203  if (buck.set_values.control_mode == BUCK_CONTROL_MODE_ACMC)
204  {
209  }
210 
215 
216 
217  return(retval);
218 }
219 
220 
221 
243 volatile uint16_t appPowerSupply_ControllerInitialize(void)
244 {
245  volatile uint16_t retval = 1;
246 
247  // ~~~ VOLTAGE LOOP CONFIGURATION ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
248 
249  // Initialize Default Loop Configuration
255 
256  // Set Controller Object of Voltage Loop
262 
263  // Configure Voltage Loop Controller Object
264  buck.v_loop.ctrl_Initialize(&v_loop); // Call Initialization Routine setting histories and scaling
265 
266  // Configure controller input ports
267  buck.v_loop.controller->Ports.Source.ptrAddress = &BUCK_VOUT_ADCBUF; // Output Voltage is Common Source
268  buck.v_loop.controller->Ports.Source.Offset = buck.v_loop.feedback_offset; // Output Voltage feedback signal offset
269  buck.v_loop.controller->Ports.Source.NormScaler = BUCK_VOUT_NORM_SCALER; // Output voltage normalization factor bit-shift scaler
270  buck.v_loop.controller->Ports.Source.NormFactor = BUCK_VOUT_NORM_FACTOR; // Output voltage normalization factor fractional
271 
272  buck.v_loop.controller->Ports.AltSource.ptrAddress = &BUCK_VIN_ADCBUF; // Input Voltage Is Alternate Source
273  buck.v_loop.controller->Ports.AltSource.Offset = BUCK_VIN_OFFSET; // Input Voltage feedback signal offset
274  buck.v_loop.controller->Ports.AltSource.NormScaler = BUCK_VIN_NORM_SCALER; // Input voltage normalization factor bit-shift scaler
275  buck.v_loop.controller->Ports.AltSource.NormFactor = BUCK_VIN_NORM_FACTOR; // Input voltage normalization factor fractional
276 
277  // Configure controller output ports
278  buck.v_loop.controller->Ports.Target.ptrAddress = &BUCK_PWM_PDC; // PWM Duty Cycle is Control Target
279  buck.v_loop.controller->Ports.Target.Offset = 0; // Static primary output value offset
280  buck.v_loop.controller->Ports.Target.NormScaler = 0; // Primary control output normalization factor bit-shift scaler
281  buck.v_loop.controller->Ports.Target.NormFactor = 0x7FFF; // Primary control output normalization factor fractional
282 
283  buck.v_loop.controller->Ports.AltTarget.ptrAddress = NULL; // No alternate target used
284  buck.v_loop.controller->Ports.AltTarget.Offset = 0; // Static secondary output value offset
285  buck.v_loop.controller->Ports.AltTarget.NormScaler = 0; // Secondary control output normalization factor bit-shift scaler
286  buck.v_loop.controller->Ports.AltTarget.NormFactor = 0x7FFF; // Secondary control output normalization factor fractional
287 
288  // Configure controller control ports
289  buck.v_loop.controller->Ports.ptrControlReference = &buck.v_loop.reference; // Set pointer to Reference
290 
291  // Data Input/Output Limit Configuration
294  buck.v_loop.controller->Limits.AltMinOutput = 0; // not used
295  buck.v_loop.controller->Limits.AltMaxOutput = 0; // not used
296 
297  // ADC Trigger Control Configuration
302 
303  // Data Provider Configuration
308 
309  // User Extension Function Configuration
310  /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
311  *
312  * PowerSmart DCLD allows users to create and call user extension
313  * functions from specific locations of the main control loop to
314  * cover design-specific requirements and features which are not
315  * supported by the main controller by default.
316  *
317  * Control Loop User Extension Declaration Example:
318  *
319  * buck.v_loop.controller->ExtensionHooks.ptrExtHookStartFunction = (uint16_t)&my_function;
320  *
321  * Control Loop User Extension Parameter Declaration Example (optional):
322  *
323  * buck.v_loop.controller->ExtensionHooks.ExtHookStartFunctionParam = 512;
324  *
325  * Please refer to the PowerSmart DCLD User Guide for more details about
326  * how to use this feature, its requirements and limitations.
327  *
328  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
329  */
330 
343 
344  // Initialize Advanced Control Settings (not used in this code example)
345  buck.v_loop.controller->GainControl.AgcFactor = 0x7FFF; // Adaptive Gain Control factor fractional
346  buck.v_loop.controller->GainControl.AgcScaler = 0x0000; // Adaptive Gain Control factor bit-shift scaler
347  buck.v_loop.controller->GainControl.AgcMedian = 0x0000; // Q15 number representing normalized Nominal Operating Point
348 
349  // Custom Advanced Control Settings
350  buck.v_loop.controller->Advanced.usrParam0 = 0; // No additional advanced control options used
351  buck.v_loop.controller->Advanced.usrParam1 = 0; // No additional advanced control options used
352  buck.v_loop.controller->Advanced.usrParam2 = 0; // No additional advanced control options used
353  buck.v_loop.controller->Advanced.usrParam3 = 0; // No additional advanced control options used
354  buck.v_loop.controller->Advanced.usrParam4 = 0; // No additional advanced control options used
355  buck.v_loop.controller->Advanced.usrParam5 = 0; // No additional advanced control options used
356  buck.v_loop.controller->Advanced.usrParam6 = 0; // No additional advanced control options used
357  buck.v_loop.controller->Advanced.usrParam7 = 0; // No additional advanced control options used
358 
359  // Reset Controller Status
360  buck.v_loop.controller->status.bits.enabled = false; // Keep controller disabled
361  buck.v_loop.controller->status.bits.swap_source = false; // use SOURCE as major control input
362  buck.v_loop.controller->status.bits.swap_target = false; // use TARGET as major control output
363  buck.v_loop.controller->status.bits.invert_input = false; // Do not invert input value
364  buck.v_loop.controller->status.bits.lower_saturation_event = false; // Reset Anti-Windup Minimum Status bit
365  buck.v_loop.controller->status.bits.upper_saturation_event = false; // Reset Anti-Windup Minimum Status bits
366  buck.v_loop.controller->status.bits.agc_enabled = false; // Enable Adaptive Gain Modulation by default
367 
368  // ~~~ VOLTAGE LOOP CONFIGURATION END ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
369 
370 
371  return(retval);
372 }
373 
374 
386 {
387  volatile uint16_t retval=1;
388 
390 
391  return(retval);
392 }
393 
394 
395 // end of file
NPNZ_EXTENSION_HOOKS_s::ExtHookPreAntiWindupFunctionParam
volatile uint16_t ExtHookPreAntiWindupFunctionParam
Parameter of function called (can be a variable or a pointer to a data structure)
Definition: npnz16b.h:419
BUCK_CONVERTER_STATUS_s::async_mode
volatile bool async_mode
Bit #9: Control bit suspending the synchronous rectifier switch PWM channel.
Definition: dev_buck_typedef.h:218
BUCK_STARTUP_PERIOD_HANDLER_s::period
volatile uint16_t period
Soft-Start Period (POD, RAMP PERIOD, PGD, etc.)
Definition: dev_buck_typedef.h:266
NPNZ_ADC_TRGCTRL_s::ptrADCTriggerARegister
volatile uint16_t * ptrADCTriggerARegister
Pointer to ADC trigger #1 register (e.g. TRIG1)
Definition: npnz16b.h:356
BUCK_ADC_INPUT_SETTINGS_s::differential_input
volatile bool differential_input
input channel differential mode enable bit
Definition: dev_buck_typedef.h:435
BUCK_ADC_INPUT_SETTINGS_s::interrupt_enable
volatile bool interrupt_enable
input channel interrupt enable bit
Definition: dev_buck_typedef.h:433
NPNZ_EXTENSION_HOOKS_s::ptrExtHookStopFunction
volatile uint16_t ptrExtHookStopFunction
Pointer to Function which is called at the end of the control loop but will be bypassed when the cont...
Definition: npnz16b.h:424
NPNZ_LIMITS_s::AltMaxOutput
volatile int16_t AltMaxOutput
Alternate maximum output value used for clamping (R/W)
Definition: npnz16b.h:332
BUCK_PWM_OUTPUT_SWAP
#define BUCK_PWM_OUTPUT_SWAP
true = PWMxH is the leading PWM output, false = PWMxL is the leading PWM output
Definition: dpsk3_hwdescr.h:328
BUCK_ISNS_ADCIN
#define BUCK_ISNS_ADCIN
Analog input number (e.g. '5' for 'AN5')
Definition: dpsk3_hwdescr.h:649
v_loop
volatile struct NPNZ16b_s v_loop
External reference to user-defined NPNZ16b controller data object 'v_loop'.
Definition: v_loop.c:94
BUCK_SWITCH_NODE_SETTINGS_s::gpio_high
volatile uint16_t gpio_high
GPIO port pin-number of PWMxH of the selected PWM generator.
Definition: dev_buck_typedef.h:379
NPNZ_ADC_TRGCTRL_s::ADCTriggerBOffset
volatile uint16_t ADCTriggerBOffset
ADC trigger #2 offset to compensate propagation delays.
Definition: npnz16b.h:359
BUCK_VOUT_ADCTRIG
#define BUCK_VOUT_ADCTRIG
Register used for trigger placement.
Definition: dpsk3_hwdescr.h:512
NPNZ_STATUS_s::swap_source
volatile bool swap_source
Bit 13: when set, AltSource is used as data input to controller.
Definition: npnz16b.h:200
BUCK_SWITCH_NODE_SETTINGS_s::dead_time_rising
volatile uint16_t dead_time_rising
Dead time setting at rising edge of a half-bridge drive.
Definition: dev_buck_typedef.h:390
NPNZ_EXTENSION_HOOKS_s::ExtHookSourceFunctionParam
volatile uint16_t ExtHookSourceFunctionParam
Parameter of function called (can be a variable or a pointer to a data structure)
Definition: npnz16b.h:416
NPNZ_STATUS_s::invert_input
volatile bool invert_input
Bit 14: when set, most recent error input value to controller is inverted.
Definition: npnz16b.h:201
NPNZ_GAIN_CONTROL_s::AgcScaler
volatile uint16_t AgcScaler
Bit-shift scaler of Adaptive Gain Modulation factor.
Definition: npnz16b.h:453
PWM_CLOCK_HIGH_RESOLUTION
#define PWM_CLOCK_HIGH_RESOLUTION
Enables/disables the PWM generator high resolution mode of 250 ps versus 2 ns.
Definition: dpsk3_hwdescr.h:104
BUCK_VRAMP_PER
#define BUCK_VRAMP_PER
Definition: dpsk3_hwdescr.h:819
BUCK_PWM_PDC
#define BUCK_PWM_PDC
PWM Instance Duty Cycle Register.
Definition: dpsk3_hwdescr.h:330
BUCK_LOOP_SETTINGS_s::reference
volatile uint16_t reference
Control loop reference variable.
Definition: dev_buck_typedef.h:347
BUCK_SWITCH_NODE_SETTINGS_s::swap_outputs
volatile bool swap_outputs
Selecting if PWMxH (default) or PWMxL should be the leading PWM output.
Definition: dev_buck_typedef.h:381
BUCK_CONVERTER_s::startup
volatile struct BUCK_CONVERTER_STARTUP_s startup
BUCK startup timing settings.
Definition: dev_buck_typedef.h:504
NPNZ_EXTENSION_HOOKS_s::ExtHookTargetFunctionParam
volatile uint16_t ExtHookTargetFunctionParam
Parameter of function called (can be a variable or a pointer to a data structure)
Definition: npnz16b.h:422
BUCK_LOOP_SETTINGS_s::ctrl_Update
void(* ctrl_Update)(volatile struct NPNZ16b_s *)
Function pointer to UPDATE routine.
Definition: dev_buck_typedef.h:357
BUCK_STARTUP_PERIOD_HANDLER_s::counter
volatile uint16_t counter
Soft-Start Execution Counter (read only)
Definition: dev_buck_typedef.h:265
NPNZ_DATA_PROVIDERS_s::ptrDProvControlInputCompensated
volatile uint16_t * ptrDProvControlInputCompensated
Pointer to external data buffer of most recent, compensated control input.
Definition: npnz16b.h:384
BUCK_PWM_GPIO_PORT_PINH
#define BUCK_PWM_GPIO_PORT_PINH
Port Pin Number.
Definition: dpsk3_hwdescr.h:326
NPNZ_USER_DATA_BUFFER_s::usrParam7
volatile uint16_t usrParam7
generic 16-bit wide, user-defined parameter #8 for advanced control options
Definition: npnz16b.h:483
v_loop_Precharge
void v_loop_Precharge(volatile struct NPNZ16b_s *controller, volatile fractional ctrl_input, volatile fractional ctrl_output)
Prototype of the Assembly routine '_v_loop_Precharge' loading user-defined values into the NPNZ16b co...
TEMP_ADCCORE
#define TEMP_ADCCORE
Definition: dpsk3_hwdescr.h:1577
BUCK_CONVERTER_STARTUP_s::v_ramp
volatile struct BUCK_STARTUP_PERIOD_HANDLER_s v_ramp
Definition: dev_buck_typedef.h:284
BUCK_CONVERTER_s::feedback
volatile struct BUCK_FEEDBACK_SETTINGS_s feedback
BUCK converter feedback settings.
Definition: dev_buck_typedef.h:507
BUCK_ADC_INPUT_SCALING_s::factor
volatile int16_t factor
Fractional scaling factor (range -1 ... 0.99969)
Definition: dev_buck_typedef.h:412
BUCK_ISNS_REF
#define BUCK_ISNS_REF
Output Current Reference.
Definition: dpsk3_hwdescr.h:619
BUCK_SWITCH_NODE_SETTINGS_s::trigger_scaler
volatile uint16_t trigger_scaler
PWM triggers for ADC will be generated every n-th cycle.
Definition: dev_buck_typedef.h:393
BUCK_CONVERTER_SETTINGS_s::control_mode
enum BUCK_CONTROL_MODE_e control_mode
Fundamental control mode.
Definition: dev_buck_typedef.h:324
BUCK_CONVERTER_DATA_s::v_in
volatile uint16_t v_in
BUCK input voltage.
Definition: dev_buck_typedef.h:300
PWRGOOD_PIN
#define PWRGOOD_PIN
GPIO port pin declaration where 0=Rx0, 1=Rx1, 2=Rx3, etc.
Definition: dpsk3_hwdescr.h:229
BUCK_GPIO_INSTANCE_s::io_type
volatile uint16_t io_type
Input/Output definition (0=push-pull output, 1=input, 2=open-drain output)
Definition: dev_buck_typedef.h:476
BUCK_CONVERTER_s::status
volatile struct BUCK_CONVERTER_STATUS_s status
BUCK operation status bits.
Definition: dev_buck_typedef.h:502
NPNZ_PORT_s::Offset
volatile int16_t Offset
Value/signal offset of this port.
Definition: npnz16b.h:231
appPowerSupply_ConverterObjectInitialize
volatile uint16_t appPowerSupply_ConverterObjectInitialize(void)
This function initializes the buck converter device driver instance.
Definition: app_power_config.c:32
BUCK_VIN_OFFSET
#define BUCK_VIN_OFFSET
Input voltage feedback offset.
Definition: dpsk3_hwdescr.h:458
BUCK_ADC_INPUT_SETTINGS_s::adc_core
volatile uint8_t adc_core
number of the ADC core connected to the selected channel
Definition: dev_buck_typedef.h:431
BUCK_SWITCH_NODE_SETTINGS_s::gpio_instance
volatile uint16_t gpio_instance
GPIO instance of the selected PWM generator.
Definition: dev_buck_typedef.h:378
NPNZ_STATUS_s::lower_saturation_event
volatile bool lower_saturation_event
Bit 0: control loop is clamped at minimum output level.
Definition: npnz16b.h:186
BUCK_SWITCH_NODE_SETTINGS_s::gpio_low
volatile uint16_t gpio_low
GPIO port pin-number of PWMxL of the selected PWM generator.
Definition: dev_buck_typedef.h:380
appPowerSupply_ControllerInitialize
volatile uint16_t appPowerSupply_ControllerInitialize(void)
This function initializes the control system feedback loop objects.
Definition: app_power_config.c:243
BUCK_ADC_INPUT_SETTINGS_s::trigger_source
volatile uint8_t trigger_source
input channel trigger source
Definition: dev_buck_typedef.h:432
NPNZ16b_s::DataProviders
volatile struct NPNZ_DATA_PROVIDERS_s DataProviders
Automated data sources pushing recent data points to user-defined variables.
Definition: npnz16b.h:510
BUCK_SWITCH_NODE_SETTINGS_s::duty_ratio_min
volatile uint16_t duty_ratio_min
Absolute duty cycle minimum during normal operation.
Definition: dev_buck_typedef.h:388
BUCK_ISNS_ADCTRIG
#define BUCK_ISNS_ADCTRIG
Register used for trigger placement.
Definition: dpsk3_hwdescr.h:652
BUCK_CONVERTER_DATA_s::control_input
volatile uint16_t control_input
BUCK most recent control input value (raw input)
Definition: dev_buck_typedef.h:304
BUCK_PWM_ADTR1OFS
#define BUCK_PWM_ADTR1OFS
ADC Trigger 1 Offset: 0...31.
Definition: dpsk3_hwdescr.h:350
BUCK_CONVERTER_DATA_s::i_sns
volatile uint16_t i_sns[BUCK_MPHASE_COUNT]
BUCK output current.
Definition: dev_buck_typedef.h:298
BUCK_VIN_ADCCORE
#define BUCK_VIN_ADCCORE
0=Dedicated Core #0, 1=Dedicated Core #1, 8=Shared ADC Core
Definition: dpsk3_hwdescr.h:427
NPNZ_USER_DATA_BUFFER_s::usrParam4
volatile uint16_t usrParam4
generic 16-bit wide, user-defined parameter #5 for advanced control options
Definition: npnz16b.h:480
NPNZ_PORTS_s::Target
volatile struct NPNZ_PORT_s Target
Primary data output port declaration.
Definition: npnz16b.h:263
NPNZ16b_s::ADCTriggerControl
volatile struct NPNZ_ADC_TRGCTRL_s ADCTriggerControl
Automatic ADC trigger placement options for ADC Trigger A and B.
Definition: npnz16b.h:509
BUCK_CONVERTER_STATUS_s::fault_active
volatile bool fault_active
Bit #5: Flag bit indicating system is in enforced shut down mode (usually due to a fault condition)
Definition: dev_buck_typedef.h:213
BUCK_ISNS_FB_OFFSET
#define BUCK_ISNS_FB_OFFSET
Definition: dpsk3_hwdescr.h:620
BUCK_ADC_INPUT_SETTINGS_s::enabled
volatile bool enabled
input channel enable bit
Definition: dev_buck_typedef.h:427
PWRGOOD_PORT
#define PWRGOOD_PORT
GPIO port declaration where 0=Port RA, 0=Port RB, 0=Port RC, etc.
Definition: dpsk3_hwdescr.h:228
NPNZ_USER_DATA_BUFFER_s::usrParam1
volatile uint16_t usrParam1
generic 16-bit wide, user-defined parameter #2 for advanced control options
Definition: npnz16b.h:477
NPNZ_EXTENSION_HOOKS_s::ptrExtHookEndFunction
volatile uint16_t ptrExtHookEndFunction
Pointer to Function which is called at the end of the control loop and will also be called when the c...
Definition: npnz16b.h:427
BUCK_SWITCH_NODE_SETTINGS_s::sync_drive
volatile bool sync_drive
Selecting if switch node is driven in synchronous or asnchronous mode.
Definition: dev_buck_typedef.h:384
BUCK_STARTUP_PERIOD_HANDLER_s::reference
volatile uint16_t reference
Internal dummy reference used to increment/decrement controller reference.
Definition: dev_buck_typedef.h:267
BUCK_GPIO_INSTANCE_s::polarity
volatile uint16_t polarity
Output polarity, where 0=ACTIVE HIGH, 1=ACTIVE_LOW.
Definition: dev_buck_typedef.h:475
NPNZ_PORTS_s::AltTarget
volatile struct NPNZ_PORT_s AltTarget
Secondary data output port declaration.
Definition: npnz16b.h:264
NPNZ_ADC_TRGCTRL_s::ADCTriggerAOffset
volatile uint16_t ADCTriggerAOffset
ADC trigger #1 offset to compensate propagation delays.
Definition: npnz16b.h:357
BUCK_PWM_DEAD_TIME_LE
#define BUCK_PWM_DEAD_TIME_LE
Rising edge dead time [tick = 250ps].
Definition: dpsk3_hwdescr.h:376
BUCK_LOOP_SETTINGS_s::minimum
volatile uint16_t minimum
output clamping value (minimum)
Definition: dev_buck_typedef.h:350
NPNZ16b_s::status
volatile struct NPNZ_STATUS_s status
Control Loop Status and Control flags.
Definition: npnz16b.h:504
NPNZ_LIMITS_s::MaxOutput
volatile int16_t MaxOutput
Maximum output value used for clamping (R/W)
Definition: npnz16b.h:330
BUCK_FEEDBACK_SETTINGS_s::ad_vout
volatile struct BUCK_ADC_INPUT_SETTINGS_s ad_vout
ADC input sampling output voltage.
Definition: dev_buck_typedef.h:452
BUCK_ADC_INPUT_SETTINGS_s::adc_input
volatile uint8_t adc_input
number of the ADC input channel used
Definition: dev_buck_typedef.h:430
NPNZ_EXTENSION_HOOKS_s::ptrExtHookPreAntiWindupFunction
volatile uint16_t ptrExtHookPreAntiWindupFunction
Pointer to Function which will be called after the compensation filter computation is complete and be...
Definition: npnz16b.h:418
BUCK_CONVERTER_STARTUP_s::power_on_delay
volatile struct BUCK_STARTUP_PERIOD_HANDLER_s power_on_delay
Definition: dev_buck_typedef.h:281
BUCK_ADC_INPUT_SETTINGS_s::level_trigger
volatile bool level_trigger
input channel level trigger mode enable bit
Definition: dev_buck_typedef.h:437
drv_BuckConverter_Initialize
volatile uint16_t drv_BuckConverter_Initialize(volatile struct BUCK_CONVERTER_s *buckInstance)
This function initializes all peripheral modules and their instances used by the power controller.
Definition: dev_buck_converter.c:30
BUCK_VOUT_NORM_SCALER
#define BUCK_VOUT_NORM_SCALER
VOUT normalization bit-shift scaler
Definition: dpsk3_hwdescr.h:541
NPNZ_DATA_PROVIDERS_s::ptrDProvControlInput
volatile uint16_t * ptrDProvControlInput
Pointer to external data buffer of most recent, raw control input.
Definition: npnz16b.h:383
BUCK_SWITCH_NODE_SETTINGS_s::pwm_instance
volatile uint16_t pwm_instance
number of the PWM channel used
Definition: dev_buck_typedef.h:377
BUCK_PWM_CHANNEL
#define BUCK_PWM_CHANNEL
PWM peripheral output pins, control signals and register assignments of converter phase #1.
Definition: dpsk3_hwdescr.h:324
BUCK_PWM_DEAD_TIME_FE
#define BUCK_PWM_DEAD_TIME_FE
Falling edge dead time [tick = 250ps].
Definition: dpsk3_hwdescr.h:377
BUCK_ISNS_ADCBUF
#define BUCK_ISNS_ADCBUF
ADC input buffer of this ADC channel.
Definition: dpsk3_hwdescr.h:651
BUCK_PWM_DC_MIN
#define BUCK_PWM_DC_MIN
This sets the minimum duty cycle.
Definition: dpsk3_hwdescr.h:373
NPNZ_DATA_PROVIDERS_s::ptrDProvControlOutput
volatile uint16_t * ptrDProvControlOutput
Pointer to external data buffer of most recent control output.
Definition: npnz16b.h:386
BUCK_VOUT_ADCBUF
#define BUCK_VOUT_ADCBUF
ADC input buffer of this ADC channel.
Definition: dpsk3_hwdescr.h:511
BUCK_PWM_PERIOD
#define BUCK_PWM_PERIOD
This sets the switching period of the converter.
Definition: dpsk3_hwdescr.h:371
BUCK_VIN_TRGSRC
#define BUCK_VIN_TRGSRC
PWM1 (=PG1) Trigger 2 via PGxTRIGB.
Definition: dpsk3_hwdescr.h:431
BUCK_ISNS_ADCCORE
#define BUCK_ISNS_ADCCORE
0=Dedicated Core #0, 1=Dedicated Core #1, 2=Shared ADC Core
Definition: dpsk3_hwdescr.h:648
NPNZ_LIMITS_s::MinOutput
volatile int16_t MinOutput
Minimum output value used for clamping (R/W)
Definition: npnz16b.h:329
BUCK_STATE_ID_s::value
volatile uint32_t value
Definition: dev_buck_typedef.h:245
v_loop_Initialize
volatile uint16_t v_loop_Initialize(volatile struct NPNZ16b_s *controller)
Initializes controller coefficient arrays and normalization factors.
Definition: v_loop.c:107
BUCK_VOUT_REF
#define BUCK_VOUT_REF
Macro calculating the integer number equivalent of the output voltage reference given above in [V].
Definition: dpsk3_hwdescr.h:531
NPNZ_STATUS_s::upper_saturation_event
volatile bool upper_saturation_event
Bit 1: control loop is clamped at maximum output level.
Definition: npnz16b.h:187
BUCK_GPIO_INSTANCE_s::enabled
volatile bool enabled
Specifies, if this IO is used or not.
Definition: dev_buck_typedef.h:472
NPNZ_STATUS_s::enabled
volatile bool enabled
Bit 15: enables/disables control loop execution.
Definition: npnz16b.h:202
BUCK_CONVERTER_STATUS_s::ready
volatile bool ready
Bit #0: status bit, indicating buck converter is initialized and ready to run.
Definition: dev_buck_typedef.h:208
NPNZ16b_s::ExtensionHooks
volatile struct NPNZ_EXTENSION_HOOKS_s ExtensionHooks
User extension function triggers using function pointers with parameters.
Definition: npnz16b.h:511
TEMP_ADCIN
#define TEMP_ADCIN
Definition: dpsk3_hwdescr.h:1578
BUCK_FEEDBACK_SETTINGS_s::ad_vin
volatile struct BUCK_ADC_INPUT_SETTINGS_s ad_vin
ADC input sampling input voltage.
Definition: dev_buck_typedef.h:451
appPowerSupply_PeripheralsInitialize
volatile uint16_t appPowerSupply_PeripheralsInitialize(void)
This function is used to load peripheral configuration templates from the power controller device dri...
Definition: app_power_config.c:385
v_loop_Reset
void v_loop_Reset(volatile struct NPNZ16b_s *controller)
Prototype of the Assembly routine '_v_loop_Reset' clearing the NPNZ16b controller output and error hi...
BUCK_SWITCH_NODE_SETTINGS_s::phase
volatile uint16_t phase
Switching signal phase-shift.
Definition: dev_buck_typedef.h:386
BUCK_SWITCH_NODE_SETTINGS_s::duty_ratio_init
volatile uint16_t duty_ratio_init
Initial duty cycle when the PWM module is being turned on.
Definition: dev_buck_typedef.h:387
BUCK_NO_OF_PHASES
#define BUCK_NO_OF_PHASES
User-declaration of global defines for PWM signal generator settings.
Definition: dpsk3_hwdescr.h:299
BUCK_CONVERTER_STARTUP_s::i_ramp
volatile struct BUCK_STARTUP_PERIOD_HANDLER_s i_ramp
Definition: dev_buck_typedef.h:283
BUCK_SWITCH_NODE_SETTINGS_s::trigger_offset
volatile uint16_t trigger_offset
PWM triggers for ADC will be offset by n cycles.
Definition: dev_buck_typedef.h:394
NPNZ_EXTENSION_HOOKS_s::ptrExtHookStartFunction
volatile uint16_t ptrExtHookStartFunction
Pointer to Function which will be called at the beginning of the control loop.
Definition: npnz16b.h:412
NPNZ_PORT_s::NormScaler
volatile int16_t NormScaler
Bit-shift scaler of the Q15 normalization factor.
Definition: npnz16b.h:229
BUCK_CONVERTER_s::sw_node
volatile struct BUCK_SWITCH_NODE_SETTINGS_s sw_node[BUCK_MPHASE_COUNT]
BUCK converter switch node settings.
Definition: dev_buck_typedef.h:509
BUCK_VIN_ADCBUF
#define BUCK_VIN_ADCBUF
ADC input buffer of this ADC channel.
Definition: dpsk3_hwdescr.h:429
BUCK_PWM_GPIO_INSTANCE
#define BUCK_PWM_GPIO_INSTANCE
Number indicating device port, where 0=Port RA, 0=Port RB, 0=Port RC, etc.
Definition: dpsk3_hwdescr.h:325
BUCK_GPIO_SETTINGS_s::EnableInput
volatile struct BUCK_GPIO_INSTANCE_s EnableInput
External ENABLE input.
Definition: dev_buck_typedef.h:489
BUCK_GPIO_INSTANCE_s::port
volatile uint16_t port
GPIO port instance number (0=Port RA, 0=Port RB, 0=Port RC, etc.)
Definition: dev_buck_typedef.h:473
NPNZ_EXTENSION_HOOKS_s::ptrExtHookTargetFunction
volatile uint16_t ptrExtHookTargetFunction
Pointer to Function which will be called before the most recent control output is written to target.
Definition: npnz16b.h:421
BUCK_LOOP_SETTINGS_s::ctrl_Initialize
volatile uint16_t(* ctrl_Initialize)(volatile struct NPNZ16b_s *)
Function pointer to INIT routine.
Definition: dev_buck_typedef.h:355
BUCK_VIN_ADCIN
#define BUCK_VIN_ADCIN
Analog input number (e.g. '5' for 'AN5')
Definition: dpsk3_hwdescr.h:428
BUCK_CONVERTER_DATA_s::control_output
volatile uint16_t control_output
BUCK most recent control output value.
Definition: dev_buck_typedef.h:306
NPNZ_PORT_s::NormFactor
volatile fractional NormFactor
Q15 normalization factor.
Definition: npnz16b.h:230
BUCK_CONVERTER_s::data
volatile struct BUCK_CONVERTER_DATA_s data
BUCK runtime data.
Definition: dev_buck_typedef.h:506
BUCK_VIN_ANSEL
#define BUCK_VIN_ANSEL
GPIO analog function mode enable bit.
Definition: dpsk3_hwdescr.h:426
BUCK_LOOP_SETTINGS_s::ctrl_Reset
void(* ctrl_Reset)(volatile struct NPNZ16b_s *)
Function pointer to RESET routine.
Definition: dev_buck_typedef.h:356
BUCK_ADC_INPUT_SCALING_s::offset
volatile int16_t offset
Signal offset as signed integer to be subtracted from ADC input.
Definition: dev_buck_typedef.h:414
BUCK_CONVERTER_s::gpio
volatile struct BUCK_GPIO_SETTINGS_s gpio
BUCK converter additional GPIO specification.
Definition: dev_buck_typedef.h:510
NPNZ_PORTS_s::AltSource
volatile struct NPNZ_PORT_s AltSource
Secondary data input port declaration.
Definition: npnz16b.h:262
BUCK_LOOP_SETTINGS_s::trigger_offset
volatile uint16_t trigger_offset
ADC trigger offset value for trigger fine-tuning.
Definition: dev_buck_typedef.h:349
NPNZ_STATUS_s::swap_target
volatile bool swap_target
Bit 12: when set, AltTarget is used as data output of controller.
Definition: npnz16b.h:199
BUCK_LOOP_SETTINGS_s::maximum
volatile uint16_t maximum
output clamping value (maximum)
Definition: dev_buck_typedef.h:351
BUCK_LOOP_SETTINGS_s::ctrl_Precharge
void(* ctrl_Precharge)(volatile struct NPNZ16b_s *, volatile fractional, volatile fractional)
Function pointer to PRECHARGE routine.
Definition: dev_buck_typedef.h:358
NPNZ_EXTENSION_HOOKS_s::ExtHookStopFunctionParam
volatile uint16_t ExtHookStopFunctionParam
Parameter of function called (can be a variable or a pointer to a data structure)
Definition: npnz16b.h:425
BUCK_ISNS_OFFSET_CALIBRATION_ENABLE
#define BUCK_ISNS_OFFSET_CALIBRATION_ENABLE
Current Sense Offset Calibration is disabled.
Definition: dpsk3_hwdescr.h:585
NPNZ_USER_DATA_BUFFER_s::usrParam6
volatile uint16_t usrParam6
generic 16-bit wide, user-defined parameter #7 for advanced control options
Definition: npnz16b.h:482
BUCK_VIN_NORM_FACTOR
#define BUCK_VIN_NORM_FACTOR
VIN normalization factor scaled in Q15.
Definition: dpsk3_hwdescr.h:462
BUCK_ISNS_NORM_FACTOR
#define BUCK_ISNS_NORM_FACTOR
ISNS normalization factor scaled in Q15.
Definition: dpsk3_hwdescr.h:625
BUCK_VOUT_ANSEL
#define BUCK_VOUT_ANSEL
ADC input assignments of output voltage feedback signals.
Definition: dpsk3_hwdescr.h:508
NPNZ_EXTENSION_HOOKS_s::ExtHookStartFunctionParam
volatile uint16_t ExtHookStartFunctionParam
Parameter of function called (can be a variable or pointer to a data structure)
Definition: npnz16b.h:413
BUCK_LEB_PERIOD
#define BUCK_LEB_PERIOD
Leading Edge Blanking = n x PWM resolution (here: 50 x 2ns = 100ns)
Definition: dpsk3_hwdescr.h:375
BUCK_CONVERTER_SETTINGS_s::v_ref
volatile uint16_t v_ref
User reference setting used to control the power converter controller.
Definition: dev_buck_typedef.h:326
v_loop_Update
void v_loop_Update(volatile struct NPNZ16b_s *controller)
Prototype of the Assembly feedback control loop routine helping to call the v_loop controller from C-...
NPNZ_USER_DATA_BUFFER_s::usrParam0
volatile uint16_t usrParam0
generic 16-bit wide, user-defined parameter #1 for advanced control options
Definition: npnz16b.h:476
BUCK_CONVERTER_STATUS_s::cs_calib_enable
volatile bool cs_calib_enable
Bit #8: Flag bit indicating that current sensors need to calibrated.
Definition: dev_buck_typedef.h:217
BUCK_ADC_INPUT_SCALING_s::scaler
volatile int16_t scaler
Feedback bit-shift scaler used for number normalization.
Definition: dev_buck_typedef.h:413
BUCK_FEEDBACK_SETTINGS_s::ad_isns
volatile struct BUCK_ADC_INPUT_SETTINGS_s ad_isns[BUCK_MPHASE_COUNT]
ADC input sampling phase current.
Definition: dev_buck_typedef.h:453
BUCK_IRAMP_PER
#define BUCK_IRAMP_PER
Definition: dpsk3_hwdescr.h:821
TEMP_ANSEL
#define TEMP_ANSEL
GPIO analog function mode enable bit.
Definition: dpsk3_hwdescr.h:1576
BUCK_STARTUP_PERIOD_HANDLER_s::ref_inc_step
volatile uint16_t ref_inc_step
Size/value of one reference increment/decrement or this period.
Definition: dev_buck_typedef.h:268
BUCK_CONVERTER_s::set_values
volatile struct BUCK_CONVERTER_SETTINGS_s set_values
Control field for global access to references.
Definition: dev_buck_typedef.h:505
BUCK_GPIO_INSTANCE_s::pin
volatile uint16_t pin
GPIO port pin number.
Definition: dev_buck_typedef.h:474
BUCK_ISNS_ADC_TRGDLY
#define BUCK_ISNS_ADC_TRGDLY
Definition: dpsk3_hwdescr.h:621
NPNZ_STATUS_s::agc_enabled
volatile bool agc_enabled
Bit 11: when set, Adaptive Gain Control Modulation is enabled.
Definition: npnz16b.h:198
BUCK_GPIO_SETTINGS_s::PowerGood
volatile struct BUCK_GPIO_INSTANCE_s PowerGood
Power Good Output.
Definition: dev_buck_typedef.h:490
BUCK_CONVERTER_STATUS_s::pwm_active
volatile bool pwm_active
Bit #2: indicating that PWM has been started and ADC triggers are generated.
Definition: dev_buck_typedef.h:210
BUCK_SWITCH_NODE_SETTINGS_s::master_period_enable
volatile bool master_period_enable
Selecting MASTER or Individual period register.
Definition: dev_buck_typedef.h:382
BUCK_SWITCH_NODE_SETTINGS_s::leb_period
volatile uint16_t leb_period
Leading-Edge Blanking period.
Definition: dev_buck_typedef.h:392
NPNZ_EXTENSION_HOOKS_s::ptrExtHookSourceFunction
volatile uint16_t ptrExtHookSourceFunction
Pointer to Function which will be called after the source has been read and compensated.
Definition: npnz16b.h:415
BUCK_PWM_DC_MAX
#define BUCK_PWM_DC_MAX
This sets the maximum duty cycle.
Definition: dpsk3_hwdescr.h:374
BUCK_SWITCH_NODE_SETTINGS_s::duty_ratio_max
volatile uint16_t duty_ratio_max
Absolute duty cycle maximum during normal operation.
Definition: dev_buck_typedef.h:389
BUCK_ADC_INPUT_SETTINGS_s::early_interrupt_enable
volatile bool early_interrupt_enable
input channel early interrupt enable bit
Definition: dev_buck_typedef.h:434
BUCK_VOUT_NORM_FACTOR
#define BUCK_VOUT_NORM_FACTOR
VOUT normalization factor scaled in Q15.
Definition: dpsk3_hwdescr.h:542
NPNZ_USER_DATA_BUFFER_s::usrParam2
volatile uint16_t usrParam2
generic 16-bit wide, user-defined parameter #3 for advanced control options
Definition: npnz16b.h:478
BUCK_CONVERTER_SETTINGS_s::i_ref
volatile uint16_t i_ref
User reference setting used to control the power converter controller.
Definition: dev_buck_typedef.h:327
BUCK_PWM_PHASE_SHIFT
#define BUCK_PWM_PHASE_SHIFT
This sets the phase shift between phase #1 and #2.
Definition: dpsk3_hwdescr.h:372
NPNZ_PORTS_s::Source
volatile struct NPNZ_PORT_s Source
Primary data input port declaration.
Definition: npnz16b.h:261
BUCK_ISNS_NORM_SCALER
#define BUCK_ISNS_NORM_SCALER
ISNS normalization
Definition: dpsk3_hwdescr.h:624
TEMP_TRGSRC
#define TEMP_TRGSRC
Definition: dpsk3_hwdescr.h:1581
BUCK_LOOP_SETTINGS_s::controller
volatile struct NPNZ16b_s * controller
pointer to control loop object data structure
Definition: dev_buck_typedef.h:353
NPNZ16b_s::Limits
volatile struct NPNZ_LIMITS_s Limits
Input and output clamping values.
Definition: npnz16b.h:508
BUCK_CONVERTER_DATA_s::temp
volatile uint16_t temp
BUCK board temperature.
Definition: dev_buck_typedef.h:302
BUCK_CONVERTER_STATUS_s::adc_active
volatile bool adc_active
Bit #1: indicating that ADC has been started and samples are taken.
Definition: dev_buck_typedef.h:209
NPNZ_EXTENSION_HOOKS_s::ExtHookEndFunctionParam
volatile uint16_t ExtHookEndFunctionParam
Parameter of function called (can be a variable or a pointer to a data structure)
Definition: npnz16b.h:428
BUCK_VOUT_ADCCORE
#define BUCK_VOUT_ADCCORE
0=Dedicated Core #0, 1=Dedicated Core #1, 8=Shared ADC Core
Definition: dpsk3_hwdescr.h:509
BUCK_CONVERTER_s::state_id
volatile struct BUCK_STATE_ID_s state_id
BUCK state machine operating state ID.
Definition: dev_buck_typedef.h:503
BUCK_SWITCH_NODE_SETTINGS_s::dead_time_falling
volatile uint16_t dead_time_falling
Dead time setting at falling edge of a half-bridge drive.
Definition: dev_buck_typedef.h:391
BUCK_CONVERTER_STARTUP_s::power_good_delay
volatile struct BUCK_STARTUP_PERIOD_HANDLER_s power_good_delay
Definition: dev_buck_typedef.h:282
BUCK_FEEDBACK_SETTINGS_s::ad_temp
volatile struct BUCK_ADC_INPUT_SETTINGS_s ad_temp
ADC input sampling temperature.
Definition: dev_buck_typedef.h:454
NPNZ_DATA_PROVIDERS_s::ptrDProvControlError
volatile uint16_t * ptrDProvControlError
Pointer to external data buffer of most recent control error.
Definition: npnz16b.h:385
NPNZ_GAIN_CONTROL_s::AgcFactor
volatile fractional AgcFactor
Q15 value of Adaptive Gain Modulation factor.
Definition: npnz16b.h:454
BUCK_PWM_ADTR1PS
#define BUCK_PWM_ADTR1PS
ADC Trigger 1 Postscaler: 0...31.
Definition: dpsk3_hwdescr.h:351
NPNZ_ADC_TRGCTRL_s::ptrADCTriggerBRegister
volatile uint16_t * ptrADCTriggerBRegister
Pointer to ADC trigger #2 register (e.g. TRIG2)
Definition: npnz16b.h:358
BUCK_CONVERTER_s::v_loop
volatile struct BUCK_LOOP_SETTINGS_s v_loop
BUCK voltage control loop object.
Definition: dev_buck_typedef.h:512
BUCK_VOUT_OFFSET
#define BUCK_VOUT_OFFSET
Macro calculating the integer number equivalent of the physical, static signal offset of this feedbac...
Definition: dpsk3_hwdescr.h:537
BUCK_VREF_STEP
#define BUCK_VREF_STEP
Definition: dpsk3_hwdescr.h:820
BUCK_PWM_GPIO_PORT_PINL
#define BUCK_PWM_GPIO_PORT_PINL
Port Pin Number.
Definition: dpsk3_hwdescr.h:327
BUCK_CONVERTER_DATA_s::control_error
volatile uint16_t control_error
BUCK most recent control error value.
Definition: dev_buck_typedef.h:305
BUCK_VOUT_TRGSRC
#define BUCK_VOUT_TRGSRC
PWM1 (=PG1) Trigger 1 via PGxTRIGA.
Definition: dpsk3_hwdescr.h:513
BUCK_PGD
#define BUCK_PGD
Definition: dpsk3_hwdescr.h:823
BUCK_VIN_NORM_SCALER
#define BUCK_VIN_NORM_SCALER
VIN normalization
Definition: dpsk3_hwdescr.h:461
TEMP_ADCBUF
#define TEMP_ADCBUF
GPIO analog function mode enable bit.
Definition: dpsk3_hwdescr.h:1579
NPNZ16b_s::Ports
volatile struct NPNZ_PORTS_s Ports
Controller input and output ports.
Definition: npnz16b.h:505
BUCK_ADC_INPUT_SETTINGS_s::scaling
volatile struct BUCK_ADC_INPUT_SCALING_s scaling
normalization scaling settings
Definition: dev_buck_typedef.h:438
BUCK_ISNS_TRGSRC
#define BUCK_ISNS_TRGSRC
PWM1 (=PG1) Trigger 2 via PGxTRIGB.
Definition: dpsk3_hwdescr.h:653
BUCK_CONVERTER_SETTINGS_s::no_of_phases
volatile uint16_t no_of_phases
number of converter phases
Definition: dev_buck_typedef.h:325
NPNZ16b_s::GainControl
volatile struct NPNZ_GAIN_CONTROL_s GainControl
Parameter section for advanced control options.
Definition: npnz16b.h:507
NPNZ_USER_DATA_BUFFER_s::usrParam3
volatile uint16_t usrParam3
generic 16-bit wide, user-defined parameter #4 for advanced control options
Definition: npnz16b.h:479
BUCK_SWITCH_NODE_SETTINGS_s::period
volatile uint16_t period
Switching period.
Definition: dev_buck_typedef.h:385
BUCK_ADC_INPUT_SETTINGS_s::signed_result
volatile bool signed_result
input channel singed result mode enable bit
Definition: dev_buck_typedef.h:436
BUCK_VOUT_ADC_TRGDLY
#define BUCK_VOUT_ADC_TRGDLY
Macro calculating the integer number equivalent of the signal chain time delay between internal PWM t...
Definition: dpsk3_hwdescr.h:538
buck
volatile struct BUCK_CONVERTER_s buck
Global data object for a BUCK CONVERTER.
Definition: app_power_control.c:28
NPNZ_GAIN_CONTROL_s::AgcMedian
volatile fractional AgcMedian
Q15 value of Adaptive Gain Modulation nominal operating point.
Definition: npnz16b.h:455
BUCK_ISNS_ANSEL
#define BUCK_ISNS_ANSEL
GPIO analog function mode enable bit.
Definition: dpsk3_hwdescr.h:647
NPNZ16b_s::Advanced
volatile struct NPNZ_USER_DATA_BUFFER_s Advanced
Parameter section for advanced user control options.
Definition: npnz16b.h:512
NPNZ_LIMITS_s::AltMinOutput
volatile int16_t AltMinOutput
Alternate minimum output value used for clamping (R/W)
Definition: npnz16b.h:331
BUCK_IREF_STEP
#define BUCK_IREF_STEP
Definition: dpsk3_hwdescr.h:822
BUCK_LOOP_SETTINGS_s::feedback_offset
volatile uint16_t feedback_offset
Feedback offset value for calibration or bi-direction feedback signals.
Definition: dev_buck_typedef.h:348
NPNZ_PORT_s::ptrAddress
volatile uint16_t * ptrAddress
Pointer to register or variable where the value is read from (e.g. ADCBUFx) or written to (e....
Definition: npnz16b.h:228
BUCK_SWITCH_NODE_SETTINGS_s::high_resolution_enable
volatile bool high_resolution_enable
Selecting if PWM module should use high-resolution mode.
Definition: dev_buck_typedef.h:383
BUCK_POD
#define BUCK_POD
Conversion Macros of Startup Timing Settings.
Definition: dpsk3_hwdescr.h:818
BUCK_CONVERTER_STATUS_s::enabled
volatile bool enabled
Bit #15: Control bit enabling/disabling the charger port.
Definition: dev_buck_typedef.h:224
BUCK_CONVERTER_DATA_s::v_out
volatile uint16_t v_out
BUCK output voltage.
Definition: dev_buck_typedef.h:301
NPNZ_USER_DATA_BUFFER_s::usrParam5
volatile uint16_t usrParam5
generic 16-bit wide, user-defined parameter #6 for advanced control options
Definition: npnz16b.h:481
BUCK_VOUT_ADCIN
#define BUCK_VOUT_ADCIN
Analog input number (e.g. '5' for 'AN5')
Definition: dpsk3_hwdescr.h:510
BUCK_CONVERTER_STATUS_s::autorun
volatile bool autorun
Bit #14: Control bit determining if charger is starting automatically or on command (using the GO bit...
Definition: dev_buck_typedef.h:223
BUCK_ADC_INPUT_SETTINGS_s::adc_buffer
volatile uint16_t * adc_buffer
pointer to ADC result buffer
Definition: dev_buck_typedef.h:428
NPNZ_PORTS_s::ptrControlReference
volatile uint16_t * ptrControlReference
Pointer to global variable of input register holding the controller reference value (e....
Definition: npnz16b.h:265