Project

General

Profile

Statistics
| Revision:

root / branches / simulator / projects / libdragonfly / eeprom.c @ 891

History | View | Annotate | Download (2.26 KB)

1
/**
2
 * Copyright (c) 2007 Colony Project
3
 * 
4
 * Permission is hereby granted, free of charge, to any person
5
 * obtaining a copy of this software and associated documentation
6
 * files (the "Software"), to deal in the Software without
7
 * restriction, including without limitation the rights to use,
8
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
9
 * copies of the Software, and to permit persons to whom the
10
 * Software is furnished to do so, subject to the following
11
 * conditions:
12
 * 
13
 * The above copyright notice and this permission notice shall be
14
 * included in all copies or substantial portions of the Software.
15
 * 
16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
18
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
20
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23
 * OTHER DEALINGS IN THE SOFTWARE.
24
 **/
25

    
26

    
27
/**
28
 * @file eeprom.c
29
 * @brief EEPROM Driver
30
 *
31
 * Implementation of functions for the EEPROM, including
32
 * retrieving the robot's id from EEPROM.
33
 *
34
 * @author Colony Project, CMU Robotics Club
35
 **/
36

    
37
#include <avr/io.h>
38
#include "eeprom.h"
39

    
40
int eeprom_put_byte(unsigned int uiAddress, unsigned char ucData) {
41
    /* Wait for completion of previous write */
42
    while(EECR & (1<<EEWE));
43
    /* Set up address and data registers */
44
    EEAR = uiAddress;
45
    EEDR = ucData;
46
    /* Write logical one to EEMWE */
47
    EECR |= (1<<EEMWE);
48
    /* Start eeprom write by setting EEWE */
49
    EECR |= (1<<EEWE);
50
    
51
    return 0;
52
}
53

    
54
int eeprom_get_byte(unsigned int uiAddress, unsigned char *byte) {
55
    /* Wait for completion of previous write */
56
    while(EECR & (1<<EEWE));
57
    /* Set up address register */
58
    EEAR = uiAddress;
59
    /* Start eeprom read by writing EERE */
60
    EECR |= (1<<EERE);
61
    /* get data from data register */
62
    *byte=EEDR;
63
    
64
    return 0;
65
}
66

    
67
unsigned char get_robotid(void) {
68
    unsigned char ret;
69
    
70
    eeprom_get_byte(EEPROM_ROBOT_ID_ADDR, &ret);
71
    
72
    return ret;
73
}
74