Home
last modified time | relevance | path

Searched refs:p_hex_buf (Results 1 – 3 of 3) sorted by relevance

/hal_rpi_pico-latest/src/rp2_common/pico_cyw43_driver/cybt_shared_bus/
Dcybt_shared_bus.c61 static cybt_result_t cybt_fw_download_prepare(uint8_t **p_write_buf, uint8_t **p_hex_buf) { in cybt_fw_download_prepare() argument
63 *p_hex_buf = NULL; in cybt_fw_download_prepare()
70 *p_hex_buf = cyw43_malloc(BTFW_MAX_STR_LEN); in cybt_fw_download_prepare()
71 if (NULL == *p_hex_buf) { in cybt_fw_download_prepare()
79 static cybt_result_t cybt_fw_download_finish(uint8_t *p_write_buf, uint8_t *p_hex_buf) { in cybt_fw_download_finish() argument
84 if (p_hex_buf) { in cybt_fw_download_finish()
85 cyw43_free(p_hex_buf); in cybt_fw_download_finish()
116 uint8_t *p_hex_buf = NULL; in cyw43_btbus_init() local
120 ret = cybt_fw_download_prepare(&p_write_buf, &p_hex_buf); in cyw43_btbus_init()
143 p_hex_buf in cyw43_btbus_init()
[all …]
Dcybt_shared_bus_driver.h68 …(const uint8_t *p_bt_firmware, uint32_t bt_firmware_len, uint8_t *p_write_buf, uint8_t *p_hex_buf);
Dcybt_shared_bus_driver.c303 uint8_t *p_hex_buf) { in cybt_fw_download() argument
313 if (NULL == p_bt_firmware || 0 == bt_firmware_len || NULL == p_write_buf || NULL == p_hex_buf) { in cybt_fw_download()
333 hfd.p_ds = p_hex_buf; in cybt_fw_download()