- 博客(206)
- 资源 (16)
- 收藏
- 关注
原创 GB28181 sip会话建立过程
实际场景中支持gb28181的摄像头集成了媒体服务器和作为媒体流发送者,cvr集成了sip服务器和作为媒体流接收者。服务器通过三方呼叫控制建立媒 体服务器与媒体流发送者之间的媒体流信令过程,代理方式建立 媒体流接收者与媒体服务器之间的媒体流信令过程,服务器断开媒体服务器与媒体流发送者之间的媒体流信令 过程。为媒体流接收者断开与媒体服务器之间 的媒体流信令过程,通过三方呼叫控制建立媒体服务器和媒体流发送者之间的。体中描述了媒体流发送者发送媒体流的。中描述了媒体服务器接收媒体流的。服务器向媒体流发送者发送。
2025-03-27 19:26:55
841
原创 riscv load/store address misalign exception
riscv misalign address access
2023-07-10 23:17:40
1211
原创 linux version magic
busybox 1.36仍然没有支持 IGNORE只能关闭。finit_module flags会带IGNORE。
2023-06-21 16:18:42
204
原创 vmware 自动备份
自动保护功能设置界面如图,可以自己设置自动保护的周期。例如,如果您设置自动保护功能每小时拍摄快照,并在 5 分钟后将虚拟机关机,那么下次自动保护快照将在虚拟机重新开机 55 分钟后进行,而不考虑虚拟机关机的时间长度。达到最大自动保护快照数后, Workstation Pro 每次拍摄新的自动保护快照时会删除最早的自动保护快照。保存好的快照会在管理器里看到线性的图,如果想要到恢复到某一个时候的快照,只需双击即可,恢复快照之后,线性图该快照后面的快照节点都会丢失,所以恢复的时候还是要谨慎点。
2023-03-29 20:01:08
1228
原创 交叉编译aarch64 strace
https://download.youkuaiyun.com/download/shenhuxi_yu/75552450http://资源链接1. ./bootstrap2. sudo apt-get install gcc-4.9-aarch64-linux-gnu3. sudo apt-get install g++-4.9-aarch64-linux-gnu4. ./configure CC=aarch64-linux-gnu-gcc-4.9 --target=aarch64-linux-gnu --ho
2022-01-12 19:27:50
363
原创 zephyr 调度时机
Threads — Zephyr Project Documentationhttps://docs.zephyrproject.org/latest/reference/kernel/threads/index.html?highlight=preemptive#thread-prioritiesScheduling — Zephyr Project Documentationhttps://docs.zephyrproject.org/latest/reference/kernel/scheduling
2021-12-17 15:43:22
463
原创 linux mem overcommit
linux overcommit 机制会欺骗进程,承诺分配给他的内存空间,只有当这些page被真正touch到的时候才通过缺页机制拿到真正的物理内存。以下摘自kernel docThe Linux kernel supports the following overcommit handling modes0 - Heuristic overcommit handling. Obvious overcommits of address space are refused. Used fo.
2021-11-03 10:17:12
269
原创 libc 获取文件/文件夹/存储设备 size
libc获取文件大小用stat系统调用即可strcut statst_size代表文件sizest_mode文件类型与文件权限#include <sys/stat.h>DESCRIPTIONThe <sys/stat.h> header shall define the structure of the data returned by the functions fstat(), lstat(), and stat().The stat structu.
2021-11-01 20:29:16
516
原创 repo sync后discard commit找回
repo sync -c拉的代码没有创建branch, git push的时候无法push所以repo sync .了一下,commit 被丢弃了从网上查找到方法git refloggit reflog 是存储在本地的一份你所有HEAD(不同branch)操作序列。与git log区别,git log则是你当前branch的提交历史b1693cd HEAD@{0}: commit: ver 7 fix eeprom access errora2c0663 HEAD@{1}: comm
2021-11-01 16:01:11
1324
原创 protobuf 文档
c++ protobuf 使用教程protocol-buffers c++ tutorialhttps://developers.google.com/protocol-buffers/docs/cpptutorialc++ protoc编译器安装protoc installProtocol Buffers - Google's data interchange format - protobuf/README.md at master · protocolbuffers/protobufhttps://g
2021-10-27 22:16:40
382
原创 视频信号AHD信号解析
https://www.maximintegrated.com/en/design/technical-documents/tutorials/7/734.htmlmm以上链接中有解释一些模拟视频信号基本概念顺序扫描与交叉扫描TV line与分辨率的区别BT601 BT656 区别摄像头接口MIPI DVP常见视频信号AHD波形解析Color Burst 与 ...
2021-10-15 16:24:26
12477
原创 linux socket can code flow
read(socket_fd)[ 809.672693] [<c0648c64>] (__skb_wait_for_more_packets) from [<c0649d0c>] (__skb_recv_datagram+0x8c/0xa0)[ 809.672714] [<c0649d0c>] (__skb_recv_datagram) from [&...
2021-04-26 11:47:20
872
原创 linux uart hw flowcontrl
aarch32 linux4.19基本处理流程如下cts的状态改变的中断使能,发生cts assert,uart中断更新uart port的状态位hw_stoppped 且停止发送,cts状态转变位deassert时状态恢复重新开始发送cts assert 底层停止发送的方式是关闭TXfifo empty中断(the TxFIFO Empty interrupt to alert the software to fill-up the TxFIFO again),uart port 停止发送,s
2021-04-17 15:42:24
613
转载 ARM: How to Write a Bootloader
ARM: How to Write a BootloaderInformation in this knowledgebase article applies to:Keil MDK armcc or armclangQUESTIONHow can I write a bootloader correctly?ANSWERA bootloader is a piece of code which allows user application code to be updated.
2021-02-27 16:47:56
367
翻译 scala 类与对象的区别
class C defines a class, just as in Java or C++.object O creates a singleton object O as instance of some anonymous class; it can be used to hold static members that are not associated with instances of some class.object O extends T makes the object O a.
2021-01-21 16:22:42
252
火焰图采集脚本与图形化工具
2023-11-09
iperf arm linux 网络测速
2020-12-24
linux_armv7_cross_wifi_tools.tar.gz
2020-12-01
device-tree-compiler_1.4.7-3ubuntu2_amd64.deb
2019-11-24
busybox-1.30.0.tar.bz2
2019-11-24
TCP_FILE_TRAN
2014-05-30
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人