Home
last modified time | relevance | path

Searched full:console (Results 1 – 25 of 75) sorted by relevance

123

/nrf52832-nimble/rt-thread/components/net/at/src/
H A Dat_cli.c63 rt_device_t console; in at_cli_init() local
73 console = rt_console_get_device(); in at_cli_init()
74 if (console) in at_cli_init()
77 odev_rx_ind = console->rx_indicate; in at_cli_init()
78 rt_device_set_rx_indicate(console, console_getchar_rx_ind); in at_cli_init()
87 rt_device_t console; in at_cli_deinit() local
90 console = rt_console_get_device(); in at_cli_deinit()
91 if (console && odev_rx_ind) in at_cli_deinit()
94 rt_device_set_rx_indicate(console, odev_rx_ind); in at_cli_deinit()
123 /* setup server device as console device */ in server_cli_parser()
/nrf52832-nimble/rt-thread/components/utilities/logtrace/
H A Dmemlog.c23 rt_device_t console; in memlog_flush() local
25 console = rt_console_get_device(); in memlog_flush()
26 if (!console) return; in memlog_flush()
30 rt_device_write(console, 0, outbuf, readsz); in memlog_flush()
/nrf52832-nimble/rt-thread/components/utilities/ulog/backend/
H A Dconsole_be.c20 static struct ulog_backend console; variable
49 console.output = ulog_console_backend_output; in ulog_console_backend_init()
51 ulog_backend_register(&console, "console", RT_TRUE); in ulog_console_backend_init()
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/services/bleuart/src/
H A Dble_svc_uart.c56 /* Pointer to a console buffer */
59 /* ble uart console */
191 * Reads console and sends data over BLE
280 * BLEuart console initialization
321 /* back uart console old indicate callback */ in bleuart_init()
327 /* Reads console and sends data over BLE */ in bleuart_init()
/nrf52832-nimble/rt-thread/src/
H A DKconfig304 bool "Using console for rt_kprintf"
309 int "the buffer size for console log printf"
313 string "the device name for console"
H A Dkservice.c1061 * This function returns the device using in console.
1063 * @return the device using in console or RT_NULL
1072 * This function will set a device as console device.
1073 * After set a device to console, all output of rt_kprintf will be
1076 * @param name the name of new console device
1078 * @return the old console device handler
1087 /* find new console device */ in rt_console_set_device()
1093 /* close old console device */ in rt_console_set_device()
1097 /* set new console device */ in rt_console_set_device()
1109 /* empty console output */ in rt_hw_console_output()
[all …]
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/mesh/src/
H A Dlight_model.c5 #include "console/console.h"
H A Dtesting.c9 #include "console/console.h"
/nrf52832-nimble/rt-thread/components/libc/compilers/newlib/
H A Dsyscalls.c225 rt_device_t console; in _write_r() local
227 console = rt_console_get_device(); in _write_r()
228 if (console) return rt_device_write(console, -1, buf, nbytes); in _write_r()
/nrf52832-nimble/packages/NimBLE-latest/porting/npl/rtthread/include/nimble/
H A Dnpl_shell.h50 * @param shell_name Module name to be entered in shell console.
59 * shell console.
/nrf52832-nimble/packages/NimBLE-latest/apps/blemesh_models_example_2/src/
H A Dble_mesh.c8 #include "console/console.h"
H A Dmain.c9 #include "console/console.h"
/nrf52832-nimble/packages/NimBLE-latest/docs/ble_setup/
H A Dble_sync_cb.rst52 #include "console/console.h"
/nrf52832-nimble/rt-thread/libcpu/arm/s3c44b0/
H A Dserial.c44 * This function is used to display a string on console, normally, it's
103 to be polite with serial console add a line feed in rt_serial_putc()
/nrf52832-nimble/packages/NimBLE-latest/apps/blemesh_shell/src/
H A Dmain.c23 #include "console/console.h"
/nrf52832-nimble/packages/NimBLE-latest/apps/blemesh_light/src/
H A Dmain.c23 #include "console/console.h"
/nrf52832-nimble/rt-thread/components/lwp/
H A Dlwp_syscall.c192 rt_device_t console = rt_console_get_device(); in sys_log() local
194 if (console) rt_device_write(console, -1, log, size); in sys_log()
/nrf52832-nimble/rt-thread/components/utilities/ulog/syslog/
H A Dsyslog.h82 #define LOG_CONS 0x02 /* log on the console if errors in sending */
85 #define LOG_NOWAIT 0x10 /* don't wait for console forks: DEPRECATED */
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/apps/http/makefsdata/
H A Dreadme.txt4 There is also a plain C console application doing the same and extended a bit.
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/apps/httpd/makefsdata/
H A Dreadme.txt4 There is also a plain C console application doing the same and extended a bit.
/nrf52832-nimble/rt-thread/documentation/doxygen/
H A Dfinsh.h17 * user command from console device, and then invokes system function or access
/nrf52832-nimble/rt-thread/components/finsh/
H A Dshell.c477 /* set console device as shell device */ in finsh_thread_entry()
480 rt_device_t console = rt_console_get_device(); in finsh_thread_entry() local
481 if (console) in finsh_thread_entry()
483 finsh_set_device(console->parent.name); in finsh_thread_entry()
/nrf52832-nimble/rt-thread/examples/libc/
H A Dprintf.c177 fd = open("/dev/console", O_WRONLY, 0); in libc_dprintf()
192 fd = open("/dev/console", O_WRONLY, 0); in libc_fdopen()
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/services/bleuart/
H A Dpkg.yml34 - console
/nrf52832-nimble/packages/NimBLE-latest/apps/blehci/
H A Dpkg.yml26 - "@apache-mynewt-core/sys/console/stub"

123