12 lines
185 B
C++
12 lines
185 B
C++
#include "../2025_include_user/Beep.h"
|
|
|
|
void Beep::init() {}
|
|
|
|
void Beep::start() {
|
|
DL_TimerG_startCounter(Beep_INST);
|
|
}
|
|
|
|
void Beep::stop() {
|
|
DL_TimerG_stopCounter(Beep_INST);
|
|
}
|