摘要:
ubuntu下播放h264,h265文件 https://blog.csdn.net/rjszcb/article/details/112392487 EXPORT # if defined( MP4V2_EXPORTS )# define MP4V2_EXPORT __declspec(dllex 阅读全文
摘要:
扫盲:在github上新建一个仓库并上传本地工程 http://1ke.co/course/194 我自己新建了个项目,一步一步流程如下。 zhoudd@desay:~/桌面/mini_embed_driver_framework$ git init初始化空的 Git 版本库于 /home/zhou 阅读全文
摘要:
上一篇随笔,【嵌入式程序设计】——通用定时器设计(1),使用的链表来管理定时器,稍显复杂。 现在直接将链表简化成数组,清爽很多了,简洁就是美。 main.c #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <s 阅读全文
摘要:
嵌入式软件经常要用到定时器,不像windows/linux系统自带通用接口。现在就做个通用的,需要创建,删除,开启,停止等通用接口。 用链表来管理定时器。 main.c #include <stdio.h> #include <stdint.h> #include <stddef.h> #inclu 阅读全文
摘要:
发现intel curie平台的bsp部分驱动架构类似linux,今天花了一下午把curie bsp的驱动核心抽离出来了,并且做了几个小sample。 最小驱动框架核心代码 1、设备管理 device.c #include <stdio.h> #include <stddef.h> #include 阅读全文
摘要:
1、进入板子debug环境 (根据自己情况) 1) mount /dev/sda3 /root/disk2) minicom3) nfspc:sudo vi /etc/exports/root/disk/hi3516 *(rw,sync,no_root_squash,no_subtree_check 阅读全文
摘要:
公司最近在做视频直播的项目,我这里分配到对直播的视频进行录制,录制的方式是通过rtmpdump对rtmp的视频流进行录制 前置的知识 ffmpeg: 用于实现把录屏工具发出的视频和音频流,转换成我们需要的格式,然后发送到rtmp中转服务器上。 rtmpdump: 用于实现视频的录制,从rtmp的中转 阅读全文
摘要:
https://www.menie.org/georges/embedded/ 需要移植如下两个基础读写函数 int _inbyte(unsigned short timeout); void _outbyte(int c); xmodem.c /* * Copyright 2001-2010 Ge 阅读全文