Home
last modified time | relevance | path

Searched +full:master +full:- +full:schedule (Results 1 – 11 of 11) sorted by relevance

/hal_espressif-3.5.0/.github/workflows/
Dnew_prs.yml6 schedule:
7 - cron: "0 * * * *"
12 runs-on: ubuntu-latest
14 - uses: actions/checkout@master
15 - name: Sync PRs to Jira project
16 uses: espressif/github-actions/sync_issues_to_jira@master
/hal_espressif-3.5.0/.gitlab/ci/
Drules.yml4 .patterns-c-files: &patterns-c-files
5 - ".gitlab/ci/static-code-analysis.yml"
7 - "tools/ci/static-analysis-rules.yml"
8 - "tools/ci/clang_tidy_dirs.txt"
10 - "**/*.{c,C}"
11 - "**/*.{h,H}"
12 - "components/**/Kconfig"
13 - "components/**/CMakeList.txt"
15 .patterns-python-files: &patterns-python-files
16 - ".gitlab/ci/static-code-analysis.yml"
[all …]
DREADME.md3 - [IDF CI](#idf-ci)
4 - [General Workflow](#general-workflow)
5 - [What if Expected Jobs ARE NOT Created?](#what-if-expected-jobs-are-not-created)
6 - [MR labels for additional jobs](#mr-labels-for-additional-jobs)
7 - [Supported MR Labels](#supported-mr-labels)
8- [How to trigger a `detached` pipeline without pushing new commits?](#how-to-trigger-a-detached-p…
9 - [How to Develop With `rules.yml`?](#how-to-develop-with-rulesyml)
10 - [General Concepts](#general-concepts)
11 - [How to Add a New `Job`?](#how-to-add-a-new-job)
12 - [How to Add a New `Rules` Template?](#how-to-add-a-new-rules-template)
[all …]
Ddeploy.yml6 - deploy
10 - .deploy_job_template
11 - .before_script_minimal
12 - .rules:protected-no_label
15 - add_github_ssh_keys
16 - git remote remove github &>/dev/null || true
17 - git remote add github git@github.com:espressif/esp-idf.git
18 - tools/ci/push_to_github.sh
22 - .deploy_job_template
23 - .before_script_minimal
[all …]
Dassign-test.yml2 image: $CI_DOCKER_REGISTRY/ubuntu-test-env$BOT_DOCKER_IMAGE_TAG
5 - assign_test
10 - ${TEST_DIR}/test_configs
11 - ${BUILD_DIR}/artifact_index.json
15- python tools/ci/python_packages/ttfw_idf/IDFAssignTest.py $TEST_TYPE $TEST_DIR -c $CI_TARGET_TES…
19 - .assign_test_template
20 - .rules:build:example_test
22 - job: build_examples_cmake_esp32
25 - job: build_examples_cmake_esp32s2
28 - job: build_examples_cmake_esp32c3
[all …]
/hal_espressif-3.5.0/examples/cxx/experimental/experimental_cpp_component/include/
Di2c_cxx.hpp2 * SPDX-FileCopyrightText: 2020-2021 Espressif Systems (Shanghai) CO LTD
4 * SPDX-License-Identifier: Apache-2.0
40 * Wrapper around i2c_cmd_handle_t, makes it exception-safe.
64 * - initialize the command link
65 * - issuing a start to the command link queue
66 … * - calling \c queue_cmd() in the subclass to issue specific commands to the command link queue
67 * - issuing a stop to the command link queue
68 * - executing the assembled commands on the I2C bus
69 …* - calling \c process_result() to process the results of the commands or calling process_excepti…
71 * - deleting the command link
[all …]
/hal_espressif-3.5.0/docs/en/api-guides/esp-ble-mesh/
Dble-mesh-terminology.rst1 ESP-BLE-MESH Terminology
6 .. _ble-mesh-terminology-role:
8 .. list-table:: Table 1 ESP-BLE-MESH Terminology - Role
10 :header-rows: 1
12 * - Term
13 - Official Definition
14 - Detailed Explanation
15 * - Unprovisioned Device
16 - A device that is not a member of a mesh network is known as an unprovisioned device.
17- Examples: lighting devices, temperature control devices, manufacturing equipments and electric d…
[all …]
/hal_espressif-3.5.0/components/hal/
Dusbh_hal.c2 * SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
4 * SPDX-License-Identifier: Apache-2.0
15 // ------------------------------------------------ Macros and Types ------------------------------…
17 // ---------------------- Constants ------------------------
28 // -------------------- Configurable -----------------------
33 * - USB_LL_INTR_CORE_PRTINT
34 * - USB_LL_INTR_CORE_HCHINT
35 * - USB_LL_INTR_CORE_DISCONNINT
37 * - USBH_LL_INTR_HPRT_PRTCONNDET
38 * - USBH_LL_INTR_HPRT_PRTENCHNG
[all …]
/hal_espressif-3.5.0/components/driver/include/driver/
Dspi_common_internal.h2 * SPDX-FileCopyrightText: 2010-2021 Espressif Systems (Shanghai) CO LTD
4 * SPDX-License-Identifier: Apache-2.0
121 * - ESP_OK: On success
122 * - ESP_ERR_NO_MEM: No enough memory
123 * - ESP_ERR_NOT_FOUND: There is no available DMA channel
133 * - ESP_OK: On success
140 * This routine is used to connect a SPI peripheral to the IO-pads and DMA channel given in
141 * the arguments. Depending on the IO-pads requested, the routing is done either using the
144 * @note This public API is deprecated. Please call ``spi_bus_initialize`` for master
150 * - ``SPICOMMON_BUSFLAG_MASTER``: Initialize I/O in master mode
[all …]
/hal_espressif-3.5.0/components/bt/host/bluedroid/stack/btm/
Dbtm_acl.c3 * Copyright (C) 2000-2012 Broadcom Corporation
9 * http://www.apache.org/licenses/LICENSE-2.0
101 switch(p_param->type) { in btm_get_acl_db()
104 UINT8 *p_bda = (UINT8 *)p_param->p_data1; in btm_get_acl_db()
106 tBT_TRANSPORT transport = (tBT_TRANSPORT)(*((UINT8 *)p_param->p_data2)); in btm_get_acl_db()
108 if (p_acl_db->in_use in btm_get_acl_db()
109 && !memcmp(p_bda, p_acl_db->remote_addr, BD_ADDR_LEN) in btm_get_acl_db()
111 && transport == p_acl_db->transport in btm_get_acl_db()
120 UINT16 handle = (UINT16) *((UINT16 *)p_param->p_data1); in btm_get_acl_db()
121 if (p_acl_db->in_use && handle == p_acl_db->hci_handle) { in btm_get_acl_db()
[all …]
/hal_espressif-3.5.0/components/bt/host/bluedroid/bta/dm/
Dbta_dm_act.c3 * Copyright (C) 2003-2014 Broadcom Corporation
9 * http://www.apache.org/licenses/LICENSE-2.0
273 if (p_data->enable.p_sec_cback != NULL) { in bta_dm_enable()
274 p_data->enable.p_sec_cback(BTA_DM_ENABLE_EVT, (tBTA_DM_SEC *)&enable_event); in bta_dm_enable()
282 /* make sure security callback is saved - if no callback, do not erase the previous one, in bta_dm_enable()
284 if ( p_data->enable.p_sec_cback != NULL ) { in bta_dm_enable()
285 bta_dm_cb.p_sec_cback = p_data->enable.p_sec_cback; in bta_dm_enable()
292 sys_enable_event->hdr.event = BTA_SYS_API_ENABLE_EVT; in bta_dm_enable()
293 sys_enable_event->hw_module = BTA_SYS_HW_BLUETOOTH; in bta_dm_enable()
318 * Description De-initializes the bta_dm_cb control block
[all …]