WRITE: One more PBP 2.60 Surprise ...


Closed Thread
Results 1 to 23 of 23

Hybrid View

  1. #1
    Join Date
    Jul 2003
    Location
    Colorado Springs
    Posts
    4,959


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Joe S. View Post
    I fixed all the 2.6 issues by reinstalling 2.5
    You should have a separate installation for every version that you own.

    MicroCode Studio recognizes the different versions and puts a Drop-Down box next to the "Compile" button.
    You can select which version you want to compile with.
    And when you want to play with 2.60 you can.

    The ArrayRead/ArrayWrite statements alone make 2.60 worth it.
    But there's so much more beyond that.

    My installations look something like this ...
    C:\PIC\
    C:\PIC\PBP245\
    C:\PIC\PBP246\
    C:\PIC\PBP247\
    C:\PIC\PBP250\
    C:\PIC\PBP250c\
    C:\PIC\PBP260b1\
    C:\PIC\PBP260\
    DT

  2. #2
    Join Date
    May 2004
    Location
    NW France
    Posts
    3,653


    Did you find this post helpful? Yes | No

    Unhappy

    Quote Originally Posted by Darrel Taylor View Post

    The ArrayRead/ArrayWrite statements alone make 2.60 worth it.
    But there's so much more beyond that.
    Hi, Darrel

    I lost two full days with the 2.60 Upgrade ...

    Hunting bugs

    Updating ALL the MPLAB existing projects ( MCS + µChip programmers = NOT so good, yeah ! ).

    PLUS some program mods due to ... a "little" bigger code produced. ( I've noted ~ 1%, 12F series seem to suffer a maximum ... )

    many of my program just were fitting into Prog memory of the pics !!!


    Sooooo, considering ALL the new functions offered ...

    The one I prefer is the " Memory usage gauge " at last accecpting to work with PBP ...
    The second is, AT LAST, the ability to call PBPL from the MPLAB Project window.


    This " MPLAB compatibility release " ( What it was looked for, at first ...) , to me , REALLY is far too expensive ...

    Deceived ??? ... YES, for sure !!!

    Alain
    ************************************************** ***********************
    Why insist on using 32 Bits when you're not even able to deal with the first 8 ones ??? ehhhhhh ...
    ************************************************** ***********************
    IF there is the word "Problem" in your question ...
    certainly the answer is " RTFM " or " RTFDataSheet " !!!
    *****************************************

  3. #3
    Join Date
    Sep 2005
    Location
    Campbell, CA
    Posts
    1,107


    Did you find this post helpful? Yes | No

    Default

    Is there anyone compiling a list of known bugs in 2.60? Like Darrel, I find the improvements worthwhile, but my "base" code is so large and uses pretty much every possible instruction (sometimes in weird ways) that I can't easily do a full regression test.

    But a known bug list would help me figure out what to test first.
    Charles Linquist

  4. #4
    Join Date
    May 2004
    Location
    NW France
    Posts
    3,653


    Did you find this post helpful? Yes | No

    Unhappy

    Hi, Charles

    +1 for the bugs list ...

    LOL ( Generally, the bug list is available with the next Upgrade ... eventually patch !!! )

    Alain
    ************************************************** ***********************
    Why insist on using 32 Bits when you're not even able to deal with the first 8 ones ??? ehhhhhh ...
    ************************************************** ***********************
    IF there is the word "Problem" in your question ...
    certainly the answer is " RTFM " or " RTFDataSheet " !!!
    *****************************************

  5. #5
    Join Date
    Jan 2009
    Location
    Miami, Florida USA
    Posts
    704


    Did you find this post helpful? Yes | No

    Default

    Ioannis,

    The PBP 2.5 manual in pdf or html format can be downloaded for free from the website melabs.com. So, I thought they probably posted the new manual so people can take a look at the new goodies before buying it.

    All,
    Yes, mecanique or whoever writes PBP is probably working in their buglist before releasing a patch with all the fixes. In the meanwhile, to avoid new headaches I will continue using my "old" PBP 2.5.

    Robert

  6. #6
    Join Date
    Sep 2005
    Location
    Campbell, CA
    Posts
    1,107


    Did you find this post helpful? Yes | No

    Default

    A good user-supported bug list would go a long way in making people comfortable with any upgrade. It would also be a good way for MELabs to get input. I'm certain that Darrel is doing a great job telling them what he finds, but he is only one person.

    The problem with the "bug-list" approach is that without proper moderation, it could easily degenerate into an alternate PBP forum.
    Charles Linquist

  7. #7
    Join Date
    Sep 2007
    Posts
    32


    Did you find this post helpful? Yes | No

    Default

    I've been considering a "known issues" list in the support section of our website. Would that help? Discussion could take place here on the forum, though I might need an email wakeup call occasionally. Once things are defined and confirmed, I could update the website with a summary.

    All submitted bug reports are investigated, but only a few are confirmed. The investigation process is part of my support responsibility, as is the listing of the issues.

    I believe there are currently two confirmed bugs in PBP 2.60.

    1.) The WRITE command issue described in this thread. The best workaround is the define that Darrel mentioned:

    Code:
    DEFINE WRITE_USED 1
    2.) The header files 16F1826.BAS and 16F1827.BAS have bad register aliases. Each file can be corrected with:

    Code:
    PORTL   VAR     PORTB
    PORTH   VAR     PORTA  ' PORTC invalid, change to PORTA
    TRISL   VAR     TRISB
    TRISH   VAR     TRISA  ' TRISC invalid, change to TRISA
    Charles Leo
    microEngineering Labs, Inc.
    http://melabs.com

  8. #8
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    4,166


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by rsocor01 View Post
    Ioannis,

    The PBP 2.5 manual in pdf or html format can be downloaded for free from the website melabs.com. So, I thought they probably posted the new manual so people can take a look at the new goodies before buying it.
    Robert
    There is a reason that people of Melabs do not publish the New Manual immediatly, as the hackers are ready to distribute the software. Without manual the new version is a little useless to most.

    Ioannis

  9. #9
    Join Date
    Sep 2007
    Posts
    32


    Did you find this post helpful? Yes | No

    Default

    The WRITE issue will always cause a compile error. There are no "silent" bugs in PBP 2.60 as far as I know. If you get a successful compile, you should be ok.

    I felt the same pain as Joe, at first. All of our sample programs had to be edited to change the "loop" label. I remember questioning the wisdom of making LOOP a reserved word, given that our published examples had used the word as a label for so many years. In the end, after much consideration, it was decided that the utility of the DO..LOOP structure would be worth the effort for the majority of users.

    The fact that 2.50C could easily be maintained alongside 2.60 was a factor in the decision. It seems that this capability should be made more apparent. I'll try to remedy this. Our policy has always been to never force users to upgrade and to always allow versions to coexist.

    This seems like a good spot to point out that users should always run the latest patch for their version of PBP. We release patches when we feel that the number of fixes warrants it. The reason there were A, B, and C patches for 2.50 is because we found issues that we felt obligated to fix. Version 2.50 was a major change in PBP and it took a while for the fallout to settle. If you continue to use version 2.50, I highly recommend that you go to our site and download the 2.50C patch.

    http://melabs.com/support/patches.htm

    Ioannis is correct about the manual. Sometimes it seems like the thieves have our latest version before I do. We have resisted license keys and registration servers for a long time, but I don't know if we can hold out much longer. It may be that the inconvenience of a required registration would be offset by other conveniences that it would allow, like a downloadable manual. I would like to thank all of you who have resisted the temptation to share illegally and encouraged others to purchase a legal copy. PBP would not exist if it weren't for so many honorable users.
    Charles Leo
    microEngineering Labs, Inc.
    http://melabs.com

  10. #10
    Join Date
    Aug 2006
    Location
    Look, behind you.
    Posts
    2,818


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Darrel Taylor View Post
    You should have a separate installation for every version that you own.

    MicroCode Studio recognizes the different versions and puts a Drop-Down box next to the "Compile" button.
    You can select which version you want to compile with.
    And when you want to play with 2.60 you can.

    The ArrayRead/ArrayWrite statements alone make 2.60 worth it.
    But there's so much more beyond that.

    My installations look something like this ...
    C:\PIC\
    C:\PIC\PBP245\
    C:\PIC\PBP246\
    C:\PIC\PBP247\
    C:\PIC\PBP250\
    C:\PIC\PBP250c\
    C:\PIC\PBP260b1\
    C:\PIC\PBP260\
    I probably will do that, ArrayRead/ArrayWrite, was why I bought the upgrade, haven't figured out how to use the yet, the DO Loop sort of ticked me off, have to edit all my old programs, honestly i didn't know that separate installations could reside together.
    If you do not believe in MAGIC, Consider how currency has value simply by printing it, and is then traded for real assets.
    .
    Gold is the money of kings, silver is the money of gentlemen, barter is the money of peasants - but debt is the money of slaves
    .
    There simply is no "Happy Spam" If you do it you will disappear from this forum.

Similar Threads

  1. Replies: 14
    Last Post: - 19th January 2012, 19:38
  2. PBP 2.60 & ADCON1 problem
    By bitbangerbob in forum mel PIC BASIC Pro
    Replies: 4
    Last Post: - 21st October 2009, 12:06
  3. Another PBP 2.60 Surprise ...
    By Acetronics2 in forum mel PIC BASIC Pro
    Replies: 4
    Last Post: - 25th August 2009, 15:08
  4. Need the code to write to a memory
    By Hamlet in forum General
    Replies: 0
    Last Post: - 20th August 2007, 00:22
  5. Changing declared variables names on the fly
    By jessey in forum mel PIC BASIC Pro
    Replies: 15
    Last Post: - 16th December 2006, 06:34

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts