/nrf52832-nimble/rt-thread/components/net/at/src/ |
H A D | at_cli.c | 63 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 D | memlog.c | 23 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 D | console_be.c | 20 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 D | ble_svc_uart.c | 56 /* 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 D | Kconfig | 304 bool "Using console for rt_kprintf" 309 int "the buffer size for console log printf" 313 string "the device name for console"
|
H A D | kservice.c | 1061 * 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 D | light_model.c | 5 #include "console/console.h"
|
H A D | testing.c | 9 #include "console/console.h"
|
/nrf52832-nimble/rt-thread/components/libc/compilers/newlib/ |
H A D | syscalls.c | 225 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 D | npl_shell.h | 50 * @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 D | ble_mesh.c | 8 #include "console/console.h"
|
H A D | main.c | 9 #include "console/console.h"
|
/nrf52832-nimble/packages/NimBLE-latest/docs/ble_setup/ |
H A D | ble_sync_cb.rst | 52 #include "console/console.h"
|
/nrf52832-nimble/rt-thread/libcpu/arm/s3c44b0/ |
H A D | serial.c | 44 * 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 D | main.c | 23 #include "console/console.h"
|
/nrf52832-nimble/packages/NimBLE-latest/apps/blemesh_light/src/ |
H A D | main.c | 23 #include "console/console.h"
|
/nrf52832-nimble/rt-thread/components/lwp/ |
H A D | lwp_syscall.c | 192 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 D | syslog.h | 82 #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 D | readme.txt | 4 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 D | readme.txt | 4 There is also a plain C console application doing the same and extended a bit.
|
/nrf52832-nimble/rt-thread/documentation/doxygen/ |
H A D | finsh.h | 17 * user command from console device, and then invokes system function or access
|
/nrf52832-nimble/rt-thread/components/finsh/ |
H A D | shell.c | 477 /* 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 D | printf.c | 177 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 D | pkg.yml | 34 - console
|
/nrf52832-nimble/packages/NimBLE-latest/apps/blehci/ |
H A D | pkg.yml | 26 - "@apache-mynewt-core/sys/console/stub"
|