Home
last modified time | relevance | path

Searched refs:at (Results 1 – 25 of 1717) sorted by relevance

12345678910>>...69

/Zephyr-latest/subsys/bluetooth/host/classic/
Dat.c20 static void next_list(struct at_client *at) in next_list() argument
22 if (at->buf[at->pos] == ',') { in next_list()
23 at->pos++; in next_list()
39 static void skip_space(struct at_client *at) in skip_space() argument
41 while (at->buf[at->pos] == ' ') { in skip_space()
42 at->pos++; in skip_space()
46 int at_get_number(struct at_client *at, uint32_t *val) in at_get_number() argument
50 skip_space(at); in at_get_number()
53 isdigit((unsigned char)at->buf[at->pos]) != 0; in at_get_number()
54 at->pos++, i++) { in at_get_number()
[all …]
Dat.h76 typedef int (*at_resp_cb_t)(struct at_client *at, struct net_buf *buf);
83 typedef int (*at_finish_cb_t)(struct at_client *at, enum at_result result,
85 typedef int (*parse_val_t)(struct at_client *at);
86 typedef int (*handle_parse_input_t)(struct at_client *at, struct net_buf *buf);
87 typedef int (*handle_cmd_input_t)(struct at_client *at, struct net_buf *buf,
103 void at_register(struct at_client *at, at_resp_cb_t resp,
105 void at_register_unsolicited(struct at_client *at, at_resp_cb_t unsolicited);
106 int at_get_number(struct at_client *at, uint32_t *val);
108 int at_parse_input(struct at_client *at, struct net_buf *buf);
110 int at_parse_cmd_input(struct at_client *at, struct net_buf *buf,
[all …]
Dhfp_hf.c129 struct bt_hfp_hf *hf = CONTAINER_OF(hf_at, struct bt_hfp_hf, at); in hf_slc_error()
147 at_register(&hf->at, resp, finish); in hfp_hf_send_cmd()
179 struct bt_hfp_hf *hf = CONTAINER_OF(hf_at, struct bt_hfp_hf, at); in brsf_handle()
216 struct bt_hfp_hf *hf = CONTAINER_OF(hf_at, struct bt_hfp_hf, at); in cind_handle_values()
301 struct bt_hfp_hf *hf = CONTAINER_OF(hf_at, struct bt_hfp_hf, at); in ag_indicator_handle_values()
424 struct bt_hfp_hf *hf = CONTAINER_OF(hf_at, struct bt_hfp_hf, at); in ring_handle()
478 struct bt_hfp_hf *hf = CONTAINER_OF(hf_at, struct bt_hfp_hf, at); in cmd_complete()
521 struct bt_hfp_hf *hf = CONTAINER_OF(hf_at, struct bt_hfp_hf, at); in slc_completed()
550 struct bt_hfp_hf *hf = CONTAINER_OF(hf_at, struct bt_hfp_hf, at); in cind_status_finish()
572 struct bt_hfp_hf *hf = CONTAINER_OF(hf_at, struct bt_hfp_hf, at); in cind_finish()
[all …]
/Zephyr-latest/dts/arm/nuvoton/npcm/
Dnpcm4.dtsi27 clock-frequency = <DT_FREQ_M(96)>; /* OFMCLK runs at 96MHz */
28 core-prescaler = <1>; /* CORE_CLK runs at 96MHz */
29 apb1-prescaler = <8>; /* APB1_CLK runs at 12MHz */
30 apb2-prescaler = <1>; /* APB2_CLK runs at 96MHz */
31 apb3-prescaler = <1>; /* APB3_CLK runs at 96MHz */
32 ahb6-prescaler = <1>; /* APB6_CLK runs at 96MHz */
33 fiu-prescaler = <1>; /* FIU_CLK runs at 96MHz */
34 i3c-prescaler = <1>; /* I3C_CLK runs at 96MHz */
/Zephyr-latest/arch/xtensa/include/
Dxtensa_mpu_priv.h119 .at.p.segment = 0, \
120 .at.p.mbz1 = 0, \
121 .at.p.access_rights = rights, \
122 .at.p.memory_type = memtype, \
123 .at.p.mbz2 = 0, \
278 return entry->at.p.access_rights; in xtensa_mpu_entry_access_rights_get()
290 entry->at.p.access_rights = access_rights; in xtensa_mpu_entry_access_rights_set()
303 return entry->at.p.memory_type; in xtensa_mpu_entry_memory_type_get()
315 entry->at.p.memory_type = memory_type; in xtensa_mpu_entry_memory_type_set()
351 uint8_t segment = entry->at.p.segment; in xtensa_mpu_entry_set()
[all …]
/Zephyr-latest/tests/bluetooth/at/src/
Dmain.c17 static struct at_client at; variable
53 at.buf_max_len = 140U; in ZTEST()
54 at.buf = buffer; in ZTEST()
59 at_register(&at, at_resp, NULL); in ZTEST()
66 zassert_equal(at_parse_input(&at, buf), 0, "Parsing failed"); in ZTEST()
/Zephyr-latest/samples/drivers/soc_flash_nrf/
DREADME.rst43 Test 1: Flash erase page at 0x82000
47 Attempted to write 1122 at 0x82000
51 Attempted to write aabb at 0x82004
55 Attempted to write abcd at 0x82008
59 Attempted to write 1234 at 0x8200c
64 Test 3: Flash erase (2 pages at 0x80000)
68 Attempted to write 1234 at 0x82000
72 Attempted to write aabb at 0x82004
76 Attempted to write abcd at 0x82008
80 Attempted to write 1122 at 0x8200c
[all …]
/Zephyr-latest/samples/subsys/fs/zms/
DREADME.rst14 #. A string representing an IP address: stored at id=1, data="192.168.1.1"
15 #. A binary blob representing a key/value pair: stored at id=0xbeefdead,
17 #. A variable (32bit): stored at id=2, data=cnt
58 Adding IP_ADDRESS 172.16.254.1 at id 1
59 Adding key/value at id beefdead
60 Adding counter at id 2
61 Adding Longarray at id 3
67 Adding IP_ADDRESS 172.16.254.1 at id 1
69 Adding key/value at id beefdead
71 Adding counter at id 2
[all …]
/Zephyr-latest/drivers/serial/
DKconfig.sifive22 This tells the driver to configure the UART port at boot, depending on
30 Port 0 RX Threshold at which the RX FIFO interrupt triggers.
37 Port 0 TX Threshold at which the TX FIFO interrupt triggers.
45 This tells the driver to configure the UART port at boot, depending on
53 Port 1 RX Threshold at which the RX FIFO interrupt triggers.
60 Port 1 TX Threshold at which the TX FIFO interrupt triggers.
DKconfig.stellaris12 available at the Texas Instrument LM3S6965 board.
21 This tells the driver to configure the UART port at boot, depending on
29 This tells the driver to configure the UART port at boot, depending on
37 This tells the driver to configure the UART port at boot, depending on
/Zephyr-latest/samples/drivers/counter/maxim_ds3231/
DREADME.rst32 Counter at 0x20001a58
48 second past the hour is written at 1000 ms local uptime::
50 Set 2019-07-19 06:00:00.034000000 Fri 200 at 34 ms past: 0
52 wrote sync 0: 1563516001 0 at 1000
60 read sync 0: 1563516002 0 at 2000
66 Alarm 1 flags 0 at 254034017: 0
67 Alarm 2 flags e at 252374400: 0
71 fire at that time on the current day-of-week. The minute-resolution
75 Set sec alarm 90 at 1563516007 ~ 2019-07-19 06:00:07 Fri 200: 5
76 Set min alarm flags f at 1563516007 ~ 2019-07-19 06:00:07 Fri 200: 7
[all …]
/Zephyr-latest/samples/philosophers/
DREADME.rst89 arch_cpu_idle () at zephyr/mainline/zephyr/arch/arm/core/cpu_idle.S:107
93 …* 1 Thread 537003160 (Name: idle 00, prio:40,useropts:1) arch_cpu_idle () at zephyr/mainl…
95 …: Philosopher 5, prio:-2,useropts:4) 0x08001404 in arch_irq_unlock (key=0) at zephyr/mainline/zeph…
97 …: Philosopher 4, prio:-1,useropts:4) 0x08001404 in arch_irq_unlock (key=0) at zephyr/mainline/zeph…
99 …: Philosopher 3, prio:0,useropts:4) 0x08001404 in arch_irq_unlock (key=0) at zephyr/mainline/zeph…
101 …: Philosopher 2, prio:1,useropts:4) 0x08001404 in arch_irq_unlock (key=0) at zephyr/mainline/zeph…
103 …: Philosopher 1, prio:2,useropts:4) 0x08001404 in arch_irq_unlock (key=0) at zephyr/mainline/zeph…
105 …: Philosopher 0, prio:3,useropts:4) 0x08001404 in arch_irq_unlock (key=0) at zephyr/mainline/zeph…
124 arch_cpu_idle () at zephyr/mainline/zephyr/arch/arm/core/cpu_idle.S:107
128 …* 2 Thread 537920592 (idle 00 UNKNOWN PRIO 40) arch_cpu_idle () at zephyr/mainline/zep…
[all …]
/Zephyr-latest/soc/nxp/mcx/mcxc/
DKconfig41 bool "Keep watchdog timer enabled at boot"
43 Leave SOC watchdog timer enabled at boot. The specific timeout
44 and clock configuration of the watchdog at boot is SOC dependent.
45 Note: if the watchdog timer is enabled at boot, the user will
49 # Enable watchdog configuration function if watchdog is left enabled at boot
/Zephyr-latest/boards/nxp/mimxrt595_evk/
Dmimxrt595_evk_mimxrt595s_f1.dts32 /* Reset section must always be at 0 and at least 1kB. */
40 /* On RT595 ADSP shared RAM is mapped at offset 0 on the code bus and at
/Zephyr-latest/samples/boards/nordic/nrf53_sync_rtc/
DREADME.rst13 Sample is using IPM driver and IPC HAL to produce events which occur at same time on
48 [00:00:00.306,915] <inf> main: IPC send at 10056 ticks
49 [00:00:00.356,903] <inf> main: IPC send at 11695 ticks
50 [00:00:00.406,921] <inf> main: IPC send at 13334 ticks
51 [00:00:00.456,939] <inf> main: IPC send at 14973 ticks
52 [00:00:00.506,958] <inf> main: IPC send at 16612 ticks
53 [00:00:00.556,976] <inf> main: IPC send at 18251 ticks
54 [00:00:00.606,994] <inf> main: IPC send at 19890 ticks
55 [00:00:00.657,012] <inf> main: IPC send at 21529 ticks
56 [00:00:00.707,031] <inf> main: IPC send at 23168 ticks
[all …]
/Zephyr-latest/drivers/sensor/ti/tmp112/
DKconfig21 bool "Allow to set extended mode at runtime"
28 bool "Allow to set conversion rate at runtime"
31 When set conversion rate can be set at runtime using sensor_attr_set
/Zephyr-latest/drivers/i2c/target/
DKconfig.eeprom12 bool "Set I2C Target EEPROM Address at Runtime"
15 Enable changing virtual I2C Target EEPROM device address at runtime
/Zephyr-latest/arch/x86/zefi/
DREADME.txt16 relocatable, and cannot be placed at specific locations in memory.
18 appropriate locations at startup, clear any zero-filled (BSS, etc...)
25 any platform top out at 200kb or so, and grub is at minimum about 5x
39 work fine and then fail inexplicably at runtime with a garbage
41 address is not generated at runtime by the C code here (it's address
51 in ELF get found via GOT and PLT tables that are populated at load
67 they ignore the preferred load address and will put the image at
80 that the EFI environment will load our image at an address that
84 at 0x10000. Even given collisions, this is probably tolerable, as we
86 sneak around EFI areas. But the Zephyr loader should at least detect
/Zephyr-latest/drivers/watchdog/
DKconfig.smartbond20 Watchdog timer generates NMI at value 0, and WDOG (SYS)
21 reset at <= -16. Timer can be frozen/resumed using
25 reset at value 0 and can not be frozen by Software.
DKconfig.xmc4xxx17 int "Default watchdog timeout to use at startup"
21 at startup.
/Zephyr-latest/doc/services/debugging/
Dgdbstub.rst71 * Execution should now be paused at :c:func:`gdb_init`.
92 The test also has a case to connect to the QEMU's GDB stub implementation (at a custom
142 earlier as a server through the TCP port ``-serial`` redirection at QEMU.
153 arch_gdb_init () at <ZEPHYR_BASE>/arch/x86/core/ia32/gdbstub.c:252
157 it is at :zephyr_file:`arch/x86/core/ia32/gdbstub.c`, line 252.
164 #0 arch_gdb_init () at <ZEPHYR_BASE>/arch/x86/core/ia32/gdbstub.c:252
165 #1 0x00104140 in gdb_init () at <ZEPHYR_BASE>/zephyr/subsys/debug/gdbstub.c:852
166 …#2 0x00109c13 in z_sys_init_run_level (level=INIT_LEVEL_PRE_KERNEL_2) at <ZEPHYR_BASE>/kernel/ini…
167 #3 0x00109e73 in z_cstart () at <ZEPHYR_BASE>/kernel/init.c:630
168 …#4 0x00104422 in z_prep_c (arg=0x1245bc <x86_cpu_boot_arg>) at <ZEPHYR_BASE>/arch/x86/core/prep_c…
[all …]
/Zephyr-latest/soc/nxp/kinetis/k6x/
DREADME.txt3 Although the K64F CPU has 64 kB of SRAM at 0x1FFF0000 (code space), it is not
4 used by the FSL FRDM K64F platform. Only the 192 kB region based at the
/Zephyr-latest/subsys/net/lib/http/
Dhttp_client.c175 static int on_url(struct http_parser *parser, const char *at, size_t length) in on_url() argument
180 print_header_field(length, at); in on_url()
184 req->internal.response.http_cb->on_url(parser, at, length); in on_url()
190 static int on_status(struct http_parser *parser, const char *at, size_t length) in on_status() argument
198 memcpy(req->internal.response.http_status, at, len); in on_status()
208 req->internal.response.http_cb->on_status(parser, at, length); in on_status()
214 static int on_header_field(struct http_parser *parser, const char *at, in on_header_field() argument
224 if (length >= len && strncasecmp(at, content_len, len) == 0) { in on_header_field()
228 print_header_field(length, at); in on_header_field()
232 req->internal.response.http_cb->on_header_field(parser, at, in on_header_field()
[all …]
/Zephyr-latest/tests/subsys/debug/gdbstub/
Dtest_breakpoints.gdbinit5 # break at test()
9 # break at main()
/Zephyr-latest/samples/application_development/code_relocation_nocopy/
Dlinker_arm_nocopy.ld22 /* On nRF5340, external flash is mapped in XIP region at 0x1000_0000. */
30 /* On stm32 OSPI, external flash is mapped in XIP region at address given by the reg property. */
37 /* On stm32 QSPI, external flash is mapped in XIP region at address given by the reg property. */
44 /* On stm32 XSPI, external flash is mapped in XIP region at address given by the reg property. */

12345678910>>...69