E
easyarm
Guest
want to store a pic *.jpg in ARM 7 ( philips LPC 2106) mcu?
does any one has any ideas of how to do this?
does any one has any ideas of how to do this?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
It's just binary data. Store it as any data array. The exact instructionswant to store a pic *.jpg in ARM 7 ( philips LPC 2106) mcu?
does any one has any ideas of how to do this?
how do u convert a pic to 1/0?"easyarm" <easyarm@on_earth.com> wrote in message
news:brbnf7$m7c239@imsp212.netvigator.com...
want to store a pic *.jpg in ARM 7 ( philips LPC 2106) mcu?
does any one has any ideas of how to do this?
It's just binary data. Store it as any data array. The exact instructions
depend on your set-up.
How are you going to use the stored data?
HTH
Tauno Voipio
tauno voipio @ iki fi
It is already. Any data (even this I am writing) is stored in 1s andwant to store a pic *.jpg in ARM 7 ( philips LPC 2106) mcu?
does any one has any ideas of how to do this?
It's just binary data. Store it as any data array. The exact instructions
depend on your set-up.
how do u convert a pic to 1/0?
"to store" is general. It does not necessarily need a disk.I do not wish to store diskonchip but the mcu.
want to store a pic *.jpg in ARM 7 ( philips LPC 2106) mcu?
does any one has any ideas of how to do this?
It's just binary data. Store it as any data array. The exact
instructions
depend on your set-up.
how do u convert a pic to 1/0?
It is already. Any data (even this I am writing) is stored in 1s and
0s
Maybe tell us your compiler setup ?
Easy with gnu:
file: pic.S
.data
.globl my_pic
my_pic: .incbin "mypic.jpg"
No compile and link with your programs.
I do not wish to store diskonchip but the mcu.
"to store" is general. It does not necessarily need a disk.
---
42Bastian
Do not email to bastian42@yahoo.com, it's a spam-only account
Use <same-name>@epost.de instead !
He's referring to my little LPC210x development board:42Bastian Schick <bastian42@yahoo.com> wrote in message
news:3fd97d85.6755263@News.CIS.DFN.DE...
want to store a pic *.jpg in ARM 7 ( philips LPC 2106) mcu?
does any one has any ideas of how to do this?
It's just binary data. Store it as any data array. The exact
instructions
depend on your set-up.
how do u convert a pic to 1/0?
It is already. Any data (even this I am writing) is stored in 1s and
0s
Maybe tell us your compiler setup ?
Easy with gnu:
file: pic.S
.data
.globl my_pic
my_pic: .incbin "mypic.jpg"
No compile and link with your programs.
I do not wish to store diskonchip but the mcu.
"to store" is general. It does not necessarily need a disk.
---
42Bastian
Do not email to bastian42@yahoo.com, it's a spam-only account
Use <same-name>@epost.de instead !
can u suggest a color LCD ( smaller- I do not know about its size) that can
be connect to a philipz LPC 2106 (like Leon's schematic)?
It is already. Any data (even this I am writing) is stored in 1s and
0s
Maybe tell us your compiler setup ?
Easy with gnu:
file: pic.S
.data
.globl my_pic
my_pic: .incbin "mypic.jpg"
No compile and link with your programs.
why there is no compile or link necessary?
Only if you are uploading via the serial port. If you are using a JTAGIt is already. Any data (even this I am writing) is stored in 1s and
0s
Maybe tell us your compiler setup ?
Easy with gnu:
file: pic.S
.data
.globl my_pic
my_pic: .incbin "mypic.jpg"
No compile and link with your programs.
why there is no compile or link necessary?
it has to be *.hex form before loading it up to philips mcu.
correct me if I am wrong.
Sorry, a typo I often do: Missing the 'w'No compile and link with your programs.
why there is no compile or link necessary?
easyarm wrote:
It is already. Any data (even this I am writing) is stored in 1s and
0s
Maybe tell us your compiler setup ?
Easy with gnu:
file: pic.S
.data
.globl my_pic
my_pic: .incbin "mypic.jpg"
No compile and link with your programs.
why there is no compile or link necessary?
it has to be *.hex form before loading it up to philips mcu.
correct me if I am wrong.
Only if you are uploading via the serial port. If you are using a JTAG
interface it's a standard executable created by the linker.
Leon
master student or phd student able to implement dram with arm board. I thinkTake a step back and analyse the problem.
I am assuming that you want to store the image(s) in ROM. Work out the
size
of you image. If you have some space to throw away, store the image as a
bitmap, much easier to decode. There is plenty of programs out there that
will spin a bmp into a hex format suitable for MCU's.
If space is limited, maybe you could look at some kind of simple
compression, such as RLE. Not quite as good as jpg, but much better than
bmp. You could even manufacture your own RLE algorithm. Failing that, i
guess jpg is an option, but it will take some work to decode, unless there
is some free source available.
"Leon Heller" <aqzf13@dsl.pipex.com> wrote in message
news:3fda9122$0$28692$cc9e4d1f@news.dial.pipex.com...
easyarm wrote:
It is already. Any data (even this I am writing) is stored in 1s and
0s
Maybe tell us your compiler setup ?
Easy with gnu:
file: pic.S
.data
.globl my_pic
my_pic: .incbin "mypic.jpg"
No compile and link with your programs.
why there is no compile or link necessary?
it has to be *.hex form before loading it up to philips mcu.
correct me if I am wrong.
Only if you are uploading via the serial port. If you are using a JTAG
interface it's a standard executable created by the linker.
Leon