⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timer.c

📁 ARM公司ATC培训的所有练习源码
💻 C
字号:
#include "timer.h"
#include "cortexm3.h"
#include "nvic.h"
#define MAGIC_VALUE 299999

#include <stdio.h>

/********** To be implemented *******************

void SysTick_init(void)
{
   //Load period (MAGIC_VALUE) into SysTickLoad
   
   //Enable Tick and Interrupt in SysTickCtrl, using masks from timer.h

}

void SysTickHandler(void)
{
   //Print a message here

}
*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -