标签: c++ embedded mbed
我正在编写一个程序,该程序在mbed环境中使用自动收报器生成固定频率。我仍处于起步阶段,因此有点混乱。
答案 0 :(得分:2)
在attach行中,将&this更改为this。 this已经是一个指向自我的指针,您无需获取地址。
attach
&this
this
flipper.attach(callback(this, &Speaker::flip), 0.5/frequency);