Shop OBEX P1 Docs P2 Docs Learn Events
Greed — Parallax Forums

Greed

[Deleted User][Deleted User] Posts: 0
edited 2006-11-19 03:45 in Propeller 1
Hi,
·Just for the heck of it (just have to wreck stuff) I was trying to see how many cogs I could get on line at yhe same time doing big stuff, here's what i started with. I tried bigger stacks , some more code ,but only one display will work at a time ?

Thank's Brian


CON
· _clkmode = xtal1 + pll16x
· _xinfreq = 5_000_000

VAR
·long stack0[noparse][[/noparse]20]
·long stack1[noparse][[/noparse]20]


obj

· textscreen_to:"tv_text_demo"
· termscreen_to:"vga_text_demo"

pub Start
· cognew(textscreen_to.start,@stack0)
· cognew(termscreen_to.start,@stack1)
·

Comments

  • AndreLAndreL Posts: 1,004
    edited 2006-11-19 03:40
    Each video generator needs to ouput to its own pingroup. I haven't tried these objects with the next vga driver, but how are you physically connecting video output?

    Andre'
  • [Deleted User][Deleted User] Posts: 0
    edited 2006-11-19 03:45
    Andre,
    They are on the demo board. From the wiring schematic I don't think that there should be a conflict , I think each cog has it's own video . Don't really need to make it do this , just seeing how much it could do.

    Thank's Brian
Sign In or Register to comment.