PropView (the hump)
Every ViewPort example and tutorial works ok. When I do the recommended changes to my program ViewPort is acting like it doesn't exist. Com port ok, compiles without error. Loads without error. When I go to DSO I got buttkiss. When I go to configuration Viewport acts like I didn't put the vpshare statement in and doesn't key-up on shared variables. A "real-input" example is the microphone demo. OK what is that little arrow upward on the schematic with AC beside it mean? A demo or application where the Prop is instructed to generate its own outputs is all well and good but until I get this thing to display a real stimulus from the outside world I haven proven usfule yet. Does ViewPort not work at all with PST? I'm uploading my top (to this post) file in Spin. I haven't been on here for three years so I've forgotten how to archive all objects for a better upload. I looked for an archive in the save/save as buttons but didn't find it. I tried loading the compiled programs from ViewPort and from the prop tool. The PST works but ViewPort just doesn't like my code yet....or something

Comments
Edit: You cannot use any object or in your program that has anything to do with ports 30, 31 when using Viewport.
appropriate configuration strings. Hope this helps.
{{ File: MCP3208_vpDEMO.spin Author: Mike Rector, KF4IXM Version: 1.0 Copyright (c) Mike Rector, KF4IXM See end of file for Terms of Use. }} {{ This demo demonstrates the Microchip MCP3208 8 channel adc chip connected to the Parallax Propeller Demo Board. It uses the MCP3208.spin object Written by Chip Gracey and outputs the adc value (0-4096) of all 8 channels (labeled as 0-7) in Parallax Serial Terminal. The Datasheet of the MCP3208 can be found here: [URL]http://ww1.microchip.com/downloads/en/devicedoc/21298c.pdf[/URL] Connect both AGnd (pin 14) and DGnd (pin 9) of the MCP3208 to the Vss of the demo board. MODIFIED & RENAMED 9/23/2013 TO TEST ViewPort (Stan Cloyd) }} CON _clkmode = xtal1 + pll16x _xinfreq = 5_000_000 OBJ adc : "MCP3208" vp : "Conduit" CON diopin = 1 'both din and dout of the mcp3208 are connected to this pin on the prop demo board. clockpin = 0 'the clock pin of the mcp3208 is connected to this pin on the prop demo board. cspin = 2 'the chip select pin of the mcp 3208 is connected to this pin on the prop demo board. VAR long vbat, cbat, index pub View vp.config(string("var:vbat,cbat,index(min=0,max=1000)")) vp.config(string("lsa:view=vbat")) vp.config(string("dso:view=[vbat,cbat,index],bgnd=yellow,timescale=10ms")) vp.config(string("edit:index(default=500,mode=[scroll,text])")) vp.config(string("start:code")) vp.share(@vbat,@index) adc.start(diopin, clockpin, cspin, 255) 'Start the MCP3208 object and enable all 8 channels as 'single-ended inputs. repeat vbat:=adc.in(0) cbat:=adc.in(7)Please, if you're using a retractable USB cable, THROW it out! It does not comply with the USB standard and does not work! If you want more background on why it may appear to work initially when transferring very small amounts of data for short periods of time- but fails otherwise, please search the forums for my previous rants.
Hanno