remove debug statement

This commit is contained in:
Jay Robson 2024-08-26 13:20:45 +10:00
parent 9e606ae532
commit 31ab2fb132
1 changed files with 0 additions and 3 deletions

View File

@ -73,9 +73,6 @@ void Scheduler::finalise(std::ostream& dst) const {
unsigned amplitude = std::round(std::max(1.f / channels_in_use_max, 1.f/8.f) * 255); unsigned amplitude = std::round(std::max(1.f / channels_in_use_max, 1.f/8.f) * 255);
packet::Generic packet_start {.type=packet::Type::config, .config={.us_per_tick=us_per_tick, .amplitude=amplitude}}; packet::Generic packet_start {.type=packet::Type::config, .config={.us_per_tick=us_per_tick, .amplitude=amplitude}};
std::cerr << "amplitude = " << amplitude << std::endl;
packet_start.finalise(dst); packet_start.finalise(dst);
for(const packet::Generic& packet : packets) { for(const packet::Generic& packet : packets) {