Graphics and fsrw--- object exceeds by xxx bytes
mosquito56
Posts: 387
I am looking to upgrade my project to use some graphics however every time I add object "FSRW" I get object exceeds run time memory.
Is anyone using a graphics·program with the sd card reader? Does anyone have a stripped·down version of
any graphics program and the fsrw they can share?
Any ideas?
Thanks
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
·······
······· "What do you mean, it doesn't have any tubes?"
······· "No such thing as a dumb question" unless it's on the internet
Post Edited (mosquito56) : 5/15/2009 7:29:12 PM GMT
Is anyone using a graphics·program with the sd card reader? Does anyone have a stripped·down version of
any graphics program and the fsrw they can share?
Any ideas?
Thanks
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
·······
······· "What do you mean, it doesn't have any tubes?"
······· "No such thing as a dumb question" unless it's on the internet
Post Edited (mosquito56) : 5/15/2009 7:29:12 PM GMT
Comments
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
My Prop Info&Apps: ·http://www.rayslogic.com/propeller/propeller.htm
Once the drivers are running you can use SD card driver to boot a new SPIN-image without the PASM part of the drivers but which still has the SPIN-part of the drivers. That saves up to 2kB for each PASM section.
Of course the SD driver has to be modified slightly, as it should not stop all COGs before rebooting. (Actually it's not a real reboot like it's done after a reset - All COGs not stopped by the SD driver simply continue running). I tried this in my CogOS, where I can start any program that does not need all COGs and give a time how long it should run. After that time the left-over watchdog-Cog reboots. Nice feature to create demo-loops of different programs ;o)
Once my memory module is done I will think about nice concepts to suspend COGs and HUB-RAM to external RAM and have a general concept for driver parameter-blocks and SPIN-code overloads.
· bitmap_base = $2000
· display_base = $5000
change display to $2000 and eliminate the bitmap?
···· These drivers are a little to much for me. I bought the hydra book but I should have got it in Chinese. Would have gotten same info but saved a few bucks. No I don't Read Chinese.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
·······
······· "What do you mean, it doesn't have any tubes?"
······· "No such thing as a dumb question" unless it's on the internet
········
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
http://www.propgfx.co.uk/forum/·home of the PropGFX Lite
·
Also, you don't need the:
gr.copy(display_base)
line anymore.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
My Prop Info&Apps: ·http://www.rayslogic.com/propeller/propeller.htm
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
·······
······· "What do you mean, it doesn't have any tubes?"
······· "No such thing as a dumb question" unless it's on the internet
········