Home
last modified time | relevance | path

Searched refs:ulp_riscv_run (Results 1 – 8 of 8) sorted by relevance

/hal_espressif-3.6.0/docs/zh_CN/api-guides/
Dulp-risc-v.rst110 …p:func:`ulp_riscv_load_binary` 函数,将 ULP 程序加载到 RTC 内存中,然后调用 :cpp:func:`ulp_riscv_run` 函数,启动 ULP-RIS…
128 一旦上述程序加载到 RTC 内存后,应用程序即可调用 :cpp:func:`ulp_riscv_run` 函数启动此程序:
132 ESP_ERROR_CHECK( ulp_riscv_run() );
134 .. doxygenfunction:: ulp_riscv_run()
139 ULP-RISC-V 协处理器由定时器启动,调用 :cpp:func:`ulp_riscv_run` 即可启动定时器。定时器为 RTC_SLOW_CLK 的 Tick 事件计数(默认情况下,Tick…
143 一旦定时器数到 ``RTC_CNTL_ULP_CP_TIMER_1_REG`` 寄存器中设置的 Tick 数,ULP 协处理器就会启动,并调用 :cpp:func:`ulp_riscv_run` 的…
/hal_espressif-3.6.0/docs/en/api-guides/
Dulp-risc-v.rst117 …c:`ulp_riscv_load_binary` function, and then start it using the :cpp:func:`ulp_riscv_run` function.
135 …oaded into RTC memory, the application can start it, calling the :cpp:func:`ulp_riscv_run` function
139 ESP_ERROR_CHECK( ulp_riscv_run() );
141 .. doxygenfunction:: ulp_riscv_run()
148 …processor is started by a timer. The timer is started once :cpp:func:`ulp_riscv_run` is called. Th…
152 …up and start running the program from the entry point set in the call to :cpp:func:`ulp_riscv_run`.
/hal_espressif-3.6.0/components/ulp/include/esp32s2/
Dulp_riscv.h27 esp_err_t ulp_riscv_run(void);
/hal_espressif-3.6.0/examples/system/ulp_riscv/ds18b20_onewire/main/
Dulp_riscv_ds18b20_example_main.c70 err = ulp_riscv_run(); in init_ulp_program()
/hal_espressif-3.6.0/examples/system/ulp_riscv/gpio/main/
Dulp_riscv_example_main.c73 err = ulp_riscv_run(); in init_ulp_program()
/hal_espressif-3.6.0/components/ulp/
Dulp_riscv.c32 esp_err_t ulp_riscv_run(void) in ulp_riscv_run() function
/hal_espressif-3.6.0/components/ulp/test/esp32s2/
Dtest_ulp_riscv.c51 TEST_ASSERT(ulp_riscv_run() == ESP_OK); in load_and_start_ulp_firmware()
/hal_espressif-3.6.0/examples/system/ulp_riscv/gpio/
DREADME.md10 …configures the ULP wakeup period and starts the coprocessor by using `ulp_riscv_run`. Once the ULP…