This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to store different formats of images into the internal flash of micro controller

can we store raw image files into internal flash of micro controllers ??

If yes, is it possible to send stored raw images to LCD using UART ??

Parents Reply Children
  • No.

    All you need to do is read in the file and send it byte at a time via the UART. Of course, you might want to include headers, envelopes, checksums etc. to detect error situations.

  • You'd have to unpack JPEG images to get data you could display.

    There should be many resources on the web describing imaging formats.

    Standard methods for storing "data" in memory can be applied here. You could create linkable objects, or express the data as a "C" array that the compiler can build. You could also create a file system to manage multiple data objects in large NAND images, etc.