/*
 * Copyright (c) 2026 Martin Javier Klöckner <mklockner@fi.uba.ar>
 *
 * See file `LICENSE` for full details
 */

#ifndef TASK_INC_TASK_BUZZER_H_
#define TASK_INC_TASK_BUZZER_H_

#ifdef __cplusplus
extern "C" {
#endif

extern uint32_t g_task_buzzer_cnt;
extern volatile uint32_t g_task_buzzer_tick_cnt;

void task_buzzer_init(void *parameters);
void task_buzzer_update(void *parameters);

#ifdef __cplusplus
}
#endif

#endif /* TASK_INC_TASK_BUZZER_H_ */
