Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (285 Bytes)

1 906 bcoltin
#include "eeprom.h"
2 942 bcoltin
#include "util.h"
3 906 bcoltin
4
int eeprom_put_byte(unsigned int addr, unsigned char byte)
5
{
6 933 bcoltin
        UNIMPLEMENTED
7 942 bcoltin
        return -1;
8 906 bcoltin
}
9
10
int eeprom_get_byte(unsigned int addr, unsigned char *byte)
11
{
12 933 bcoltin
        UNIMPLEMENTED
13 942 bcoltin
        return -1;
14 906 bcoltin
}
15
16
unsigned char get_robotid(void)
17
{
18 933 bcoltin
        UNIMPLEMENTED
19 942 bcoltin
        return 0;
20 906 bcoltin
}