@@ 22,8 22,9 @@ namespace app
ApplicationBellBackgroundSounds::ApplicationBellBackgroundSounds(std::string name,
std::string parent,
StatusIndicators statusIndicators,
- StartInBackground startInBackground)
- : Application(std::move(name), std::move(parent), statusIndicators, startInBackground),
+ StartInBackground startInBackground,
+ uint32_t stackDepth)
+ : Application(std::move(name), std::move(parent), statusIndicators, startInBackground, stackDepth),
player{std::make_unique<bgSounds::BGSoundsPlayer>(this)}
{
bus.channels.push_back(sys::BusChannel::ServiceAudioNotifications);
@@ 27,7 27,8 @@ namespace app
ApplicationBellBackgroundSounds(std::string name = applicationBellBackgroundSoundsName,
std::string parent = "",
StatusIndicators statusIndicators = StatusIndicators{},
- StartInBackground startInBackground = {false});
+ StartInBackground startInBackground = {false},
+ uint32_t stackDepth = 4096 * 2);
~ApplicationBellBackgroundSounds();
sys::ReturnCodes InitHandler() override;