mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
9 lines
133 B
C++
9 lines
133 B
C++
#include "BlockSysIdent.hpp"
|
|
|
|
BlockSysIdent::BlockSysIdent() :
|
|
Block(NULL, "SYSID"),
|
|
_freq(this, "FREQ"),
|
|
_ampl(this, "AMPL")
|
|
{
|
|
}
|