2980792efd
e.g: Encapsulation Type: Bluetooth H4: add packet type dump support From: lib_dumpvbuffer(NULL, data, len); [ 1.567100] 0000 03 0c 00 ... [ 1.890100] 0000 0e 04 01 03 0c 00 ...... [ 1.890100] 0000 03 10 00 ... [ 1.892900] 0000 0e 0c 01 03 10 00 ff ff 8f fe db ff 5b 87 ............[. [ 1.892900] 0000 01 10 00 ... [ 1.894900] 0000 0e 0c 01 01 10 00 06 bb 22 06 0a 00 bb 22 ........"...." [ 1.894900] 0000 02 10 00 ... [ 1.901900] 0000 0e 44 01 02 10 00 ff ff ff 03 fe ff ff ff ff ff .D.............. [ 1.901900] 0010 ff ff f3 0f e8 fe 3f f7 83 ff 1c 00 00 00 61 f7 ......?.......a. [ 1.901900] 0020 ff ff 7f 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ [ 1.901900] 0030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ [ 1.901900] 0040 00 00 00 00 00 00 ...... To: struct iovec bufs[2]; bufs[0].iov_base = &type; bufs[0].iov_len = 1; bufs[1].iov_base = data; bufs[1].iov_len = len; lib_dumpvbuffer(NULL, bufs, 2); [ 3.711400] 0000 01 03 0c 00 .... [ 4.035400] 0000 04 0e 04 01 03 0c 00 ....... [ 4.035400] 0000 01 03 10 00 .... [ 4.037400] 0000 04 0e 0c 01 03 10 00 ff ff 8f fe db ff 5b 87 .............[. [ 4.037400] 0000 01 01 10 00 .... [ 4.039400] 0000 04 0e 0c 01 01 10 00 06 bb 22 06 0a 00 bb 22 ........."...." [ 4.039400] 0000 01 02 10 00 .... [ 4.046400] 0000 04 0e 44 01 02 10 00 ff ff ff 03 fe ff ff ff ff ..D............. [ 4.046400] 0010 ff ff ff f3 0f e8 fe 3f f7 83 ff 1c 00 00 00 61 .......?.......a [ 4.046400] 0020 f7 ff ff 7f 00 00 00 00 00 00 00 00 00 00 00 00 ................ [ 4.046400] 0030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ [ 4.046400] 0040 00 00 00 00 00 00 00 ....... Signed-off-by: chao.an <anchao@xiaomi.com> |
||
---|---|---|
.. | ||
libc | ||
libdsp | ||
libnx | ||
libxx | ||
README.txt |
README ====== This directory holds NuttX libraries. Libraries in NuttX are very special creatures. They have these properties: 1. They can be shared by both application logic and logic within the OS when using the FLAT build. 2. But in PROTECTED and KERNEL modes, they must be built differently: The copies used by applications and the OS cannot be the same. Rather, separate versions of libraries must be built for the kernel and for applications. 3. When used by the OS, some special care must be taken to assure that the OS logic does not disrupt the user's errno value and that the OS does not create inappropriate cancellation points. For example, sem_wait() is both a cancellation point and modifies the errno value. So within the FLAT build and without kernel version for the PROTECTED and KERNEL builds, the special internal OS interface nxsem_wait() must be used. Within libraries, the macro _SEM_WAIT() (as defined in include/nuttx/semaphore.h) is used instead. The definition of this macro accounts for the different usage environments. NOTE: The libraries under libs/ build differently from other NuttX components: There are no build-related files in the libs/ directory; it is simply a container for other well-known, individual library directories. The upper level Makefile logic is aware of the libraries within the libs/ container. The only real function of the libs/ directory is to prevent the top-level directory from becoming cluttered with individual libraries.