Shop OBEX P1 Docs P2 Docs Learn Events
Soon to be new sticky — Parallax Forums

Soon to be new sticky

Paul BakerPaul Baker Posts: 6,351
edited 2008-09-12 20:42 in Propeller 1
I've decided to create another sticky (possibly tacked onto an existing sticky) for Propeller Utilities.

It will be dedicated to programs people have created to aid with Propeller development, utilitiies such as GEAR and PASD. I would like people to suggest utilities since I can't remember all of them. The only requirement is that it is functional enough to be utilitarian. In other words, there won't be any still in development, and not working yet projects linked in the sticky.

▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Paul Baker
Propeller Applications Engineer

Parallax, Inc.

Post Edited (Paul Baker (Parallax)) : 9/12/2008 1:28:22 AM GMT

Comments

  • Cluso99Cluso99 Posts: 18,069
    edited 2008-09-12 02:00
    @Paul - I've asked before...

    Can we have a sticky which can be for development code not yet ready for prime time. The rules simply being that it has a brief description and a link to the thread.

    This sticky can be maintained by us, not you. i.e. It must be unlocked. If that is not possible, then just a sticky pointing to a thread called "Propeller Utilities (works in progress)" with the first post containing the rules (suggestion below)

    RULES of this THREAD:
     
    Your post to this thread should be limited to the following:
     
    1. The Title of your project
    2. A short description of your project
    3. A link to the thread containing discussions and code for your project
    



    Might I suggest that your sticky could contain numerous pointers to threads such as.... (sort of an index to related threads)

    Learning PASM - Tutorials, etc

    Learning SPIN - Tutorials, etc

    Propeller·Utilities (Complete)

    Propeller Utilities (works in progress)

    There woud be other Top Level pointers in your sticky to other Topics uch as

    Add-on Hardware Development

    ... SD Cards

    ... Gyros

    ... etc

    Anyway, I hope you get the idea
  • jazzedjazzed Posts: 11,803
    edited 2008-09-12 02:17
    @Paul,
    Hippy's Spin disassembler is a good candiate. I use it and PASD occasionally. PST is my console tool of choice. PC-terminal code with the emulation features should be listed for those who like it. Also the Propeller Logic Analyzer you wrote is worth adding (wish you could add pin display/hide selection features though). I'm sure there are others ....

    ▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
    --Steve
  • TimmooreTimmoore Posts: 1,031
    edited 2008-09-12 02:20
    Phils Clean program http://forums.parallax.com/forums/default.aspx?f=25&p=1&m=278123
    I use this for almost all development
  • StefanL38StefanL38 Posts: 2,292
    edited 2008-09-12 10:09
    hello,

    I want to suggest something too.

    It's not a tool as a complete software but to implement inside the SPIN-code

    It's simply code-examples how to INSERT codelines to display debug-information
    in several ways:

    1.) via serial connection in combination with PST.EXE

    2.) to the TV_Text-object

    3.) Debug-interaction via PropTerminal

    I think of small programs that are REALLY executable and showing code-templates
    that beginners can see how to output the debug-information

    a.) fixed text
    b.) values of variables even well fomatetted like

    OBJ
      debug : "FullDuplexSerial"
    
      debug.start ....
    
      repeat i from 0 to 10
        byte[i] := WhatDoIKnow
    
        debug.str(string("byte[noparse][[/noparse]"))
        debug.dec(i)
        debug.str(string("]=))
        debug.dec(byte[i])
        debug.tx(13)
    
        'showing a line "byte(5)=1078"
    [/i][/i]
    



    or even some useful functions that makes this easier
    something like
    - PUB SendDebugStrVarValue(p_str,p_VarValue)
    - PUB SendDebugStrArrayVarValue(p_str,p_index,p_VarValue)

    which contain the details of the codelines above

    best regards

    Stefan
  • PraxisPraxis Posts: 333
    edited 2008-09-12 19:08
    Good idea Paul, any update on when you will do this?

    Cheers
  • Paul BakerPaul Baker Posts: 6,351
    edited 2008-09-12 20:42
    Within the next 2 weeks, I can always be requested to add something at a later date if a utility isn't "prime time" when I create the sticky.

    ▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
    Paul Baker
    Propeller Applications Engineer

    Parallax, Inc.
Sign In or Register to comment.