aboutsummaryrefslogtreecommitdiff
path: root/AT91SAM7S256/Source/d_ioctrl.c
blob: 25061725b6efc014d98660fa43089ced909e0a2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//
// Date init       14.12.2004
//
// Revision date   $Date:: 5-12-07 15:23                                     $
//
// Filename        $Workfile:: d_ioctrl.c                                    $
//
// Version         $Revision:: 2                                             $
//
// Archive         $Archive:: /LMS2006/Sys01/Main_V02/Firmware/Source/d_ioct $
//
// Platform        C
//


#include  <string.h>
#include  "stdconst.h"
#include  "m_sched.h"
#include  "d_ioctrl.h"
#include  "d_ioctrl.r"


void      dIOCtrlInit(void)
{
  IOCTRLInit;
}

void      dIOCtrlSetPower(UBYTE Power)
{
  INSERTPower(Power);
}

void      dIOCtrlSetPwm(UBYTE Pwm)
{
  INSERTPwm(Pwm);
}

void      dIOCtrlTransfer(void)
{
  I2CTransfer;
}

void      dIOCtrlExit(void)
{
  IOCTRLExit;
}