Project

General

Profile

Statistics
| Revision:

root / branches / simulator / projects / simulator / libsim / eeprom.c @ 1006

History | View | Annotate | Download (285 Bytes)

1
#include "eeprom.h"
2
#include "util.h"
3

    
4
int eeprom_put_byte(unsigned int addr, unsigned char byte)
5
{
6
        UNIMPLEMENTED
7
        return -1;
8
}
9

    
10
int eeprom_get_byte(unsigned int addr, unsigned char *byte)
11
{
12
        UNIMPLEMENTED
13
        return -1;
14
}
15

    
16
unsigned char get_robotid(void)
17
{
18
        UNIMPLEMENTED
19
        return 0;
20
}
21