外部中断
Into.c
#include <REGX52.H> void Into_Init() { IT0 = 1; //1:下降沿触发;0:低电平触发 IE0 = 0; EX0 = 1; EA = 1; PX0 = 1; // 触发优先级 } /* void Into_Routine(void) interrupt 0 { } */
Into.h
#ifndef __Into_H__ #define __Into_H__ void Into_Init(); #endif
标签:__,触发,函数库,普中板,Into,51,单片机,void From: https://www.cnblogs.com/lld76/p/17352094.html