博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
树莓派 log 日志 打印到 TXT
阅读量:6530 次
发布时间:2019-06-24

本文共 1037 字,大约阅读时间需要 3 分钟。

#include
#include
#include
#include
#include
#include
#include
int vAppLogPrintf( uint8_t *buff, uint32_t len ){ int f_log; f_log = open( "log.txt", O_CREAT|O_RDWR, 0755 ); if( f_log < 0 ) { return -1; } //将文件写入指针 移动到文件结尾 lseek( f_log, 0, SEEK_END ); //将消息缓冲区 写入到文件 write( f_log, buff, len ); close( f_log ); return 0;}int appLogPrintf(const char *fmt, ...){ va_list args; int r,printed_len; static char printk_buf[1024]; va_start(args, fmt); /* Emit the output into the temporary buffer */ printed_len = vsnprintf(printk_buf, sizeof(printk_buf), fmt, args); va_end(args); return vAppLogPrintf( printk_buf, printed_len );}int main( int argc, char **argv ){ time_t systemTimeNow; for( ;; ) { systemTimeNow = time( NULL );/* 获取当前系统时间 */ appLogPrintf( "hello,world,%s\n", ctime( &systemTimeNow ) ); printf( "hello,world,%s\n", ctime( &systemTimeNow ) ); sleep( 1 ); }}

 

 

转载于:https://www.cnblogs.com/suozhang/p/9407060.html

你可能感兴趣的文章
4-5-创建索引表-串-第4章-《数据结构》课本源码-严蔚敏吴伟民版
查看>>
java 操作 RabbitMQ 发送、接受消息
查看>>
go run main.go undefined? golang main包那点事
查看>>
前端进阶(13) - 搭建自己的前端脚手架
查看>>
数据挖掘(二):认识数据
查看>>
从零开始写一个npm包,一键生成react组件(偷懒==提高效率)
查看>>
Golang中的路由
查看>>
【期末考试季】JAVA进阶复习提纲
查看>>
Volley(二)—— 基本Request对象 & RequestQueue&请求取消
查看>>
2017中国系统架构师大会“盛装”来袭
查看>>
Google插件switchysharp的用法
查看>>
中国最强的人工智能学术会议来了
查看>>
Metasploit的射频收发器功能 | Metasploit’s RF Transceiver Capabilities
查看>>
Osmocom-BB中cell_log的多种使用姿势
查看>>
主库 归档 删除策略
查看>>
linux服务器多网卡bond
查看>>
Chrome 更新策略大变:优先安装 64 位版本
查看>>
《Linux从入门到精通(第2版)》——导读
查看>>
路过下载攻击利用旧版 Android 漏洞安装勒索软件
查看>>
《ANTLR 4权威指南》——1.2 运行ANTLR并测试识别程序
查看>>