From 177da6065a94d2286bcc2a100a3455ff902dfa12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nima=20Askari=20-----=20=D9=86=DB=8C=D9=85=D8=A7=20=D8=B9?= =?UTF-8?q?=D8=B3=DA=A9=D8=B1=DB=8C?= Date: Tue, 12 May 2020 08:34:44 +0430 Subject: [PATCH] Delete eeprom.h --- eeprom.h | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 eeprom.h diff --git a/eeprom.h b/eeprom.h deleted file mode 100644 index e08d33c..0000000 --- a/eeprom.h +++ /dev/null @@ -1,42 +0,0 @@ -#ifndef __EEPROM_H -#define __EEPROM_H - -/* - Author: Nima Askari - WebSite: http://www.github.com/NimaLTD - Instagram: http://instagram.com/github.NimaLTD - Youtube: https://www.youtube.com/channel/UCUhY7qY1klJm1d2kulr9ckw - - Version: 1.1.0 - - - Reversion History: - (1.1.0) - Add f0 devices. - - (1.0.0) - First Release. - -*/ -#ifdef __cplusplus - extern "C" { -#endif - -#include -#include "gpio.h" - -//################################################################################################################ -bool EE_Format(void); -bool EE_Read(uint16_t VirtualAddress, uint32_t* Data); -bool EE_Write(uint16_t VirtualAddress, uint32_t Data); -bool EE_Reads(uint16_t StartVirtualAddress, uint16_t HowManyToRead, uint32_t* Data); -bool EE_Writes(uint16_t StartVirtualAddress, uint16_t HowManyToWrite, uint32_t* Data); -uint16_t EE_GetSize(void); -uint16_t EE_GetMaximumVirtualAddress(void); -//################################################################################################################ - -#ifdef __cplusplus -} -#endif - -#endif