Skip to content
  • This project
    • Loading...
  • Sign in

张亚玄 / STM32Test

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • STM32Test
  • Core
  • Src
  • Hardware
  • beep.c
  • 张亚玄's avatar
    add demo led key beep · 6f9940e3
    6f9940e3
    张亚玄 committed 2019-10-28 23:24:27 +0800
beep.c 303 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * beep.c
 *
 *  Created on: Oct 28, 2019
 *      Author: Yasin
 */

/* Includes ------------------------------------------------------------------*/
#include "beep.h"
#include "cmsis_os.h"

/**
 * crazy beep
 */
void BEEP_call()
{
  BEEP_Set();
  osDelay(300);
  BEEP_Reset();
}