tasks.hpp
来自「a program that generates a pulse-width m」· HPP 代码 · 共 22 行
HPP
22 行
// Main header file for listing tasks for use in other task
// definitions. This version has nothing in it but the operator
// interface.
// D.M. Auslander, 8/25/98
#ifndef TASKS_HPP
#define TASKS_HPP
#include <iostream.h>
#include <fstream.h>
#include <string.h>
#include "oper_int.hpp" // Only include this if an operator
// interface is being used
#ifdef ISR_SCHEDULING
void interrupt TimerISR(...);
#endif
void DisableInterrupt(void); // Prototypes
void EnableInterrupt(void);
#endif // TASKS_HPP
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?