ESP-IDF
ota_ops_entry_::partial_bytes
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
ota_ops_entry_::partial_bytes
ota_ops_entry_::partial_bytes field
Syntax
Show:
Summary
Declaration
from
esp_ota_ops.c:43
uint8_t
partial_bytes
;
Examples
References
from
examples
Code
Location
Referrer
uint8_t
partial_bytes
;
esp_ota_ops.c:43
if
(
it
->
wrote_size
==
0
&&
it
->
partial_bytes
==
0
&&
size
>
0
&&
data_bytes
[
0
]
!=
ESP_IMAGE_HEADER_MAGIC
)
{
esp_ota_ops.c:209
esp_ota_write()
if
(
it
->
partial_bytes
!=
0
)
{
esp_ota_ops.c:219
esp_ota_write()
copy_len
=
MIN
(
16
-
it
->
partial_bytes
,
size
)
;
esp_ota_ops.c:220
esp_ota_write()
memcpy
(
it
->
partial_data
+
it
->
partial_bytes
,
data_bytes
,
copy_len
)
;
esp_ota_ops.c:221
esp_ota_write()
it
->
partial_bytes
+=
copy_len
;
esp_ota_ops.c:222
esp_ota_write()
if
(
it
->
partial_bytes
!=
16
)
{
esp_ota_ops.c:223
esp_ota_write()
it
->
partial_bytes
=
0
;
esp_ota_ops.c:231
esp_ota_write()
it
->
partial_bytes
=
size
%
16
;
esp_ota_ops.c:239
esp_ota_write()
if
(
it
->
partial_bytes
!=
0
)
{
esp_ota_ops.c:240
esp_ota_write()
size
-=
it
->
partial_bytes
;
esp_ota_ops.c:241
esp_ota_write()
memcpy
(
it
->
partial_data
,
data_bytes
+
size
,
it
->
partial_bytes
)
;
esp_ota_ops.c:242
esp_ota_write()
if
(
it
->
partial_bytes
>
0
)
{
esp_ota_ops.c:336
esp_ota_end()
it
->
partial_bytes
=
0
;
esp_ota_ops.c:344
esp_ota_end()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
ota_ops_entry_::partial_bytes
is written by 2 functions and is read by 2 functions:
esp_ota_write()
esp_ota_end()
All items filtered out
ota_ops_entry_::partial_bytes
esp_ota_write()
esp_ota_end()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out