Lines Matching full:client

141         rt_kprintf("AT client not initialized\n");  in server_cli_parser()
198 static void client_cli_parser(at_client_t client) in client_cli_parser() argument
211 if (client) in client_cli_parser()
213 /* backup client device RX indicate */ in client_cli_parser()
216 client_odev_rx_ind = client->device->rx_indicate; in client_cli_parser()
217 rt_device_set_rx_indicate(client->device, client_getchar_rx_ind); in client_cli_parser()
227 rt_kprintf("======== Welcome to using RT-Thread AT command client cli ========\n"); in client_cli_parser()
228 …i will forward your command to server port(%s). Press 'ESC' to exit.\n", client->device->parent.na… in client_cli_parser()
248 at_obj_exec_cmd(client, RT_NULL, "%.*s", cur_line_len, cur_line); in client_cli_parser()
259 /* restore client device RX indicate */ in client_cli_parser()
262 rt_device_set_rx_indicate(client->device, client_odev_rx_ind); in client_cli_parser()
272 rt_kprintf("No mem for AT cli client\n"); in client_cli_parser()
277 rt_kprintf("AT client not initialized\n"); in client_cli_parser()
287 rt_kprintf("Please input '<server|client [dev_name]>' \n"); in at()
301 else if (!strcmp(argv[1], "client")) in at()
304 at_client_t client = RT_NULL; in at() local
312 client = at_client_get(argv[2]); in at()
313 if (client == RT_NULL) in at()
315 rt_kprintf("input AT client device name(%s) error.\n", argv[2]); in at()
319 client_cli_parser(client); in at()
323 rt_kprintf("Not support AT client, please check your configure!\n"); in at()
328 rt_kprintf("Please input '<server|client [dev_name]>' \n"); in at()
333 MSH_CMD_EXPORT(at, RT-Thread AT component cli: at <server|client [dev_name]>);