Home
last modified time | relevance | path

Searched full:path (Results 1 – 25 of 428) sorted by relevance

12345678910>>...18

/hal_stm32-3.6.0/scripts/
Dserie_update.py13 from pathlib import Path
22 SCRIPT_DIR = Path(__file__).absolute().parent
60 stm32cube_repo_path: directory path where to fetch github repo
70 FileNotFoundError: If Zphyr STM32 cube path is not found
90 # 2: zephyr stm32 path : ex: .../zephyr_project/module/hal/stm32
109 self.stm32cube_serie_path = self.stm32cube_repo_path / Path(
153 def rename_conf_template(self, path): argument
156 path: path where to apply the files processing
159 hal_conf_template_fullpath = Path(
160 path / (self.stm32_seriexx + "_hal_conf_template.h")
[all …]
Dble_library.py12 from pathlib import Path
140 hci_path = Path(dest_lib_path / "hci")
151 file_path = Path(src_repo_path / file)
155 shutil.copy(file_path, Path(hci_path / file_name))
163 auto_path = Path(hci_path / "auto")
164 ll_path = Path(hci_path / "ll")
165 reg_files_path = Path(ll_path / "_40nm_reg_files")
180 file_path = Path(src_repo_path / file)
184 shutil.copy(file_path, Path(dir_paths[dir_name]))
195 dest_lib_path: library path
[all …]
Dupdate_stm32_package.py19 from pathlib import Path
44 help="Allows to provide path where STM32Cube repo are stored",
62 SCRIPT_DIR = Path(__file__).absolute().parent
96 repo_path = Path(args.repo)
98 repo_path = Path(os.getenv("HOME")) / "STM32Cube_repo"
190 Path(commit_file_path).unlink()
/hal_stm32-3.6.0/scripts/genllheaders/
Dgenllheaders.py6 python3 genllheaders.py [-p /path/to/HAL] [-o /path/to/output_dir]
15 from pathlib import Path
25 SCRIPT_DIR = Path(__file__).absolute().parent
45 hal_path: Zephyr CubeMX HAL path.
112 "--hal-path",
113 type=Path,
115 help="Zephyr CubeMX HAL path",
120 type=Path,
/hal_stm32-3.6.0/scripts/genpinctrl/
Dgenpinctrl.py6 python3 genpinctrl.py -p /path/to/stm32-open-pin-data-repository
7 [-o /path/to/output_dir]
17 from pathlib import Path
30 SCRIPT_DIR = Path(__file__).absolute().parent
257 data_path: STM32 Open Pin Data repository path.
370 data_path: STM32 Open Pin Data repository path.
485 data_path: STM32 Open Pin Data repository path.
610 "--data-path",
611 type=Path,
613 help="Path to STM32 Open Pin Data repository",
[all …]
/hal_stm32-3.6.0/lib/stm32wba/hci/ll/
Dll_intf.h479 …uint16_t conn_handle_id; /* Connection handle for which a path loss threshold crossing is reported…
480 …uint8_t current_path_loss; /* The current path loss value as calculated by the Controller. (unit: …
674 * @brief LE Set Path Loss Reporting Parameters command
677 …uint16_t conn_handle_id; /* Connection handle for which path loss threshold reporting parameters a…
678 …t; /* Minimum time in number of connection events to be observed once the path crosses the thresho…
679 uint8_t high_threshold; /* High threshold for the path loss (unit: dB) */
681 uint8_t low_threshold; /* Low threshold for the path loss (unit: dB) */
686 * @brief LE Set Path Loss Reporting Enable command
689 …uint16_t conn_handle_id; /* Connection handle for which path loss reporting to Host is enabled or …
690 …uint8_t enable; /* Enable or Disabled the path loss reporting to Host. 0x00: Reporting disabled…
[all …]
/hal_stm32-3.6.0/stm32cube/stm32wlxx/drivers/include/
Dstm32wlxx_ll_dac.h817 * - connection to GPIO or internal path.
825 * - if output connection is set to internal path and output buffer
828 * (both connections to GPIO pin and internal path).
831 * output connection is also connected to internal path
832 * (both connections to GPIO pin and internal path).
947 * - if output connection is set to internal path and output buffer
950 * (both connections to GPIO pin and internal path).
953 * output connection is also connected to internal path
954 * (both connections to GPIO pin and internal path).
975 * - if output connection is set to internal path and output buffer
[all …]
/hal_stm32-3.6.0/scripts/common_utils/
Dcommon_utils.py4 from pathlib import Path
17 log_path = dest_path / str(Path(patch_file).name + ".log")
43 def remove_readonly(func, path, _): argument
45 os.chmod(path, stat.S_IWRITE)
46 func(path)
/hal_stm32-3.6.0/stm32cube/stm32g0xx/drivers/include/
Dstm32g0xx_ll_dac.h875 * - connection to GPIO or internal path.
883 * - if output connection is set to internal path and output buffer
886 * (both connections to GPIO pin and internal path).
889 * output connection is also connected to internal path
890 * (both connections to GPIO pin and internal path).
1015 * - if output connection is set to internal path and output buffer
1018 * (both connections to GPIO pin and internal path).
1021 * output connection is also connected to internal path
1022 * (both connections to GPIO pin and internal path).
1045 * - if output connection is set to internal path and output buffer
[all …]
/hal_stm32-3.6.0/stm32cube/stm32h7xx/drivers/include/
Dstm32h7xx_ll_dac.h940 * - connection to GPIO or internal path.
948 * - if output connection is set to internal path and output buffer
951 * (both connections to GPIO pin and internal path).
954 * output connection is also connected to internal path
955 * (both connections to GPIO pin and internal path).
1080 * - if output connection is set to internal path and output buffer
1083 * (both connections to GPIO pin and internal path).
1086 * output connection is also connected to internal path
1087 * (both connections to GPIO pin and internal path).
1110 * - if output connection is set to internal path and output buffer
[all …]
Dstm32h7xx_ll_sdmmc.h91 uint32_t CPSM; /*!< Specifies whether SDMMC Command path state machine (CPSM)
116 uint32_t DPSM; /*!< Specifies whether SDMMC Data path state machine (DPSM)
791 * @arg SDMMC_FLAG_DPSMACT: Data path state machine active
792 * @arg SDMMC_FLAG_CPSMACT: Command path state machine active
1027 /* Command path state machine (CPSM) management functions */
1032 /* Data path state machine (DPSM) management functions */
/hal_stm32-3.6.0/stm32cube/stm32l5xx/drivers/include/
Dstm32l5xx_ll_dac.h928 * - connection to GPIO or internal path.
936 * - if output connection is set to internal path and output buffer
939 * (both connections to GPIO pin and internal path).
942 * output connection is also connected to internal path
943 * (both connections to GPIO pin and internal path).
1068 * - if output connection is set to internal path and output buffer
1071 * (both connections to GPIO pin and internal path).
1074 * output connection is also connected to internal path
1075 * (both connections to GPIO pin and internal path).
1098 * - if output connection is set to internal path and output buffer
[all …]
Dstm32l5xx_ll_sdmmc.h91 uint32_t CPSM; /*!< Specifies whether SDMMC Command path state machine (CPSM)
116 uint32_t DPSM; /*!< Specifies whether SDMMC Data path state machine (DPSM)
787 * @arg SDMMC_FLAG_DPSMACT: Data path state machine active
788 * @arg SDMMC_FLAG_CPSMACT: Command path state machine active
1023 /* Command path state machine (CPSM) management functions */
1028 /* Data path state machine (DPSM) management functions */
/hal_stm32-3.6.0/stm32cube/stm32l4xx/drivers/include/
Dstm32l4xx_ll_dac.h970 * - connection to GPIO or internal path.
978 * - if output connection is set to internal path and output buffer
981 * (both connections to GPIO pin and internal path).
984 * output connection is also connected to internal path
985 * (both connections to GPIO pin and internal path).
1125 * - if output connection is set to internal path and output buffer
1128 * (both connections to GPIO pin and internal path).
1131 * output connection is also connected to internal path
1132 * (both connections to GPIO pin and internal path).
1158 * - if output connection is set to internal path and output buffer
[all …]
/hal_stm32-3.6.0/stm32cube/stm32u5xx/drivers/include/
Dstm32u5xx_ll_dac.h943 * - connection to GPIO or internal path.
951 * - if output connection is set to internal path and output buffer
954 * (both connections to GPIO pin and internal path).
957 * output connection is also connected to internal path
958 * (both connections to GPIO pin and internal path).
1083 * - if output connection is set to internal path and output buffer
1086 * (both connections to GPIO pin and internal path).
1089 * output connection is also connected to internal path
1090 * (both connections to GPIO pin and internal path).
1113 * - if output connection is set to internal path and output buffer
[all …]
/hal_stm32-3.6.0/stm32cube/stm32h5xx/drivers/include/
Dstm32h5xx_ll_dac.h964 * - connection to GPIO or internal path.
972 * - if output connection is set to internal path and output buffer
975 * (both connections to GPIO pin and internal path).
978 * output connection is also connected to internal path
979 * (both connections to GPIO pin and internal path).
1104 * - if output connection is set to internal path and output buffer
1107 * (both connections to GPIO pin and internal path).
1110 * output connection is also connected to internal path
1111 * (both connections to GPIO pin and internal path).
1134 * - if output connection is set to internal path and output buffer
[all …]
/hal_stm32-3.6.0/zephyr/
Dmodule.yml6 - path: stm32wba/lib/LinkLayer_BLE_Full_lib.a
10 license-path: zephyr/blobs/stm32wba/lib/license.md
13 - path: stm32wba/lib/stm32wba_ble_stack_llo.a
17 license-path: zephyr/blobs/stm32wba/lib/license.md
/hal_stm32-3.6.0/stm32cube/stm32f4xx/drivers/include/
Dstm32f4xx_ll_adc.h563 /** @defgroup ADC_LL_EC_COMMON_PATH_INTERNAL ADC common - Measurement path to internal channels
569 /* path enable. In this case, Access to measurement path is done */
572 #define LL_ADC_PATH_INTERNAL_VREFINT (ADC_CCR_TSVREFE) /*!< ADC measurement path to inte…
573 #define LL_ADC_PATH_INTERNAL_TEMPSENSOR (ADC_CCR_TSVREFE) /*!< ADC measurement path to inte…
574 #define LL_ADC_PATH_INTERNAL_VBAT (ADC_CCR_VBATE) /*!< ADC measurement path to inte…
646 … channel is shared between temperature sensor and Vbat, only 1 measurement path must be enabled. */
950 … channel is shared between temperature sensor and Vbat, only 1 measurement path must be enabled. */
951 … channel is shared between temperature sensor and Vbat, only 1 measurement path must be enabled. */
952 … channel is shared between temperature sensor and Vbat, only 1 measurement path must be enabled. */
1150 …nal channel is shared between temperature sensor and Vbat, only 1 measurement path must be enabled.
[all …]
/hal_stm32-3.6.0/stm32cube/stm32f7xx/drivers/include/
Dstm32f7xx_ll_adc.h555 /** @defgroup ADC_LL_EC_COMMON_PATH_INTERNAL ADC common - Measurement path to internal channels
561 /* path enable. In this case, Access to measurement path is done */
564 #define LL_ADC_PATH_INTERNAL_VREFINT (ADC_CCR_TSVREFE) /*!< ADC measurement path to inte…
565 #define LL_ADC_PATH_INTERNAL_TEMPSENSOR (ADC_CCR_TSVREFE) /*!< ADC measurement path to inte…
566 #define LL_ADC_PATH_INTERNAL_VBAT (ADC_CCR_VBATE) /*!< ADC measurement path to inte…
931 … channel is shared between temperature sensor and Vbat, only 1 measurement path must be enabled. */
932 … channel is shared between temperature sensor and Vbat, only 1 measurement path must be enabled. */
933 … channel is shared between temperature sensor and Vbat, only 1 measurement path must be enabled. */
1128 …nal channel is shared between temperature sensor and Vbat, only 1 measurement path must be enabled.
1166 …l channel is shared between temperature sensor and Vbat, only 1 measurement path must be enabled.\n
[all …]
/hal_stm32-3.6.0/stm32cube/stm32mp1xx/drivers/include/
Dstm32mp1xx_ll_sdmmc.h87 uint32_t CPSM; /*!< Specifies whether SDMMC Command path state machine (CPSM)
112 uint32_t DPSM; /*!< Specifies whether SDMMC Data path state machine (DPSM)
758 * @arg SDMMC_FLAG_CPSMACT: Command path state machine active
759 * @arg SDMMC_FLAG_DPSMACT: Data path state machine active
826 * @arg SDMMC_IT_DPSMACT: Data path state machine active interrupt
827 * @arg SDMMC_IT_CPSMACT: Command path state machine active interrupt
1001 /* Command path state machine (CPSM) management functions */
1006 /* Data path state machine (DPSM) management functions */
/hal_stm32-3.6.0/stm32cube/stm32l0xx/drivers/include/
Dstm32l0xx_ll_comp.h134 …rator input minus connected to 1/4 VrefInt (specifity of COMP2 related to path to enable via SYSCF…
135 …rator input minus connected to 1/2 VrefInt (specifity of COMP2 related to path to enable via SYSCF…
136 …rator input minus connected to 3/4 VrefInt (specifity of COMP2 related to path to enable via SYSCF…
137 …omparator input minus connected to VrefInt (specifity of COMP2 related to path to enable via SYSCF…
354 * to enable path from VrefInt (refer to literal
440 * to enable path from VrefInt (refer to literal
/hal_stm32-3.6.0/stm32cube/stm32g4xx/drivers/include/
Dstm32g4xx_ll_dac.h1441 * - connection to GPIO or internal path.
1449 * - if output connection is set to internal path and output buffer
1452 * (both connections to GPIO pin and internal path).
1455 * output connection is also connected to internal path
1456 * (both connections to GPIO pin and internal path).
1596 * - if output connection is set to internal path and output buffer
1599 * (both connections to GPIO pin and internal path).
1602 * output connection is also connected to internal path
1603 * (both connections to GPIO pin and internal path).
1629 * - if output connection is set to internal path and output buffer
[all …]
/hal_stm32-3.6.0/scripts/tests/genllheaders/
Dconftest.py1 from pathlib import Path
7 _SCRIPT_DIR = Path(__file__).absolute().parent
8 sys.path.insert(0, str(_SCRIPT_DIR / ".." / ".." / "genllheaders"))
/hal_stm32-3.6.0/scripts/tests/genpinctrl/
Dconftest.py1 from pathlib import Path
7 _SCRIPT_DIR = Path(__file__).absolute().parent
8 sys.path.insert(0, str(_SCRIPT_DIR / ".." / ".." / "genpinctrl"))
Dtest_genpinctrl.py1 from pathlib import Path
241 get_gpio_ip_afs(Path("MISSING_PATH"))
244 get_mcu_signals(Path("MISSING_PATH"), dict())

12345678910>>...18