终于把433通讯整出来了,不过程序空间快不够了要好好优化一下

This commit is contained in:
2021-10-15 22:06:08 +08:00
parent 36917d148f
commit 230f928a0f
52 changed files with 9483 additions and 6084 deletions
+18
View File
@@ -0,0 +1,18 @@
/*
* flash.h
*
* Created on: 2021年10月15日
* Author: wuwenfeng
*/
#ifndef FLASH_H_
#define FLASH_H_
#include "main.h"
#define STM32_FLASH_BASE 0x08007c00
#define FLASH_WAITETIME 100
void STMFLASH_Write(uint32_t WriteAddr,uint32_t *pBuffer,uint32_t NumToWrite);
void STMFLASH_Read(uint32_t ReadAddr,uint32_t *pBuffer,uint32_t NumToRead);
#endif /* FLASH_H_ */