Skip to content
Snippets Groups Projects
Commit e3d653d9 authored by Beat Küng's avatar Beat Küng
Browse files

md25: remove used source files BlockSysIdent.{cpp,hpp}

parent 3a0a896a
No related branches found
No related tags found
No related merge requests found
#include "BlockSysIdent.hpp"
BlockSysIdent::BlockSysIdent() :
Block(NULL, "SYSID"),
_freq(this, "FREQ"),
_ampl(this, "AMPL")
{
}
#include <controllib/block/Block.hpp>
#include <controllib/block/BlockParam.hpp>
class BlockSysIdent : public control::Block
{
public:
BlockSysIdent();
private:
BlockParamFloat _freq;
BlockParamFloat _ampl;
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment