/Zephyr-latest/scripts/west_commands/fetchers/ |
D | core.py | 5 from abc import ABC, abstractmethod 9 class ZephyrBlobFetcher(ABC):
|
/Zephyr-latest/scripts/logging/dictionary/dictionary_parser/ |
D | log_parser.py | 11 import abc 55 class LogParser(abc.ABC): 63 @abc.abstractmethod
|
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/ |
D | device_adapter.py | 7 import abc 28 class DeviceAdapter(abc.ABC): 287 @abc.abstractmethod 294 @abc.abstractmethod 298 @abc.abstractmethod 302 @abc.abstractmethod 306 @abc.abstractmethod 310 @abc.abstractmethod 319 @abc.abstractmethod 323 @abc.abstractmethod [all …]
|
D | binary_adapter.py | 7 import abc 19 class BinaryAdapterBase(DeviceAdapter, abc.ABC): 34 @abc.abstractmethod
|
/Zephyr-latest/tests/drivers/console/line_splitting/ |
D | line_splitting.robot | 12 Wait For Line On Uart getline: abc; 14 Wait For Line On Uart ^abc$ treatAsRegex=true
|
/Zephyr-latest/dts/bindings/sensor/ |
D | winsen,mhz19b.yaml | 20 abc-on: 23 Enable ABC self-calibration function
|
/Zephyr-latest/drivers/sensor/mhz19b/ |
D | mhz19b.h | 28 /* Get ABC status */ 30 /* Enable ABC */ 32 /* Disable ABC */
|
D | mhz19b.c | 187 LOG_DBG("%s ABC", "Enable"); in mhz19b_attr_abc_cfg() 191 LOG_DBG("%s ABC", "Disable"); in mhz19b_attr_abc_cfg() 324 /* Configure ABC logic */ in mhz19b_init() 327 LOG_ERR("Error setting default ABC %s", cfg->abc_on ? "on" : "off"); in mhz19b_init()
|
/Zephyr-latest/samples/sensor/mhz19b/src/ |
D | main.c | 38 printk("failed to set ABC to %d\n", val.val1); in main() 56 printk("failed to get ABC\n"); in main() 60 printk("Sensor ABC is %s\n", val.val1 == 1 ? "enabled" : "disabled"); in main()
|
/Zephyr-latest/boards/contextualelectronics/abc/ |
D | Kconfig.contextualelectronics_abc | 1 # ABC board configuration
|
/Zephyr-latest/boards/contextualelectronics/abc/doc/ |
D | index.rst | 6 The Contextual Electronics ABC (PCA10056) hardware provides support for the 21 More information about the board can be found at the `ABC Board website`_. 28 ABC board has two external oscillators. The frequency of the slow clock 70 See `ABC Board website`_ for more details on this board, and 109 Replace :code:`<tty_device>` with the port where the ABC board 132 .. _ABC Board website: https://contextualelectronics.com/courses/advanced-ble-cell-abc-board/
|
/Zephyr-latest/scripts/tests/twister/test_data/testsuites/tests/test_config/ |
D | test_data.yaml | 3 UNRELATED1=abc
|
/Zephyr-latest/samples/sensor/mhz19b/boards/ |
D | nucleo_g0b1re.overlay | 12 abc-on;
|
/Zephyr-latest/scripts/tests/twister/test_data/ |
D | test_data_with_deprecation_warnings.yaml | 4 OVERLAY_CONFIG=oc1.conf UNRELATED1=abc
|
/Zephyr-latest/tests/drivers/build_all/sensor/ |
D | uart.dtsi | 13 abc-on;
|
/Zephyr-latest/scripts/dts/python-devicetree/tests/ |
D | test_dtlib.py | 240 b = "ABC"; 249 b = "ABC"; 567 unit-addr@ABC { 580 unit-addr@ABC { 588 verify_unit_addr("/unit-addr@ABC", "ABC") 601 d = &{/abc}; 602 label: abc { 604 f = &{/abc}; 615 d = &{/abc}; 616 label: abc { [all …]
|
/Zephyr-latest/scripts/coredump/gdbstubs/ |
D | gdbstub.py | 7 import abc 17 class GdbStub(abc.ABC): 133 @abc.abstractmethod
|
/Zephyr-latest/tests/net/lib/wifi_credentials_backend_settings/src/ |
D | main.c | 192 int ret = wifi_credentials_store_entry(0, "abc", 3); in ZTEST() 198 zassert_equal(strcmp(fake_settings_buf[0], "abc"), 0, "Value mismatch"); in ZTEST() 225 ret = wifi_credentials_store_entry(0, "abc", 3); in ZTEST()
|
/Zephyr-latest/samples/sensor/mhz19b/ |
D | README.rst | 47 Sensor ABC is enabled
|
/Zephyr-latest/drivers/can/ |
D | can_mcp2515.c | 83 * selected by parameter abc. 92 static int mcp2515_cmd_load_tx_buffer(const struct device *dev, uint8_t abc, in mcp2515_cmd_load_tx_buffer() argument 97 __ASSERT(abc <= 5, "abc <= 5"); in mcp2515_cmd_load_tx_buffer() 99 uint8_t cmd_buf[] = { MCP2515_OPCODE_LOAD_TX_BUFFER | abc }; in mcp2515_cmd_load_tx_buffer() 535 uint8_t abc; in mcp2515_send() local 582 abc = 2 * tx_idx; in mcp2515_send() 587 mcp2515_cmd_load_tx_buffer(dev, abc, tx_frame, len); in mcp2515_send()
|
/Zephyr-latest/tests/subsys/shell/shell_flash/src/ |
D | shell_flash_test.c | 35 "00000020: 61 62 63 |abc |", in ZTEST()
|
/Zephyr-latest/tests/subsys/logging/log_links/src/ |
D | main.c | 63 { .source = "abc", .clevel = 4, .rlevel = 4}, 77 { .source = "abc", .clevel = 4, .rlevel = 4},
|
/Zephyr-latest/scripts/west_commands/runners/ |
D | core.py | 14 import abc 391 class ZephyrBinaryRunner(abc.ABC): 505 @abc.abstractmethod 629 @abc.abstractmethod 680 @abc.abstractmethod 722 @abc.abstractmethod
|
D | nrf_common.py | 8 import abc 145 @abc.abstractmethod 493 @abc.abstractmethod 542 @abc.abstractmethod
|
/Zephyr-latest/scripts/tests/twister/ |
D | test_twister.py | 77 assert scenario["extra_args"] == ["UNRELATED1=abc", "UNRELATED2=xyz"]
|