CLEON
Version 1
Cloud-Offloaded GPS Receiver
|
FLASH configuration. More...
#include "cleon_conf.h"
#include "app_define.h"
#include "sys_define.h"
#include "hal_define.h"
#include "fs_define.h"
Go to the source code of this file.
Functions | |
void | HAL_FLASH_Init (void) |
Initializing FLASH. | |
void | HAL_FLASH_Write (unsigned int uiSize, unsigned char *ptrucSource, unsigned char *ptrucDestination) |
Write data to internal FLASH. | |
void | HAL_FLASH_EraseSegment (unsigned long *ptrulDestination) |
Erase FLASH segement. | |
void | HAL_FLASH_EraseBank (unsigned long *ptrulDestination) |
Erase FLASH bank. | |
FLASH configuration.
Definition in file hal_flash.c.
void HAL_FLASH_EraseBank | ( | unsigned long * | ptrulDestination | ) |
Erase FLASH bank.
*ptrulDestination | - base address of FLAHS bank |
Definition at line 81 of file hal_flash.c.
void HAL_FLASH_EraseSegment | ( | unsigned long * | ptrulDestination | ) |
Erase FLASH segement.
*ptrulDestination | - base address of FLAHS segment |
Definition at line 63 of file hal_flash.c.
void HAL_FLASH_Init | ( | void | ) |
Initializing FLASH.
void |
Definition at line 21 of file hal_flash.c.
void HAL_FLASH_Write | ( | unsigned int | uiSize, |
unsigned char * | ptrucSource, | ||
unsigned char * | ptrucDestination | ||
) |
Write data to internal FLASH.
uiSize | - size of source data |
*ptrulSource | - base address of source data |
*ptrulDestination | - base address of FLASH destination |
Definition at line 40 of file hal_flash.c.