Instant Interrupts - Revisited


Closed Thread
Results 1 to 40 of 773

Hybrid View

  1. #1
    Join Date
    Feb 2005
    Location
    Kolkata-India
    Posts
    563


    Did you find this post helpful? Yes | No

    Default About Steve

    Skimask pointed this out

    http://www.picbasic.co.uk/forum/show...0058#post60058


    BTW I would encourage everybody to have a look at DT's codes and try to figure out the amount of hard work and pure AI (I beleive he is an android built by microchip using surplus production ) he has put in.

    Meant to make our life easy and enlighten us, the mere mortals on PIC and PBP.
    Last edited by sougata; - 29th July 2008 at 19:28. Reason: Forgot to thank DT once again for his great contribution
    Regards

    Sougata

  2. #2
    Join Date
    Jun 2005
    Posts
    20


    Did you find this post helpful? Yes | No

    Default

    Sougata is right, and yes, Darrel, I am not worthy. Arthur C. Clarke said that any sufficiently advanced technology would be indistinguishable from magic; Instant Interrupts is magic, and Darrel is the resident magician.

    Thanks so much for creating it!

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


    Did you find this post helpful? Yes | No

    Default

    And Helen Keller said ...

    "Life is a succession of lessons which must be lived to be understood."

    Until you've had the problem, you won't know about them.

    Keep having problems.
    DT

  4. #4
    Join Date
    Jun 2008
    Posts
    3


    Did you find this post helpful? Yes | No

    Default Temp variables exceeding T7

    Hi Darrel, sorry my english.

    I need help for this message:

    Message[301] c:\..........asm 3074:MESSAGETemp variables exceeding T7)

    Tks.

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


    Did you find this post helpful? Yes | No

    Default

    When you have Complex formulas, or very Long IF/THEN comparisons, the PBP compiler generates additional (T)emporary System variables to keep track of the intermediate results.

    If those formulas are in the Interrupt Handler, it can cause big problems. But, if they are ONLY in the main program, they will NOT be a problem.

    There's no way for DT_INTS to know if they are in the Handler or the Main program, so it gives a Warning (message) to let you know to look and verify that they are NOT in the handlers.

    After you have VERIFIED that the formulas are NOT in the handlers. You can add this define to stop the Warning.
    Code:
    DEFINE  NO_T7_WARNING 1
    hth,
    DT

Similar Threads

  1. Clock using Instant Interrupts
    By PICpocket in forum mel PIC BASIC Pro
    Replies: 3
    Last Post: - 16th February 2009, 21:43
  2. DT instant interrupts with mister_e keypad
    By Tomexx in forum mel PIC BASIC Pro
    Replies: 5
    Last Post: - 26th November 2008, 20:02
  3. DT's Instant Interrupts trouble
    By Tomexx in forum mel PIC BASIC Pro
    Replies: 7
    Last Post: - 24th November 2008, 20:48
  4. Keypad and DT's Instant Interrupts
    By Homerclese in forum General
    Replies: 11
    Last Post: - 27th April 2007, 06:32
  5. Replies: 1
    Last Post: - 1st November 2006, 03:11

Members who have read this thread : 10

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

Tags for this Thread

Posting Permissions

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