摘要: 以上需求,是一位之前同事整理发给我的,要实现以上功能要用到哪些技术?从起点开始! 阅读全文
posted @ 2018-01-12 15:30 静观海月 阅读(179) 评论(0) 推荐(0) 编辑
  2021年9月3日
摘要: #ifndef _SQDATACHECK_H_ #define _SQDATACHECK_H_ #include "./inc/sq24tdata.h" #include "globals.h" namespace storetype { inline tSQ24Project & operator 阅读全文
posted @ 2021-09-03 16:22 静观海月 阅读(36) 评论(0) 推荐(0) 编辑
  2021年9月1日
摘要: #ifdef _CODEPASTE class Message { }; class MQ_Servant { public: MQ_Servant(size_t mq_size); // Message queue implementation operations. void put_i(con 阅读全文
posted @ 2021-09-01 13:05 静观海月 阅读(52) 评论(0) 推荐(0) 编辑
  2019年8月14日
摘要: #ifndef _THREADWORK_H_ #define _THREADWORK_H_ #pragma once struct cdata { struct impl; struct impl *_impl; volatile long _refcount; cdata(); void* __stdcall operator new(size_... 阅读全文
posted @ 2019-08-14 16:16 静观海月 阅读(284) 评论(0) 推荐(0) 编辑
  2019年5月8日
摘要: #pragma once #ifndef _PID_H_ #define _PID_H_ #include #include using namespace std; struct kpid { float kp, ki, kd; long i; }; struct eval { float minrate; float maxrate; float avgrat... 阅读全文
posted @ 2019-05-08 09:14 静观海月 阅读(432) 评论(0) 推荐(0) 编辑
  2019年4月19日
摘要: 飞凌 FET6818核心板 解压编译器: tar zxvf arm-cortex_a9_eabi-4.7-eglibc-2.18.tar.gz -C/opt 设置默认编译环境: vi /etc/profile 在打开的profile文件中加入编译器路径: export PATH=/opt/arm-c 阅读全文
posted @ 2019-04-19 09:18 静观海月 阅读(610) 评论(0) 推荐(0) 编辑
  2019年1月12日
摘要: 窗口居中: adjustSize(); 阅读全文
posted @ 2019-01-12 17:08 静观海月 阅读(202) 评论(0) 推荐(0) 编辑
  2019年1月10日
摘要: ADSP-BF512 :Low Power Blackfin with Consumer Devices Connectivity The ADSP-BF512 is the low cost entry point into the Blackfin Processor family. It of 阅读全文
posted @ 2019-01-10 15:27 静观海月 阅读(219) 评论(0) 推荐(0) 编辑
  2018年12月24日
摘要: /*遍历整棵树*/ int top = -1; INode_T* vtack[50]; while(NULL!=pNode||top!=-1) { if(NULL!=pNode) { // 前序处理 vtack[++top] = pNode; pNode... 阅读全文
posted @ 2018-12-24 08:48 静观海月 阅读(207) 评论(0) 推荐(0) 编辑
  2018年12月5日
摘要: 阅读全文
posted @ 2018-12-05 19:17 静观海月 阅读(546) 评论(0) 推荐(0) 编辑
摘要: void ItemSplitter::printpdf(const QString& fileName){ QPrinter printer_html(QPrinter::ScreenResolution); printer_html.setPageSize(QPrinter::A4); printer_html.setOutputFormat(QPrinter::Pd... 阅读全文
posted @ 2018-12-05 16:25 静观海月 阅读(509) 评论(0) 推荐(0) 编辑