DFU used functions config definition. More...
#include <gr55xx_dfu.h>
Public Attributes | |
void(* | dfu_ble_send_data )(uint8_t *p_data, uint16_t length) |
void(* | dfu_uart_send_data )(uint8_t *p_data, uint16_t length) |
uint32_t(* | dfu_flash_read )(const uint32_t addr, uint8_t *p_buf, const uint32_t size) |
uint32_t(* | dfu_flash_write )(const uint32_t addr, const uint8_t *p_buf, const uint32_t size) |
bool(* | dfu_flash_erase )(const uint32_t addr, const uint32_t size) |
bool(* | dfu_flash_erase_chip )(void) |
void(* | dfu_flash_set_security )(bool enable) |
bool(* | dfu_flash_get_security )(void) |
void(* | dfu_flash_get_info )(uint32_t *id, uint32_t *size) |
DFU used functions config definition.
Definition at line 114 of file gr55xx_dfu.h.
void(* dfu_func_t::dfu_ble_send_data) (uint8_t *p_data, uint16_t length) |
The function is used to send data to master by BLE.
Definition at line 116 of file gr55xx_dfu.h.
bool(* dfu_func_t::dfu_flash_erase) (const uint32_t addr, const uint32_t size) |
The function is used to erase flash by address.
Definition at line 120 of file gr55xx_dfu.h.
bool(* dfu_func_t::dfu_flash_erase_chip) (void) |
The function is used to erase flash chip.
Definition at line 121 of file gr55xx_dfu.h.
void(* dfu_func_t::dfu_flash_get_info) (uint32_t *id, uint32_t *size) |
The function is used to get the flash id and size.
Definition at line 124 of file gr55xx_dfu.h.
bool(* dfu_func_t::dfu_flash_get_security) (void) |
The function is used to get the flash security mode (Enable or Disable).
Definition at line 123 of file gr55xx_dfu.h.
uint32_t(* dfu_func_t::dfu_flash_read) (const uint32_t addr, uint8_t *p_buf, const uint32_t size) |
The function is used to read data from flash.
Definition at line 118 of file gr55xx_dfu.h.
void(* dfu_func_t::dfu_flash_set_security) (bool enable) |
The function is used to set the flash security mode as Enable or Disable.
Definition at line 122 of file gr55xx_dfu.h.
uint32_t(* dfu_func_t::dfu_flash_write) (const uint32_t addr, const uint8_t *p_buf, const uint32_t size) |
The function is used to write data to flash.
Definition at line 119 of file gr55xx_dfu.h.
void(* dfu_func_t::dfu_uart_send_data) (uint8_t *p_data, uint16_t length) |
The function is used to send data to master by UART.
Definition at line 117 of file gr55xx_dfu.h.