Daten.h


1
/*********************************************************************
2
 *              General Procedures Libary Source Code
3
 *********************************************************************
4
 * FileName:        GenProcs.c
5
 * Dependencies:    GenProcs.h
6
 * Processor:       PIC18F4685
7
 * Complier:        Microchip C18
8
 *
9
 *
10
 * Author               Date    Comment
11
 *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
12
 * Stephan Krause       17/8/12 Version 1.0 - Initial Release
13
 *********************************************************************/
14
15
#ifndef DATEN_H
16
#define DATEN_H
17
18
19
#include <p18f4685.h>
20
21
#include "GlobalDefinitions.h"
22
#include "EEprom.h"
23
#include "gLCD.h"
24
25
26
/*********************************************************************
27
 * Function:    
28
 *
29
 * Overview:            
30
 *                  
31
 *
32
 * PreCondition:  None
33
 *
34
 * Input:      None
35
 *
36
 * Output:      None
37
 *
38
 * Side Effects:  
39
 ********************************************************************/
40
char Daten_Init(void);
41
42
43
/*********************************************************************
44
 * Function:    
45
 *
46
 * Overview:    Aus EEPROM wird LokName[] geladen
47
 *          Vom FR wird v_soll geladen        
48
 *                  
49
 *
50
 * PreCondition:  None
51
 *
52
 * Input:      None
53
 *
54
 * Output:      None
55
 *
56
 * Side Effects:  
57
 ********************************************************************/
58
void Daten_GetLokData(char mode, unsigned int LokID, unsigned int ListenIndex);
59
60
61
62
#endif