beep.c
373 Bytes
/*
* beep.c
*
* Created on: Oct 28, 2019
* Author: Yasin
*/
/* Includes ------------------------------------------------------------------*/
#include "beep.h"
#include "tim.h"
/**
* crazy beep
*/
void BEEP_call()
{
BEEP_Set();
HAL_TIM_Base_Start_IT(&htim6);
}
/**
* close crazy beep
*/
void BEEP_close()
{
BEEP_Reset();
}