Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
TTaskGeneral.cpp
00001 00002 #include "TTaskGeneral.h" 00003 00004 TTaskGeneral::TTaskGeneral(int priority):TTask(priority) 00005 { 00006 m_userTask= new Directive(); 00007 } 00008 00009 TTaskGeneral::~TTaskGeneral() 00010 { 00011 if(m_userTask) { 00012 delete m_userTask; 00013 } 00014 return; 00015 } 00016 void TTaskGeneral::task(void) 00017 { 00018 00019 00020 m_userTask->exec(); 00021 }
Generated on Tue Jul 12 2022 19:04:22 by
1.7.2