ESP-IDF
TAG
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
TAG
TAG variable
Syntax
Show:
Summary
Declaration
from
esp_lcd_panel_ops.c:11
static
const
char
*
TAG
=
"lcd_panel"
;
Examples
References
from
examples
Code
Location
Referrer
static
const
char
*
TAG
=
"lcd_panel"
;
esp_lcd_panel_ops.c:11
ESP_RETURN_ON_FALSE
(
panel
,
ESP_ERR_INVALID_ARG
,
TAG
,
"invalid panel handle"
)
;
esp_lcd_panel_ops.c:15
esp_lcd_panel_reset()
ESP_RETURN_ON_FALSE
(
panel
->
reset
,
ESP_ERR_NOT_SUPPORTED
,
TAG
,
"reset is not supported by this panel"
)
;
esp_lcd_panel_ops.c:16
esp_lcd_panel_reset()
ESP_RETURN_ON_FALSE
(
panel
,
ESP_ERR_INVALID_ARG
,
TAG
,
"invalid panel handle"
)
;
esp_lcd_panel_ops.c:22
esp_lcd_panel_init()
ESP_RETURN_ON_FALSE
(
panel
,
ESP_ERR_INVALID_ARG
,
TAG
,
"invalid panel handle"
)
;
esp_lcd_panel_ops.c:28
esp_lcd_panel_del()
ESP_RETURN_ON_FALSE
(
panel
,
ESP_ERR_INVALID_ARG
,
TAG
,
"invalid panel handle"
)
;
esp_lcd_panel_ops.c:34
esp_lcd_panel_draw_bitmap()
ESP_RETURN_ON_FALSE
(
(
x_start
<
x_end
)
&&
(
y_start
<
y_end
)
,
ESP_ERR_INVALID_ARG
,
TAG
,
"start position must be smaller than end position"
)
;
esp_lcd_panel_ops.c:35
esp_lcd_panel_draw_bitmap()
ESP_RETURN_ON_FALSE
(
panel
->
draw_bitmap
,
ESP_ERR_NOT_SUPPORTED
,
TAG
,
"draw_bitmap is not supported by this panel"
)
;
esp_lcd_panel_ops.c:36
esp_lcd_panel_draw_bitmap()
ESP_RETURN_ON_FALSE
(
panel
,
ESP_ERR_INVALID_ARG
,
TAG
,
"invalid panel handle"
)
;
esp_lcd_panel_ops.c:42
esp_lcd_panel_mirror()
ESP_RETURN_ON_FALSE
(
panel
->
mirror
,
ESP_ERR_NOT_SUPPORTED
,
TAG
,
"mirror is not supported by this panel"
)
;
esp_lcd_panel_ops.c:43
esp_lcd_panel_mirror()
ESP_RETURN_ON_FALSE
(
panel
,
ESP_ERR_INVALID_ARG
,
TAG
,
"invalid panel handle"
)
;
esp_lcd_panel_ops.c:49
esp_lcd_panel_swap_xy()
ESP_RETURN_ON_FALSE
(
panel
->
swap_xy
,
ESP_ERR_NOT_SUPPORTED
,
TAG
,
"swap_xy is not supported by this panel"
)
;
esp_lcd_panel_ops.c:50
esp_lcd_panel_swap_xy()
ESP_RETURN_ON_FALSE
(
panel
,
ESP_ERR_INVALID_ARG
,
TAG
,
"invalid panel handle"
)
;
esp_lcd_panel_ops.c:56
esp_lcd_panel_set_gap()
ESP_RETURN_ON_FALSE
(
panel
->
set_gap
,
ESP_ERR_NOT_SUPPORTED
,
TAG
,
"set_gap is not supported by this panel"
)
;
esp_lcd_panel_ops.c:57
esp_lcd_panel_set_gap()
ESP_RETURN_ON_FALSE
(
panel
,
ESP_ERR_INVALID_ARG
,
TAG
,
"invalid panel handle"
)
;
esp_lcd_panel_ops.c:63
esp_lcd_panel_invert_color()
ESP_RETURN_ON_FALSE
(
panel
->
invert_color
,
ESP_ERR_NOT_SUPPORTED
,
TAG
,
"invert_color is not supported by this panel"
)
;
esp_lcd_panel_ops.c:64
esp_lcd_panel_invert_color()
ESP_RETURN_ON_FALSE
(
panel
,
ESP_ERR_INVALID_ARG
,
TAG
,
"invalid panel handle"
)
;
esp_lcd_panel_ops.c:70
esp_lcd_panel_disp_on_off()
ESP_RETURN_ON_FALSE
(
panel
->
disp_on_off
,
ESP_ERR_NOT_SUPPORTED
,
TAG
,
"disp_on_off is not supported by this panel"
)
;
esp_lcd_panel_ops.c:71
esp_lcd_panel_disp_on_off()
ESP_RETURN_ON_FALSE
(
panel
,
ESP_ERR_INVALID_ARG
,
TAG
,
"invalid panel handle"
)
;
esp_lcd_panel_ops.c:82
esp_lcd_panel_disp_sleep()
ESP_RETURN_ON_FALSE
(
panel
->
disp_sleep
,
ESP_ERR_NOT_SUPPORTED
,
TAG
,
"sleep is not supported by this panel"
)
;
esp_lcd_panel_ops.c:83
esp_lcd_panel_disp_sleep()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
TAG
is read by 10 functions:
All items filtered out
TAG
esp_lcd_panel_reset()
esp_lcd_panel_init()
esp_lcd_panel_del()
esp_lcd_panel_draw_bitmap()
esp_lcd_panel_mirror()
esp_lcd_panel_swap_xy()
esp_lcd_panel_set_gap()
esp_lcd_panel_invert_color()
esp_lcd_panel_disp_on_off()
esp_lcd_panel_disp_sleep()
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