pl ack in tmtc

Dependencies:   FreescaleIAP SimpleDMA mbed-rtos mbed

Fork of COM_MNG_TMTC_SIMPLE_pl123 by shubham c

Flash.h

Committer:
pradeepvk2208
Date:
2016-04-02
Revision:
140:4feeb1163bb6
Parent:
52:0bd68655c651

File content as of revision 140:4feeb1163bb6:

#include "FreescaleIAP.h"

int strt_add = flash_size() - (4*SECTOR_SIZE);  
uint32_t flasharray[256+(3*1024)];
char *nativeflash = (char*)strt_add;

/*Writing to the Flash*/
void FCTN_CDMS_WR_FLASH(uint16_t j,uint32_t block)
{
    for(int64_t i=0;i<(256+(3*1024));i++)
    {
        flasharray[i]=nativeflash[i];
    }
    flasharray[j]=block;
    erase_sector(strt_add);
    program_flash(strt_add, (char*)&flasharray,4*(256+(1024*3)));
}
/*End*/

/*Reading from Flash*/
uint32_t FCTN_CDMS_RD_FLASH(uint16_t j)
{
    for(int64_t i=0;i<(256+(3*1024));i++)
    {
        flasharray[i]=nativeflash[i];
    }
    return flasharray[j];
}