Home > other >  Fifo cameras with stm32 drive belt, why a
Fifo cameras with stm32 drive belt, why a

Time:10-04

Fifo data read out and then into the array, program will not run

CodePudding user response:

See if an array is out of memory

CodePudding user response:

The address of the array is already beyond the address range

CodePudding user response:

A 565 RGB two bytes, if 320 * 240 resolution, that would require the unsigned int shuzu [320], [240] 1000 bytes (KB)=1024 bytes (b), is about 150 KB, flash, is read-only memory, after power off, the main store what you write code, run process cannot be modified, can only be random reads, ram is an sram, sram is random access memory, the data will be lost when the power is cut off, mainly in the runtime variables in stored program, can read and write at random, the data of cameras to be modified, can only be an sram, E series is flash=512 k, ram=64 k, C series is flash=256 k, ram=48 k, STM32f103ZE only 48 k, not into,

CodePudding user response:

Is only 64 k

CodePudding user response:

The program died?
  • Related