Home
last modified time | relevance | path

Searched refs:area (Results 1 – 25 of 33) sorted by relevance

12

/hal_espressif-3.6.0/components/esp_lcd/test/
Dtest_lvgl_port_v7.c10 static void my_lvgl_flush(lv_disp_drv_t *drv, const lv_area_t *area, lv_color_t *color_map) in my_lvgl_flush() argument
14 int offsetx1 = area->x1; in my_lvgl_flush()
15 int offsetx2 = area->x2; in my_lvgl_flush()
16 int offsety1 = area->y1; in my_lvgl_flush()
17 int offsety2 = area->y2; in my_lvgl_flush()
36 static void my_lvgl_rounder(lv_disp_drv_t *disp_drv, lv_area_t *area) in my_lvgl_rounder() argument
38 area->y1 = (area->y1 & (~0x7)); in my_lvgl_rounder()
39 area->y2 = (area->y2 & (~0x7)) + 7; in my_lvgl_rounder()
/hal_espressif-3.6.0/examples/peripherals/lcd/lvgl/main/
Dlvgl_example_main.c59 static void example_lvgl_flush_cb(lv_disp_drv_t *drv, const lv_area_t *area, lv_color_t *color_map) in example_lvgl_flush_cb() argument
62 int offsetx1 = area->x1; in example_lvgl_flush_cb()
63 int offsetx2 = area->x2; in example_lvgl_flush_cb()
64 int offsety1 = area->y1; in example_lvgl_flush_cb()
65 int offsety2 = area->y2; in example_lvgl_flush_cb()
/hal_espressif-3.6.0/docs/en/api-reference/protocols/
Dmodbus.rst133 - Type of Modbus register area.
134 …B_PARAM_DISCRETE` - represents Input , Holding, Coil and Discrete input register area accordingly;
137 - Relative register address of the characteristic in the register area.
410 .. note:: One slave can define several area descriptors per each type of Modbus register area with …
412 Register area is defined by using the :cpp:type:`mb_register_area_descriptor_t` structure.
414 .. list-table:: Table 3 Modbus register area descriptor
421 … register relative offset for defined register area. Example: register address = 40002 ( 4x regist…
423 - Type of the Modbus register area. Refer to :cpp:type:`mb_param_type_t` for more information.
425 … - A pointer to the memory area which is used to store the register data for this area descriptor.
427 - The size of the memory area in bytes which is used to store register data.
[all …]
/hal_espressif-3.6.0/components/hal/esp32c3/include/hal/
Dmemprot_ll.h421 …t_ll_rtcfast_set_pms_area(bool r, bool w, bool x, memprot_ll_world_t world, memprot_ll_area_t area) in memprot_ll_rtcfast_set_pms_area() argument
428 switch (area) { in memprot_ll_rtcfast_set_pms_area()
442 switch (area) { in memprot_ll_rtcfast_set_pms_area()
472 …l_rtcfast_get_pms_area(bool *r, bool *w, bool *x, memprot_ll_world_t world, memprot_ll_area_t area) in memprot_ll_rtcfast_get_pms_area() argument
478 switch (area) { in memprot_ll_rtcfast_get_pms_area()
490 switch (area) { in memprot_ll_rtcfast_get_pms_area()
/hal_espressif-3.6.0/tools/test_apps/system/memprot/main/esp32c3/
Dtest_memprot_main.c192 esp_mprot_pms_area_t area; in test_mprot_get_permissions() local
196 area = low ? MEMPROT_PMS_AREA_IRAM0_2 : MEMPROT_PMS_AREA_IRAM0_3; in test_mprot_get_permissions()
199 area = low ? MEMPROT_PMS_AREA_DRAM0_0 : MEMPROT_PMS_AREA_DRAM0_1; in test_mprot_get_permissions()
202 area = low ? MEMPROT_PMS_AREA_IRAM0_RTCFAST_LO : MEMPROT_PMS_AREA_IRAM0_RTCFAST_HI; in test_mprot_get_permissions()
209 esp_err_t err = esp_mprot_get_pms_area(area, &flags); in test_mprot_get_permissions()
/hal_espressif-3.6.0/docs/en/api-guides/
Ddeep-sleep-stub.rst78area where this data will be placed can be configured via menuconfig option named ``CONFIG_{IDF_TA…
109 …nly the wake stubs area of RTC Fast memory is validated with CRC. When {IDF_TARGET_NAME} wakes up …
117 …AS_HEAP` option is enabled, all the RTC fast memory except the wake stubs area is added to the hea…
Dcore_dump.rst130 * ``COREDUMP_DRAM_ATTR`` places variable into DRAM area which will be included into dump.
131 * ``COREDUMP_RTC_ATTR`` places variable into RTC area which will be included into dump.
132 * ``COREDUMP_RTC_FAST_ATTR`` places variable into RTC_FAST area which will be included into dump.
139 2. In your project, create a global variable in DRAM area as such as:
Dthread-local-storage.rst61 Note that area for all such variables in the program will be allocated on the stack of
Dwireshark-user-guide.rst186 Click on this area to enter or modify the filters. If you enter a wrong or unfinished filter, the b…
/hal_espressif-3.6.0/components/esp_system/ld/esp32h2/
Dsections.ld.in27 * This section is required to skip rtc.text area because rtc_iram_seg and
39 * This section located in RTC FAST Memory area.
102 * This section located in RTC SLOW Memory area.
148 * This section is required to skip .iram0.text area because iram0_0_seg and
/hal_espressif-3.6.0/components/esp_system/ld/esp32s3/
Dsections.ld.in31 * This section is required to skip rtc.text area because rtc_iram_seg and
43 * This section located in RTC FAST Memory area.
106 * This section located in RTC SLOW Memory area.
183 * This section is required to skip .iram0.text area because iram0_0_seg and
/hal_espressif-3.6.0/components/esp_system/ld/esp32/
Dsections.ld.in25 This section is required to skip rtc.text area because rtc_iram_seg and
36 /* This section located in RTC FAST Memory area.
99 /* This section located in RTC SLOW Memory area.
Dmemory.ld.in55 /* IRAM for PRO cpu. Not sure if happy with this, this is MMU area... */
/hal_espressif-3.6.0/components/esp_system/ld/esp32s2/
Dsections.ld.in34 This section is required to skip rtc.text area because rtc_iram_seg and
45 /* This section located in RTC FAST Memory area.
106 /* This section located in RTC SLOW Memory area.
/hal_espressif-3.6.0/components/esp_system/ld/esp32c3/
Dsections.ld.in34 * This section located in RTC FAST Memory area.
94 * This section located in RTC SLOW Memory area.
140 * This section is required to skip .iram0.text area because iram0_0_seg and
/hal_espressif-3.6.0/.gitlab/merge_request_templates/
DMixed Template.md12 * [ ] Add label for the area this MR is part of
47 …Notes** should be listed here. Please use **past tense** and *specify the area (see maintainers pa…
/hal_espressif-3.6.0/docs/en/hw-reference/
Dchip-series-comparison.rst226 **Note** 1: Reduced chip area compared with ESP32
229 **Note** 2: Reduced chip area compared with ESP32 and ESP32-S2
/hal_espressif-3.6.0/examples/system/ipc/ipc_isr/
DREADME.md11 …- `uint32_t regs[];` that gives the callback an area to save some of the CPUs registers. Saving th…
/hal_espressif-3.6.0/examples/protocols/pppos_client/main/
DKconfig.projbuild51 string "Peer Phone Number (with area code)"
/hal_espressif-3.6.0/examples/storage/ext_flash_fatfs/
DREADME.md16 3. Register the entire area of the Flash chip as a *partition* (`esp_partition_t`). This allows oth…
/hal_espressif-3.6.0/components/bootloader/
DKconfig.projbuild362 This option reserves an area in the RTC FAST memory (access only PRO_CPU).
372 this area remains valid when rebooted, except for power loss.
384 This option reserves in RTC FAST memory the area for custom purposes.
386 in this area of memory, you can increase it. It must be a multiple of 4 bytes.
387 … This area (rtc_retain_mem_t) is reserved and has access from the bootloader and an application.
/hal_espressif-3.6.0/examples/protocols/pppos_client/
DREADME.md42 … and also you need to set the phone number correctly in `Peer Phone Number(with area code)` option.
/hal_espressif-3.6.0/docs/en/api-reference/system/
Dipc.rst100 …ters, ``void *arg`` can point to a buffer that is used as a register save area. The callback can t…
Dfreertos_additions.rst330 - The ring buffer's storage area of size ``xBufferSize``. Note that ``xBufferSize`` must be 32-bit …
350 //Allocate ring buffer data structure and storage area into external RAM
/hal_espressif-3.6.0/docs/en/api-reference/peripherals/
Dtouch_pad.rst20 …ranged in different combinations (e.g., matrix, slider), so that a larger area or more points can …

12