Corrected object supported list.

This commit is contained in:
skarg
2007-10-16 22:46:28 +00:00
parent 22c227f326
commit 9ff27e38aa
5 changed files with 22 additions and 6 deletions
+7
View File
@@ -32,6 +32,8 @@
#include "npdu.h"
#include "txbuf.h"
#include "iam.h"
#include "device.h"
/* For porting to IAR, see:
http://www.avrfreaks.net/wiki/index.php/Documentation:AVR_GCC/IarToAvrgcc*/
@@ -114,13 +116,18 @@ static void NPDU_LED_On(void)
NPDU_Timer = 20;
}
extern float Present_Value[9];
void task_milliseconds(void)
{
static uint16_t counter = 0;
while (Timer_Milliseconds) {
Timer_Milliseconds--;
/* add other millisecond timer tasks here */
RS485_LED_Timers();
NDPU_Timers();
counter++;
Present_Value[0] = counter;
Present_Value[1] = counter;
}
}