W25Q FLASH Memory || Part 4 || How to Program Pages

W25Q FLASH Memory || Part 4 || How to Program Pages

ControllersTech

10 месяцев назад

4,116 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@user-ej4mk2tf8f
@user-ej4mk2tf8f - 19.11.2023 00:40

but when i start debug mode they ( local variables) do not appear under the variables TAB can you tell me why

Ответить
@user-ej4mk2tf8f
@user-ej4mk2tf8f - 19.11.2023 00:38

local variable shoul come up automaticaly uder the variable tab

Ответить
@user-ej4mk2tf8f
@user-ej4mk2tf8f - 09.11.2023 02:10

How to use Real Time variables in debug mode . you went through so quickly that i do not understand that how to add variables like live expression in the debug view, can you please explain it

Ответить
@user-ej4mk2tf8f
@user-ej4mk2tf8f - 29.10.2023 23:36

I copied exactly your code but it does not work on stm32f407 dis board why

Ответить
@user-ej4mk2tf8f
@user-ej4mk2tf8f - 29.10.2023 23:12

i tried read_ID code and it works on my stm32f407 discovery board but it does not show me any data when i run write_code. I chose PA0 pin as my input interrupt pin.

Ответить
@user-ej4mk2tf8f
@user-ej4mk2tf8f - 22.10.2023 02:45

for (uint16_t i=0; i<bytesremaining; i++)
{
tData[indx++] = data[i+dataPosition];
}


Sir, in the above code " data" is a pointer to the data array so why you are not putting an * on it's left side.?

Ответить
@user-ej4mk2tf8f
@user-ej4mk2tf8f - 20.10.2023 02:57

Dear sir can you please explain me that why you make an AND (&) operation with )0xFF with (memAddr>>16) in teh following code



if (No_Of_Blocks<512) // Chip Size<256Mb
{
tdata[0] = 0x03; // enable Read
tdata[1] = (memAddr>>16)&0xFF; // MSB of the memory Address
tdata[2] = (memAddr>>8)&0xFF;
tdata[3] = (memAddr)&0xFF; // LSB of the memory Address
}

Ответить
@mohamadsoleymani2408
@mohamadsoleymani2408 - 27.09.2023 21:34

Why are you trying to explain so complicatedly, you should choose the simplest way to explain. For example, sending and reading a byte, the recipient knows how to combine them.

Ответить
@ahmetyldz5674
@ahmetyldz5674 - 20.08.2023 11:22

Thanks a lot, you are doing a great job.

Ответить
@fadial-baghdadi6157
@fadial-baghdadi6157 - 20.08.2023 09:17

But how can we increase the flash memory of the processor. In this method, we learned how to use the external flash, but we did not work on how to include the main program on the external flash

Ответить