汇集网友智慧,解决技术难题
FLASH spi 内存映射 stm32h750 flash App
赞0
musich 发表于 2021-6-28 05:53 瞎猜一个, 是不是没有开启MPU保护
评论
2021-06-28
2021-06-27
点击图片添加到编辑器内容中
点击文件名将附件添加到文章中
提交
tyw
317个答案
天意无罪
287个答案
xch
212个答案
jjjyufan
202个答案
coody
191个答案
LcwSwust
158个答案
chunyang
135个答案
tpgf
113个答案
赞0
MPU保护了也没用,应该不是这个问题
评论
2021-06-28
赞0
评论
2021-06-28
赞0
{
QSPI_CommandTypeDef s_command;
QSPI_MemoryMappedTypeDef s_mem_mapped_cfg;
/* Configure the command for the read instruction */
s_command.InstructionMode = QSPI_INSTRUCTION_1_LINE;
s_command.Instruction = Fast_Read_Quad;
s_command.AddressMode = QSPI_ADDRESS_4_LINES;
s_command.AddressSize = QSPI_ADDRESS_24_BITS;
s_command.AlternateByteMode = QSPI_ALTERNATE_BYTES_NONE;
s_command.DataMode = QSPI_DATA_4_LINES;
s_command.DummyCycles = 26;
s_command.DdrMode = QSPI_DDR_MODE_DISABLE;
s_command.DdrHoldHalfCycle = QSPI_DDR_HHC_HALF_CLK_DELAY;
s_command.SIOOMode = QSPI_SIOO_INST_EVERY_CMD;
s_command.Address = 0;
s_command.NbData = 2;
/* Configure the memory mapped mode */
s_mem_mapped_cfg.TimeOutActivation = QSPI_TIMEOUT_COUNTER_DISABLE;
s_mem_mapped_cfg.TimeOutPeriod = 0;
return HAL_QSPI_MemoryMapped(&hqspi, &s_command, &s_mem_mapped_cfg);
}
评论
2021-06-27
您需要登录后才可以回复 登录 | 注册