You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
311 B
19 lines
311 B
/*
|
|
* eprom.h
|
|
*
|
|
* Created on: 11.02.2018
|
|
* Author: steffen
|
|
*/
|
|
|
|
#ifndef EPROM_H_
|
|
#define EPROM_H_
|
|
|
|
#include <avr/io.h>
|
|
#include <avr/interrupt.h>
|
|
|
|
void EEPROM_write(unsigned int uiAddress, unsigned char ucData);
|
|
unsigned char EEPROM_read(unsigned int uiAddress);
|
|
|
|
|
|
#endif /* ATMEGA8_DETECT_EPROM_H_ */
|