当前位置:   article > 正文

STM32F103C8T6 内部 FLASH读写_stm32f103c8t6读写内部flash

stm32f103c8t6读写内部flash

u16	people_id[50] = { 1, 2, 3 };    /* 假设公司最多50人 */
u16	people_clock_t[50];             /* 每个人签到次数 */
u16	people_num = 2;                 /* 人数 */


#define DEBUG
#define FLASH_SIZE 64                   /* 所选MCU的FLASH容量大小(单位为K) */
#if FLASH_SIZE < 256
#define SECTOR_SIZE 1024                /* 字节 */
#else
#define SECTOR_SIZE 2048                /* 字节 */
#endif
FLASH_Status Debug;
/* Flash 写函数 以8 bit 方式写入 */
void FLASH_WriteData( uint32_t startAddress, uint16_t *writeData, uint16_t countToWrite )
{
	uint16_t	i;
	uint32_t	offsetAddress;  /* 偏移地址 */
	uint32_t	sectorPosition; /* 扇区位置 */
	uint32_t	sectorStartAddress;
	if ( startAddress < FLASH_BASE || ( (startAddress + countToWrite) >= (FLASH_BASE + 1024 * FLASH_SIZE) ) )
	{
		return;                 /* 非法地址 */
	}
	/* 解锁写保护 */
	FLASH_Unlock();

	/* 计算去掉0X08000000后的实际偏移地址 */
	offsetAddress = startAddress - FLASH_BASE;
	/* 计算扇区地址 */
	sectorPosition = offsetAddress / SECTOR_SIZE;
	/* 对应扇区的首地址 */
	sectorStartAddress = sectorPosition * SECTOR_SIZE + FLASH_BASE;

	FLASH_ClearFlag( FLASH_FLAG_EOP | FLASH_FLAG_PGERR | FLASH_FLAG_WRPRTERR );

	/* 擦除这个扇区 */
	Debug = FLASH_ErasePage( sectorStartAddress );
#ifdef DEBUG
	if ( Debug != FLASH_COMPLETE )
		printf( "扇区擦除失败\n\n" );
#endif
	for ( i = 0; i < countToWrite; i++ )
	{
		Debug = FLASH_ProgramHalfWord( startAddress, writeData[i] );
#ifdef DEBUG
		if ( Debug != FLASH_COMPLETE )
			printf( "扇区写失败\n\n" );
#endif
		startAddress = startAddress + 2;
	}
	FLASH_Lock(); /*上锁写保护 */
}


u16 STMFLASH_ReadHalfWord( u32 faddr )
{
	return(*(vu16 *) faddr);
}


/* 16位数据读取 */
void FLASH_ReadMoreData( u32 ReadAddr, u16 *pBuffer, u16 NumToRead )
{
	u16 i;
	for ( i = 0; i < NumToRead; i++ )
	{
		pBuffer[i]	= STMFLASH_ReadHalfWord( ReadAddr );    /* 读取2个字节. */
		ReadAddr	+= 2;                                   /* 偏移2个字节. */
	}
}


void write_to_flash( void )
{
	u16	shuju[102];
	u16	c = 0;
	memset( shuju, 0, sizeof(shuju) );
	for ( c = 0; c < 50; c++ )
	{
		shuju[c] = people_id[c];                /*复制 */
	}
	for ( c = 0; c < 50; c++ )
	{
		shuju[50 + c] = people_clock_t[c];      /*复制 */
	}
	shuju[100] = people_num;


	FLASH_WriteData( 0x08004000, shuju, 101 );      /* 写入 */
}


void read_from_flash( void )
{
	u16	shuju[102];
	u16	c = 0;

	memset( shuju, 0, sizeof(shuju) );
	FLASH_ReadMoreData( 0x08004000, shuju, 101 );


	for ( c = 0; c < 50; c++ )
	{
		people_id[c] = shuju[c];                /* 读取 */
	}
	for ( c = 0; c < 50; c++ )
	{
		people_clock_t[c] = shuju[50 + c];      /*复制 */
	}
	people_num = shuju[100];
}



  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116

main

void main(void)
{
     write_to_flash();
	read_from_flash();
    while(1)
    {

    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/512735
推荐阅读
相关标签
  

闽ICP备14008679号