MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / at_utils_send

Function at_utils_send

components/net/at/src/at_utils.c:59–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57 }
58}
59rt_weak rt_size_t at_utils_send(rt_device_t dev,
60 rt_off_t pos,
61 const void *buffer,
62 rt_size_t size)
63{
64 return rt_device_write(dev, pos, buffer, size);
65}
66rt_size_t at_vprintf(rt_device_t device, char *send_buf, rt_size_t buf_size, const char *format, va_list args)
67{
68 rt_size_t len = vsnprintf(send_buf, buf_size, format, args);

Callers 6

at_client_obj_sendFunction · 0.85
at_vprintfFunction · 0.85
at_vprintflnFunction · 0.85
at_vprintfcrFunction · 0.85
at_vprintflfFunction · 0.85
at_server_sendFunction · 0.85

Calls 1

rt_device_writeFunction · 0.85

Tested by

no test coverage detected