Home
last modified time | relevance | path

Searched refs:setup (Results 51 – 75 of 444) sorted by relevance

12345678910>>...18

/Zephyr-latest/tests/subsys/logging/log_custom_header/src/
Dlog_custom_header.c76 static void *setup(void) in setup() function
95 ZTEST_SUITE(log_custom_header, NULL, setup, before, after, NULL);
/Zephyr-latest/samples/modules/tflite-micro/hello_world/src/
Dmain.c29 setup(); in main()
/Zephyr-latest/samples/net/sockets/txtime/
DKconfig11 The value depends on your network setup. This could be
69 The value depends on your network setup.
74 The value depends on your network setup.
88 The value depends on your network setup.
93 The value depends on your network setup.
/Zephyr-latest/boards/intel/common/scripts/
Dbuild_grub.sh52 setup() { function
71 prepare && build && setup
/Zephyr-latest/subsys/bluetooth/audio/
DKconfig.vcp70 int "Maximum number of VOCS instances to setup"
75 instances to setup and use.
85 int "Maximum number of AICS instances to setup"
90 instances to setup and use.
/Zephyr-latest/soc/nordic/nrf53/
Dsync_rtc.c74 static void ppi_ipc_to_rtc(union rtc_sync_channels channels, bool setup) in ppi_ipc_to_rtc() argument
79 if (setup) { in ppi_ipc_to_rtc()
93 static void ppi_rtc_to_ipc(union rtc_sync_channels channels, bool setup) in ppi_rtc_to_ipc() argument
98 if (setup) { in ppi_rtc_to_ipc()
/Zephyr-latest/subsys/usb/device_next/class/
Dusbd_hid_api.c75 struct usb_setup_packet setup = { in wrapper_get_report() local
86 return legacy_ops->get_report(dev, &setup, &l, &d); in wrapper_get_report()
97 struct usb_setup_packet setup = { in wrapper_set_report() local
108 return legacy_ops->set_report(dev, &setup, &l, &d); in wrapper_set_report()
Dusbd_cdc_ncm.c886 const struct usb_setup_packet *const setup, in usbd_cdc_ncm_ctd() argument
889 if (setup->RequestType.recipient == USB_REQTYPE_RECIPIENT_INTERFACE) { in usbd_cdc_ncm_ctd()
890 if (setup->bRequest == SET_ETHERNET_PACKET_FILTER) { in usbd_cdc_ncm_ctd()
892 setup->bRequest, "SetPacketFilter"); in usbd_cdc_ncm_ctd()
896 if (setup->bRequest == SET_NTB_INPUT_SIZE) { in usbd_cdc_ncm_ctd()
898 setup->bRequest, "SetNtbInputSize"); in usbd_cdc_ncm_ctd()
902 if (setup->bRequest == SET_NTB_FORMAT) { in usbd_cdc_ncm_ctd()
904 setup->bRequest, "SetNtbFormat"); in usbd_cdc_ncm_ctd()
910 setup->bmRequestType, setup->bRequest); in usbd_cdc_ncm_ctd()
917 const struct usb_setup_packet *const setup, in usbd_cdc_ncm_cth() argument
[all …]
/Zephyr-latest/arch/arm64/core/xen/
DKconfig23 bool "Zephyr for Xen Dom0less setup"
27 setup.
/Zephyr-latest/subsys/usb/device/
Dbos_desc.h20 int usb_handle_bos(struct usb_setup_packet *setup, int32_t *len, uint8_t **data);
/Zephyr-latest/tests/subsys/usb/bos/src/
Dtest_bos.c200 struct usb_setup_packet setup; in test_usb_bos() local
207 setup.wValue = (USB_DESC_BOS & 0xFF) << 8; in test_usb_bos()
209 ret = usb_handle_bos(&setup, &len, &data); in test_usb_bos()
/Zephyr-latest/tests/subsys/debug/symtab/src/
Dmain.c12 static void *setup(void) in setup() function
19 ZTEST_SUITE(test_symtab, NULL, setup, NULL, NULL, NULL);
53 symbol_name = symtab_find_symbol_name((uintptr_t)setup, NULL); in ZTEST()
/Zephyr-latest/doc/connectivity/networking/
Dnetwork_monitoring.rst22 The instructions here describe how to setup a Linux host to capture Zephyr
34 The ``net-tools`` project provides a configure file to setup IP-to-IP tunnel
41 ./net-setup.sh -c zeth-tunnel.conf
136 ``net-shell`` to setup and enable the monitoring.
138 The network packet monitoring needs to be setup first. The ``net-shell`` has
139 ``net capture setup`` command for doing that. The command syntax is
143 net capture setup <remote-ip-addr> <local-ip-addr> <peer-ip-addr>
154 net capture setup 192.0.2.2 2001:db8:200::1 2001:db8:200::2
162 setup command like this for IPv6-over-IPv4 tunnel
166 net capture setup 192.0.2.2 [2001:db8:200::1]:9999 [2001:db8:200::2]:9998
[all …]
Dnetworking_with_multiple_instances.rst33 * Terminal #3, where you setup bridging in Linux host
37 As there are multiple ways to setup the Zephyr network, the example below uses
39 to simplify the setup instructions. You can use other QEMU boards and drivers
48 Zephyr instance should be created in the host system. The default setup for
94 The following ``net-setup.sh`` commands should be typed in net-tools
101 ./net-setup.sh -c zephyr1.conf -i zeth.1
107 ./net-setup.sh -c zephyr2.conf -i zeth.2
Dqemu_eth_setup.rst62 ./net-setup.sh
64 You can tweak the behavior of the ``net-setup.sh`` script. See various options
65 by running ``net-setup.sh`` like this:
69 ./net-setup.sh --help
/Zephyr-latest/include/zephyr/drivers/
Dwatchdog.h137 wdt_api_setup setup; member
169 return api->setup(dev, options); in z_impl_wdt_setup()
/Zephyr-latest/subsys/usb/device/class/
Dmsc.c340 static int mass_storage_class_handle_req(struct usb_setup_packet *setup, in mass_storage_class_handle_req() argument
343 if (setup->wIndex != mass_cfg.if0.bInterfaceNumber || in mass_storage_class_handle_req()
344 setup->wValue != 0) { in mass_storage_class_handle_req()
349 if (usb_reqtype_is_to_device(setup)) { in mass_storage_class_handle_req()
350 if (setup->bRequest == MSC_REQUEST_RESET && in mass_storage_class_handle_req()
351 setup->wLength == 0) { in mass_storage_class_handle_req()
357 if (setup->bRequest == MSC_REQUEST_GET_MAX_LUN && in mass_storage_class_handle_req()
358 setup->wLength == 1) { in mass_storage_class_handle_req()
368 setup->bmRequestType, setup->bRequest); in mass_storage_class_handle_req()
/Zephyr-latest/scripts/dts/python-devicetree/
Dsetup.py17 setuptools.setup(
/Zephyr-latest/drivers/usb/udc/
Dudc_common.c179 bi->setup = 1; in udc_ep_buf_set_setup()
603 bi->setup = 0; in udc_ep_enqueue()
861 struct net_buf *const setup, in udc_ctrl_alloc_data() argument
864 size_t size = udc_data_stage_length(setup); in udc_ctrl_alloc_data()
868 buf = udc_ctrl_alloc_stage(dev, setup, ep, size); in udc_ctrl_alloc_data()
903 net_buf_frag_add(data->setup, dout); in udc_ctrl_submit_s_out_status()
910 return udc_submit_ep_event(dev, data->setup, ret); in udc_ctrl_submit_s_out_status()
924 buf = udc_ctrl_alloc_data(dev, data->setup, USB_CONTROL_EP_IN); in udc_ctrl_submit_s_in_status()
929 return udc_submit_ep_event(dev, data->setup, ret); in udc_ctrl_submit_s_in_status()
939 buf = udc_ctrl_alloc_status(dev, data->setup, USB_CONTROL_EP_IN); in udc_ctrl_submit_s_status()
[all …]
/Zephyr-latest/snippets/xen_dom0/boards/
Drcar_h3ulcb_r8a77951_a57.overlay16 * Xen passes actual values for setup in domain device tree, but Zephyr
34 * Xen passes actual values for setup in domain device tree, but Zephyr
Drcar_salvator_xs.overlay16 * Xen passes actual values for setup in domain device tree, but Zephyr
34 * Xen passes actual values for setup in domain device tree, but Zephyr
/Zephyr-latest/samples/net/tftp_client/
DREADME.rst43 The easiest way to setup this sample application is to build and run it
45 This requires a small amount of setup described in :ref:`networking_with_eth_qemu`, :ref:`networkin…
80 Launch :command:`net-setup.sh` in net-tools:
84 net-setup.sh
/Zephyr-latest/include/zephyr/usb/
Dusb_ch9.h80 static inline bool usb_reqtype_is_to_host(const struct usb_setup_packet *setup) in usb_reqtype_is_to_host() argument
82 return setup->RequestType.direction == USB_REQTYPE_DIR_TO_HOST; in usb_reqtype_is_to_host()
91 static inline bool usb_reqtype_is_to_device(const struct usb_setup_packet *setup) in usb_reqtype_is_to_device() argument
93 return setup->RequestType.direction == USB_REQTYPE_DIR_TO_DEVICE; in usb_reqtype_is_to_device()
/Zephyr-latest/drivers/wifi/nrf_wifi/src/
Dwifi_mgmt.c429 bool setup, unsigned char flow_id) in nrf_wifi_twt_update_internal_state() argument
431 if (setup) { in nrf_wifi_twt_update_internal_state()
551 nrf_wifi_twt_us_to_float(twt_params->setup.twt_interval); in nrf_wifi_set_twt()
556 twt_info.ap_trigger_frame = twt_params->setup.trigger; in nrf_wifi_set_twt()
557 twt_info.is_implicit = twt_params->setup.implicit; in nrf_wifi_set_twt()
558 if (twt_params->setup.announce) { in nrf_wifi_set_twt()
565 twt_params->setup.twt_wake_interval; in nrf_wifi_set_twt()
570 twt_info.twt_wake_ahead_duration = twt_params->setup.twt_wake_ahead_duration; in nrf_wifi_set_twt()
636 twt_params.setup.trigger = twt_setup_info->info.ap_trigger_frame ? 1 : 0; in nrf_wifi_event_proc_twt_setup_zep()
637 twt_params.setup.implicit = twt_setup_info->info.is_implicit ? 1 : 0; in nrf_wifi_event_proc_twt_setup_zep()
[all …]
/Zephyr-latest/subsys/usb/device/class/audio/
Daudio.c528 struct usb_setup_packet *setup, in handle_fu_mute_req() argument
533 uint8_t ch = (setup->wValue) & 0xFF; in handle_fu_mute_req()
538 if (usb_reqtype_is_to_device(setup)) { in handle_fu_mute_req()
544 if (setup->bRequest == USB_AUDIO_SET_CUR) { in handle_fu_mute_req()
551 if (setup->bRequest == USB_AUDIO_GET_CUR) { in handle_fu_mute_req()
563 struct usb_setup_packet *setup, int32_t *len, uint8_t **data, in handle_fu_volume_req() argument
566 uint8_t ch = (setup->wValue) & 0xFF; in handle_fu_volume_req()
573 if (usb_reqtype_is_to_device(setup)) { in handle_fu_volume_req()
579 if (setup->bRequest == USB_AUDIO_SET_CUR) { in handle_fu_volume_req()
597 if (setup->bRequest == USB_AUDIO_GET_CUR) { in handle_fu_volume_req()
[all …]

12345678910>>...18