X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcpu%2Favr%2Fdrv%2Fflash_avr.h;h=b75a38b8b3ef1f80654116b8a0dbd0865abc1566;hb=b8af8dc682989ac879ddf67675ce3c11f05df4ad;hp=5115d10befde2431238b2b82c6808b5401ce028d;hpb=e2f204cc87c855c1bca96b96b9ebb71397a818b9;p=bertos.git diff --git a/bertos/cpu/avr/drv/flash_avr.h b/bertos/cpu/avr/drv/flash_avr.h index 5115d10b..b75a38b8 100644 --- a/bertos/cpu/avr/drv/flash_avr.h +++ b/bertos/cpu/avr/drv/flash_avr.h @@ -30,60 +30,22 @@ * * --> * - * \brief Self programming routines (interface). - * - * \version $Id$ * \author Francesco Sacchi * \author Daniele Basile + * + * \brief AVR Internal flash read/write driver. */ -#ifndef DRV_FLASH_AVR_H -#define DRV_FLASH_AVR_H - -#include -#include - - -/** - * Definition of type for avr flash module. - */ -typedef uint16_t avr_page_t; - - -/** - * FlashAvr KFile context structure. - */ -typedef struct KFileFlashAvr -{ - KFile fd; ///< File descriptor. - - /** - * Current buffered page. - */ - avr_page_t curr_page; - - -} KFileFlashAvr; - - - -/** - * ID for FlashAvr - */ -#define KFT_FLASHAVR MAKE_ID('F', 'L', 'A', 'V') - -/** - * Convert + ASSERT from generic KFile to KFileFlashAvr. - */ -INLINE KFileFlashAvr * KFILEFLASHAVR(KFile *fd) -{ - ASSERT(fd->_type == KFT_FLASHAVR); - return (KFileFlashAvr *)fd; -} - +#ifndef FLASH_AVR_H +#define FLASH_AVR_H -void flash_avr_init(struct KFileFlashAvr *fd); +#include "cfg/cfg_emb_flash.h" +#if !CONFIG_FLASH_DISABLE_OLD_API + /* For backwards compatibility */ + #define FlashAvr Flash + #define flash_avr_init(fls) flash_init(fls); +#endif /* !CONFIG_FLASH_DISABLE_OLD_API */ #endif /* DRV_FLASH_AVR_H */