摘要:
以上需求,是一位之前同事整理发给我的,要实现以上功能要用到哪些技术?从起点开始! 阅读全文
摘要:
#ifndef _SQDATACHECK_H_ #define _SQDATACHECK_H_ #include "./inc/sq24tdata.h" #include "globals.h" namespace storetype { inline tSQ24Project & operator 阅读全文
摘要:
#ifdef _CODEPASTE class Message { }; class MQ_Servant { public: MQ_Servant(size_t mq_size); // Message queue implementation operations. void put_i(con 阅读全文
摘要:
#ifndef _THREADWORK_H_ #define _THREADWORK_H_ #pragma once struct cdata { struct impl; struct impl *_impl; volatile long _refcount; cdata(); void* __stdcall operator new(size_... 阅读全文
摘要:
#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... 阅读全文
摘要:
飞凌 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 阅读全文
摘要:
窗口居中: adjustSize(); 阅读全文
摘要:
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 阅读全文
摘要:
/*遍历整棵树*/ int top = -1; INode_T* vtack[50]; while(NULL!=pNode||top!=-1) { if(NULL!=pNode) { // 前序处理 vtack[++top] = pNode; pNode... 阅读全文