kopia lustrzana https://github.com/Jean-MarcHarvengt/MCUME
39 wiersze
703 B
C
39 wiersze
703 B
C
/*
|
|
RP2350 flash driver
|
|
*/
|
|
|
|
#ifndef _FLASH_T_H_
|
|
#define _FLASH_T_H_
|
|
|
|
|
|
#include "pico.h"
|
|
#include "pico/stdlib.h"
|
|
#include "platform_config.h"
|
|
|
|
#define FLASH_SECTOR_SIZE 4096
|
|
#define HW_FLASH_STORAGE_TOP (0x400000) // Pico2 = 4MB flash
|
|
#ifdef FLASH_STORE_START
|
|
#define HW_FLASH_STORAGE_BASE (FLASH_STORE_START)
|
|
#else
|
|
#define HW_FLASH_STORAGE_BASE (0x200000) // Start at 2MB default
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
extern unsigned char * flash_start;
|
|
extern unsigned char * flash_end;
|
|
extern int flash_load(const char * filename);
|
|
extern int flash_load_bswap(const char * filename);
|
|
extern int flash_verify(unsigned char * buf,int size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|
|
|