Searched refs:machine (Results 1 – 25 of 128) sorted by relevance
123456
/Zephyr-latest/tests/posix/single_process/src/ |
D | uname.c | 17 zassert_ok(strncmp(info.machine, CONFIG_ARCH, sizeof(info.machine))); in ZTEST()
|
/Zephyr-latest/samples/posix/uname/src/ |
D | main.c | 21 printf("machine[%zu]: %s\n", sizeof(info.machine), info.machine); in main()
|
/Zephyr-latest/boards/sifive/hifive_unmatched/support/ |
D | hifive_unmatched.resc | 17 machine LoadPlatformDescriptionFromString $platform 18 machine PyDevFromFile @scripts/pydev/flipflop.py 0x10000000 0x100 True
|
/Zephyr-latest/boards/sifive/hifive_unleashed/support/ |
D | hifive_unleashed.resc | 20 machine LoadPlatformDescriptionFromString $platform 21 machine PyDevFromFile @scripts/pydev/flipflop.py 0x10000000 0x100 True
|
/Zephyr-latest/samples/subsys/smf/hsm_psicc2/ |
D | README.rst | 5 Implement an event-driven hierarchical state machine using State Machine Framework (SMF). 33 https://www.state-machine.com/psicc2 This demo was chosen as it contains all possible transition 41 * ``psicc2 event <event>`` sends the event (from A to I) to the state machine. These correspond to 43 * ``psicc2 terminate`` sends the ``EVENT_TERMINATE`` event to terminate the state machine. There 44 is no way to restart the state machine once terminated, and future events are ignored.
|
/Zephyr-latest/lib/posix/options/ |
D | uname.c | 34 .version = UTSNAME_VERSION(_ver), .machine = _mach, \ 43 BUILD_ASSERT(sizeof(z_name.machine) >= sizeof(CONFIG_ARCH));
|
/Zephyr-latest/doc/services/smf/ |
D | index.rst | 23 defined structure that has the state machine context, :c:struct:`smf_ctx`, as 31 The :c:struct:`smf_ctx` member must be first because the state machine 39 machine. But to enable the creation of a hierarchical state machine, the 53 A state machine is created by defining a table of states that's indexed by an 102 .. note:: While the state machine is running, :c:func:`smf_set_state` should 110 To run the state machine, the :c:func:`smf_run_state` function should be 124 To terminate the state machine, the :c:func:`smf_set_terminate` function 132 SMF follows UML hierarchical state machine rules for transitions i.e., the 162 :caption: Flat state machine diagram 245 /* Run the state machine */ [all …]
|
/Zephyr-latest/dts/riscv/niosv/ |
D | niosv-m.dtsi | 46 mtimer: machine-timer@90000 { 47 compatible = "niosv-machine-timer";
|
D | niosv-g.dtsi | 46 mtimer: machine-timer@90000 { 47 compatible = "niosv-machine-timer";
|
/Zephyr-latest/subsys/usb/usb_c/ |
D | Kconfig | 38 int "USB-C state machine cycle time in milliseconds" 41 The USB-C state machine is run in a loop and the cycle time is the 64 Allows the USB-C state machine to function as a Sink 69 Allow the USB-C state machine to function as a Source
|
/Zephyr-latest/drivers/timer/ |
D | Kconfig.riscv_machine | 19 This module implements a kernel device driver for the generic RISCV machine 33 Default case is N=0, this means use system clock as machine timer clock. 34 It is normal configuration for RISC-V machine clock.
|
/Zephyr-latest/boards/madmachine/ |
D | index.rst | 1 .. _boards-mad-machine:
|
/Zephyr-latest/doc/connectivity/bluetooth/autopts/ |
D | autopts-linux.rst | 7 virtual machine. Tested with Ubuntu 20.4 and Linux Mint 20.4. 49 Setup Windows 10 virtual machine 55 Create Windows virtual machine instance. Make sure it has at least 2 cores and 77 Open virtual machine network settings. On adapter 1 you will have created by default NAT. 108 Open virtual machine network settings. Add custom adapter: 139 Open virtual machine network settings. On adapter 1 you will have created by default NAT. 148 Setup static IP on Windows virtual machine. Go to 192 On Windows virtual machine, install latest PTS from https://www.bluetooth.org. 225 Note Vendor and ProdID number. Close VMWare Workstation and open .vmx of your virtual machine 285 Autopts server on Windows virtual machine [all …]
|
/Zephyr-latest/arch/posix/ |
D | Linux.aarch64.cmake | 20 "CONFIG_64BIT=y but this Aarch64 machine has a 32-bit userspace.\n" 29 "CONFIG_64BIT=n but this Aarch64 machine has a 64-bit userspace.\n"
|
/Zephyr-latest/samples/userspace/shared_mem/ |
D | README.rst | 11 simulating an enigma-like machine, but the implementation of the 12 machine has not been validated and should not be used for any 36 are the input and output of the enigma-like machine. The second 56 performs a simulation of the enigma machine to produce cypher text(CT).
|
/Zephyr-latest/boards/qemu/riscv32_xip/ |
D | board.cmake | 9 -machine sifive_e
|
/Zephyr-latest/boards/qemu/malta/ |
D | board.cmake | 8 -machine malta
|
/Zephyr-latest/boards/qemu/nios2/ |
D | board.cmake | 9 -machine altera_10m50_zephyr
|
/Zephyr-latest/include/zephyr/posix/sys/ |
D | utsname.h | 26 char machine[sizeof(CONFIG_ARCH)]; member
|
/Zephyr-latest/boards/qemu/leon3/ |
D | board.cmake | 10 -machine leon3_generic
|
/Zephyr-latest/boards/qemu/riscv32/ |
D | board.cmake | 9 -machine virt
|
/Zephyr-latest/boards/qemu/riscv64/ |
D | board.cmake | 10 -machine virt
|
/Zephyr-latest/samples/subsys/smf/smf_calculator/ |
D | README.rst | 10 This sample creates a basic desk calculator driven by a state machine written 30 output, based on the sample in samples/drivers/display. The state machine updates 85 demonstrating a state machine can receive inputs from multiple sources. 86 The ``key <key>`` command sends a keypress to the state machine. Valid keys are 100 https://www.state-machine.com/psicc2
|
/Zephyr-latest/boards/qemu/cortex_m3/ |
D | board.cmake | 9 -machine lm3s6965evb
|
/Zephyr-latest/boards/qemu/cortex_m0/ |
D | board.cmake | 11 -machine microbit
|
123456