Carte à clic pour pilote de pont en H
Carte à clic pour pilote de pont en H
La carte Click Board™ H-Bridge Driver est une carte complémentaire compacte qui contient un pilote de grille en pont en H, également connu sous le nom de pré-pilote en pont complet. Cette carte comprend le MC33883, un pilote de grille en pont en H avec une pompe de charge intégrée et des canaux de commande de grille indépendants côté haut et côté bas de NXP Semiconductors. Les canaux de commande de grille sont contrôlés indépendamment par quatre broches d'entrée distinctes, ce qui permet de configurer en option le dispositif comme deux pilotes de grille côté haut indépendants et deux pilotes de grille côté bas indépendants. Les sorties du pilote de grille peuvent générer et absorber des impulsions de courant de crête allant jusqu'à 1,0 A, ce qui permet de piloter des MOSFET à charge de grille importante et/ou d'utiliser des fréquences de modulation de largeur d'impulsion (PWM) élevées.
Le H-Bridge Driver Click Board™ convient aux applications de moteurs automobiles (pompes électriques), aux systèmes de stockage d'énergie (ESS), aux alimentations sans interruption (UPS) et bien plus encore.
How Does The H-Bridge Driver Click Board™ Work?
The H-Bridge Driver Click Board™ as its foundation uses the MC33883, an H-bridge gate driver (or full-bridge pre-driver) with integrated charge pump and independent high and low-side driver channels from NXP Semiconductors. Gate driver outputs can source and sink up to 1.0A peak current pulses, permitting large gate-charge MOSFETs to be driven and/or high pulse-width modulation (PWM) frequencies to be utilized. It also supports a Sleep mode of operation with its low supply current, typical of 10μA.
The VIN1 and VIN2 terminals are the power supply inputs to the device. VIN1 is used for the output high-side drivers and the charge pump, while VIN2 is used for the linear regulation. They can be connected together or with different voltage values with VIN1 up to 45V and VIN2 up to 28V. These pins also have under-voltage (UV) and overvoltage (OV) shutdown features. If one of the supply voltage drops below the under-voltage threshold or rises above the overvoltage threshold, the gate outputs are switched low to switch off the external MOSFETs. When the supply returns to a level above the UV threshold or below the OV threshold, the device resumes normal operation according to the established condition of the input pins.
The gate driver channels are independently controlled by four separate pins, routed to the RST, AN, PWM, and INT pins of the mikroBUS™ socket. Those pins allow the device to be optionally configured as two independent high side gate drivers and two independent low side gate drivers. In addition, it also has a pin used to place the device in Sleep mode. When the GEN pin, routed to the CS pin of the mikroBUS™ socket, is in a logic low state, the device is in Sleep mode; otherwise, it is fully operational.
The H-Bridge Driver Click Board™ can operate with both 3.3V and 5V logic voltage levels selected via the VCC SEL jumper. This way, it allows both 3.3V and 5V capable MCUs to use the GPIO communication lines properly. However, the Click board™ comes equipped with a library containing easy-to-use functions and an example code that can be used, as a reference, for further development.
SPECIFICATIONS
Type | Brushed |
Applications | The H-Bridge Driver Click Board™ can be used for automotive engine applications (electric pumps), energy storage systems (ESS), uninterruptible power supply (UPS), and more. |
On-board modules | MC33883 - H-bridge gate driver (or full-bridge pre-driver) with integrated charge pump and independent high and low-side driver channels from NXP Semiconductors |
Key Features | Full-bridge pre-driver, built-in high side charge pump, UVLO and OVLO features, Sleep mode, PWM up to 100kHz, and more. |
Interface | GPIO |
Compatibility | mikroBUS |
Click board size | L (57.15 x 25.4 mm) |
Input Voltage | 3.3V or 5V, External |
PINOUT DIAGRAM
This table shows how the pinout on the H-Bridge Driver Click Board™ corresponds to the pinout on the mikroBUS™ socket (the latter shown in the two middle columns).
Notes | Pin | Pin | Notes | ||||
---|---|---|---|---|---|---|---|
Input Low Side 2 | IL2 | 1 | AN | PWM | 16 | IL1 | Input Low Side 1 |
Input High Side 2 | IH2 | 2 | RST | INT | 15 | IH1 | Input High Side 1 |
Global Enable | GEN | 3 | CS | RX | 14 | NC | |
NC | 4 | SCK | TX | 13 | NC | ||
NC | 5 | MISO | SCL | 12 | NC | ||
NC | 6 | MOSI | SDA | 11 | NC | ||
Power Supply | 3.3V | 7 | 3.3V | 5V | 10 | 5V | Power Supply |
Ground | GND | 8 | GND | GND | 9 | GND | Ground |
ONBOARD SETTINGS AND INDICATORS
Label | Name | Default | Description |
---|---|---|---|
LD1 | PWR | - | Power LED Indicator |
JP1 | VCC SEL | Left | Logic Level Voltage Selection 3V3/5V: Left position 3V3, Right position 5V |
H-BRIDGE DRIVER CLICK ELECTRICAL SPECIFICATIONS
Description | Min | Typ | Max | Unit |
---|---|---|---|---|
Supply Voltage VCC | 3.3 | - | 5 | V |
Supply Voltage VIN1 | - | - | 45 | V |
Supply Voltage VIN2 | - | - | 28 | V |
Operating Temperature Range | -40 | +25 | +125 | °C |
Software Support
We provide a library for the H-Bridge Driver Click Board™ on our LibStock page, as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.
Library Description
The library covers all the necessary functions to control the H-Bridge Driver Click Board™. Users can use functions that control four separate input pins.
Key Functions
void hbridgedriver_glo_enable ( uint8_t state );
- Function is used to turn the device on or off.void hbridgedriver_in_ls_2 ( uint8_t state );
- Function is used to set the state of the 'IL2' pin.void hbridgedriver_in_ls_1 ( uint8_t state );
- Function is used to set the state of the 'IL1' pin.
Example Description
The application is composed of three sections :
- System Initialization - Initializes GPIO and LOG structures, and sets AN, RST, CS, PWM and INT pins as output and start to write log.
- Application Initialization - Initializes GPIO driver and turns the device on.
- Application Task - Demonstrates use of the H-Bridge Driver Click board™ by turning connected MOSFETs gates high or low in order to drive the motor forward, in reverse, brake or coast.
void application_task ( ) { mikrobus_logWrite( "The motor turns forward!", _LOG_LINE ); hbridgedriver_forward( ); Delay_ms( 1000 ); mikrobus_logWrite( "The motor brakes!", _LOG_LINE ); hbridgedriver_braking( ); Delay_ms( 1000 ); mikrobus_logWrite( "The motor turns in reverse", _LOG_LINE ); hbridgedriver_reverse( ); Delay_ms( 1000 ); mikrobus_logWrite( "The motor coasting", _LOG_LINE ); hbridgedriver_coasting( ); Delay_ms( 1000 ); }
The full application code, and ready to use projects can be found on our LibStock page.
Other mikroE Libraries used in the example:
UART
Additional Notes and Information
Depending on the development board you are using, you may need a USB UART click, USB UART 2 click or RS232 click to connect to your PC, for development systems with no UART to USB interface available on the board. The terminal available in all MikroElektronika compilers, or any other terminal application of your choice, can be used to read the message.
MIKROSDK
The H-Bridge Driver Click Board™ is supported with mikroSDK - MikroElektronika Software Development Kit. To ensure proper operation of mikroSDK compliant Click board™ demo applications, mikroSDK should be downloaded from the LibStock and installed for the compiler you are using.
Software Support
We provide a library for the H-Bridge Driver Click Board™ on our LibStock page, as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.
Library Description
The library covers all the necessary functions to control the H-Bridge Driver Click Board™. Users can use functions that control four separate input pins.
Key Functions
void hbridgedriver_glo_enable ( uint8_t state );
- Function is used to turn the device on or off.void hbridgedriver_in_ls_2 ( uint8_t state );
- Function is used to set the state of the 'IL2' pin.void hbridgedriver_in_ls_1 ( uint8_t state );
- Function is used to set the state of the 'IL1' pin.
Example Description
The application is composed of three sections :
- System Initialization - Initializes GPIO and LOG structures, and sets AN, RST, CS, PWM and INT pins as output and start to write log.
- Application Initialization - Initializes GPIO driver and turns the device on.
- Application Task - Demonstrates use of the H-Bridge Driver Click board™ by turning connected MOSFETs gates high or low in order to drive the motor forward, in reverse, brake or coast.
void application_task ( ) { mikrobus_logWrite( "The motor turns forward!", _LOG_LINE ); hbridgedriver_forward( ); Delay_ms( 1000 ); mikrobus_logWrite( "The motor brakes!", _LOG_LINE ); hbridgedriver_braking( ); Delay_ms( 1000 ); mikrobus_logWrite( "The motor turns in reverse", _LOG_LINE ); hbridgedriver_reverse( ); Delay_ms( 1000 ); mikrobus_logWrite( "The motor coasting", _LOG_LINE ); hbridgedriver_coasting( ); Delay_ms( 1000 ); }
The full application code, and ready to use projects can be found on our LibStock page.
Other mikroE Libraries used in the example:
UART
Additional Notes and Information
Depending on the development board you are using, you may need a USB UART click, USB UART 2 click or RS232 click to connect to your PC, for development systems with no UART to USB interface available on the board. The terminal available in all MikroElektronika compilers, or any other terminal application of your choice, can be used to read the message.
MIKROSDK
The H-Bridge Driver Click Board™ is supported with mikroSDK - MikroElektronika Software Development Kit. To ensure proper operation of mikroSDK compliant Click board™ demo applications, mikroSDK should be downloaded from the LibStock and installed for the compiler you are using.
Carte à clic pour pilote de pont en H
Frequently Asked Questions
Have a Question?
Be the first to ask a question about this.