Searched refs:init_data_store_length (Results 1 – 2 of 2) sorted by relevance
/hal_espressif-3.6.0/components/esp_phy/src/ |
D | phy_init.c | 368 size_t init_data_store_length = sizeof(phy_init_magic_pre) + in esp_phy_get_init_data() local 370 uint8_t* init_data_store = (uint8_t*) k_malloc(init_data_store_length); in esp_phy_get_init_data() 375 memcpy(init_data_store, multi_phy_init_data_bin_start, init_data_store_length); in esp_phy_get_init_data() 385 size_t init_data_store_length = sizeof(phy_init_magic_pre) + in esp_phy_get_init_data() local 387 uint8_t* init_data_store = (uint8_t*) malloc(init_data_store_length); in esp_phy_get_init_data() 393 err = esp_partition_read(partition, 0, init_data_store, init_data_store_length); in esp_phy_get_init_data() 402 memcmp(init_data_store + init_data_store_length - sizeof(phy_init_magic_post), in esp_phy_get_init_data() 419 assert(memcmp(init_data_store + init_data_store_length - sizeof(phy_init_magic_post), in esp_phy_get_init_data() 423 err = esp_partition_write(partition, 0, init_data_store, init_data_store_length); in esp_phy_get_init_data() 778 size_t init_data_store_length, in phy_get_multiple_init_data() argument [all …]
|
/hal_espressif-3.6.0/components/esp_wifi/src/ |
D | phy_init.c | 372 size_t init_data_store_length = sizeof(phy_init_magic_pre) + in esp_phy_get_init_data() local 374 uint8_t *init_data_store = (uint8_t *)malloc(init_data_store_length); in esp_phy_get_init_data() 380 esp_err_t err = esp_partition_read(partition, 0, init_data_store, init_data_store_length); in esp_phy_get_init_data() 387 memcmp(init_data_store + init_data_store_length - sizeof(phy_init_magic_post), in esp_phy_get_init_data() 774 size_t init_data_store_length, in phy_get_multiple_init_data() argument 784 …esp_err_t err = esp_partition_read(partition, init_data_store_length, init_data_control_info, size… in phy_get_multiple_init_data() 818 err = esp_partition_read(partition, init_data_store_length + sizeof(phy_control_info_data_t), in phy_get_multiple_init_data() 873 size_t init_data_store_length = sizeof(phy_init_magic_pre) + in esp_phy_update_init_data() local 875 uint8_t *init_data_store = (uint8_t *)malloc(init_data_store_length); in esp_phy_update_init_data() 882 esp_err_t err = esp_partition_read(partition, 0, init_data_store, init_data_store_length); in esp_phy_update_init_data() [all …]
|