Problems setting config bits on 10F222 part


Results 1 to 10 of 10

Threaded View

  1. #7
    Join Date
    Oct 2005
    Location
    Sweden
    Posts
    3,612


    Did you find this post helpful? Yes | No

    Default Re: Problems setting config bits on 10F222 part

    This is from memory and I've got no way of doublechecking right now but if you want to get to the bottom of it you can always check/verify/try.

    In the .inc file the __CONFIG is enclosed within an ASM/ENDASM block, it gets passed to the assembler as is and it is indented, as it should be.

    When you comment it out of the .inc file and put it in your source file you need to tell the compiler to pass that line to the assembler (just as is the case with the .inc file). You do this by either enclosing it within a ASM/ENDASM block or using the single line ASM directive, @, just as you tried.

    What I suspect happened in your case is that there is no space between the @ and the __CONFIG so __CONFIG ended up in column 1, hence the error (or is it actually only a warning?).

    So, comment it out of the .inc file, then in your source
    Code:
    ASM
       __CONFIG _MCLRE_OFF & _CP_OFF & _WDT_ON & _IOFSCS_8MHZ   ; <---- Note the intendation
    ENDASM
    or
    Code:
    @   __CONFIG _MCLRE_OFF & _CP_OFF & _WDT_ON & _IOFSCS_8MHZ   ; <---- Again, note the intendation
    /Henrik.
    Last edited by HenrikOlsson; - 19th September 2016 at 14:41.

Similar Threads

  1. how to loop thru setting port bits?
    By wdmagic in forum mel PIC BASIC Pro
    Replies: 2
    Last Post: - 24th February 2013, 13:38
  2. 16f88 setting config
    By be80be in forum mel PIC BASIC Pro
    Replies: 6
    Last Post: - 13th December 2012, 15:39
  3. Setting bits
    By bearpawz in forum General
    Replies: 9
    Last Post: - 28th November 2009, 00:37
  4. Configuration bits setting problem
    By financecatalyst in forum mel PIC BASIC Pro
    Replies: 5
    Last Post: - 26th August 2009, 17:25
  5. Trouble setting config. bits
    By jswayze in forum mel PIC BASIC Pro
    Replies: 2
    Last Post: - 13th March 2004, 22:22

Members who have read this thread : 1

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