temps.c
来自「Who to use ECAN network with dsPIC33F, M」· C语言 代码 · 共 18 行
C
18 行
/** *****************************************
TEMMPS.C
***************************************** **/
#include "p33fxxxx.h"
#include "timer.h"
#include "initialisation.h"
#include "constante.h"
#include "temps.h"
#include "variable_globale.h"
void tempo(double sec)
{
double t = sec * 1e3;
double temp;
temp = temps_timer1_ms;
while(temps_timer1_ms < temp + t);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?