Home
last modified time | relevance | path

Searched full:abc (Results 1 – 25 of 42) sorted by relevance

12

/Zephyr-latest/scripts/west_commands/fetchers/
Dcore.py5 from abc import ABC, abstractmethod
9 class ZephyrBlobFetcher(ABC):
/Zephyr-latest/scripts/logging/dictionary/dictionary_parser/
Dlog_parser.py11 import abc
55 class LogParser(abc.ABC):
63 @abc.abstractmethod
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/
Ddevice_adapter.py7 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 …]
Dbinary_adapter.py7 import abc
19 class BinaryAdapterBase(DeviceAdapter, abc.ABC):
34 @abc.abstractmethod
/Zephyr-latest/tests/drivers/console/line_splitting/
Dline_splitting.robot12 Wait For Line On Uart getline: abc;
14 Wait For Line On Uart ^abc$ treatAsRegex=true
/Zephyr-latest/dts/bindings/sensor/
Dwinsen,mhz19b.yaml20 abc-on:
23 Enable ABC self-calibration function
/Zephyr-latest/drivers/sensor/mhz19b/
Dmhz19b.h28 /* Get ABC status */
30 /* Enable ABC */
32 /* Disable ABC */
Dmhz19b.c187 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/
Dmain.c38 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/
DKconfig.contextualelectronics_abc1 # ABC board configuration
/Zephyr-latest/boards/contextualelectronics/abc/doc/
Dindex.rst6 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/
Dtest_data.yaml3 UNRELATED1=abc
/Zephyr-latest/samples/sensor/mhz19b/boards/
Dnucleo_g0b1re.overlay12 abc-on;
/Zephyr-latest/scripts/tests/twister/test_data/
Dtest_data_with_deprecation_warnings.yaml4 OVERLAY_CONFIG=oc1.conf UNRELATED1=abc
/Zephyr-latest/tests/drivers/build_all/sensor/
Duart.dtsi13 abc-on;
/Zephyr-latest/scripts/dts/python-devicetree/tests/
Dtest_dtlib.py240 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/
Dgdbstub.py7 import abc
17 class GdbStub(abc.ABC):
133 @abc.abstractmethod
/Zephyr-latest/tests/net/lib/wifi_credentials_backend_settings/src/
Dmain.c192 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/
DREADME.rst47 Sensor ABC is enabled
/Zephyr-latest/drivers/can/
Dcan_mcp2515.c83 * 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/
Dshell_flash_test.c35 "00000020: 61 62 63 |abc |", in ZTEST()
/Zephyr-latest/tests/subsys/logging/log_links/src/
Dmain.c63 { .source = "abc", .clevel = 4, .rlevel = 4},
77 { .source = "abc", .clevel = 4, .rlevel = 4},
/Zephyr-latest/scripts/west_commands/runners/
Dcore.py14 import abc
391 class ZephyrBinaryRunner(abc.ABC):
505 @abc.abstractmethod
629 @abc.abstractmethod
680 @abc.abstractmethod
722 @abc.abstractmethod
Dnrf_common.py8 import abc
145 @abc.abstractmethod
493 @abc.abstractmethod
542 @abc.abstractmethod
/Zephyr-latest/scripts/tests/twister/
Dtest_twister.py77 assert scenario["extra_args"] == ["UNRELATED1=abc", "UNRELATED2=xyz"]

12