1 Star 0 Fork 0

evan_xia_mew/RTSystem-alarm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
TestComponent.cpp 999 Bytes
一键复制 编辑 原始数据 按行查看 历史
evan_xia_mew 提交于 2022-01-02 14:33 . 4805
// {{{RME component 'Component View::TestComponent'
#if defined( PRAGMA ) && ! defined( PRAGMA_IMPLEMENTED )
#pragma implementation "RTSystem/TestComponent.h"
#endif
#include <RTSystem/TestComponent.h>
extern const RTActorClass ControlCenter;
#if USE_THREADS
void _rtg_createThreads( RTDebugger * debugger )
{
}
void _rtg_mapLogicalThreads( RTController * controller )
{
}
void _rtg_deleteThreads( void )
{
}
#else
void _rtg_mapLogicalThreads( RTController * controller )
{
}
#endif
const char * const default_argv[] = { "ControlCenter" };
static const RTSystemDescriptor _rtg_system =
{
&ControlCenter
#if USE_THREADS
, DEFAULT_MAIN_PRIORITY
, 20000
, DEFAULT_TIMER_PRIORITY
, 20000
, _rtg_createThreads
, _rtg_deleteThreads
#endif
, _rtg_mapLogicalThreads
};
int RTMain::entryPoint( int argc, const char * const * argv )
{
if( argc <= 0 )
{
argc = 1;
argv = default_argv;
}
_argc = argc;
_argv = argv;
_system = &_rtg_system;
return execute();
}
// }}}RME
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/evan-xia-mew/rtsystem-alarm.git
git@gitee.com:evan-xia-mew/rtsystem-alarm.git
evan-xia-mew
rtsystem-alarm
RTSystem-alarm
master

搜索帮助