New to PIC


Closed Thread
Results 1 to 21 of 21

Thread: New to PIC

Hybrid View

  1. #1
    Join Date
    Jun 2006
    Location
    Greece
    Posts
    302


    Did you find this post helpful? Yes | No

    Default

    You need to set internal oscillator because you use porta.6 and porta.7 as I/O.
    See page 17 on datasheet of pic18f1230.

  2. #2
    Join Date
    Jul 2009
    Location
    Ohio, USA
    Posts
    57


    Did you find this post helpful? Yes | No

    Default

    Thanks for the input guys, still no luck with the program, maybe its the Junebug... I don't know. Any other suggestions?

  3. #3
    Join Date
    Nov 2003
    Location
    Wellton, U.S.A.
    Posts
    5,924


    Did you find this post helpful? Yes | No

    Default

    If you think it might be the "June bug" try a simple hardware setup with one LED on a non analog pine and see it you can make it blink.
    Dave
    Always wear safety glasses while programming.

  4. #4
    Join Date
    Jul 2009
    Location
    Ohio, USA
    Posts
    57


    Did you find this post helpful? Yes | No

    Default

    I can get the other ports to respond to programming but PORTA.6 and 7 don't do as they should.

  5. #5
    Join Date
    Nov 2003
    Location
    Wellton, U.S.A.
    Posts
    5,924


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Mike2545 View Post
    I can get the other ports to respond to programming but PORTA.6 and 7 don't do as they should.
    OK, that rules out the "junebug".

    Can you post your current code, configs, and schematic so we can take a look?
    Dave
    Always wear safety glasses while programming.

  6. #6
    Join Date
    Jul 2009
    Location
    Ohio, USA
    Posts
    57


    Did you find this post helpful? Yes | No

    Default

    Here is my code, it flashes leds on PORTA.0 and PORTB.0

    ADCON0 = 0
    ADCON1= 127
    define OSC 4
    led var PORTA.0
    sink var PORTB.0

    loop:
    toggle PORTA.6
    pause 5
    high led
    pause 5
    low led
    pause 5
    high sink
    pause 5
    low sink
    goto loop
    end


    PORTA.6 is just low, it does not toggle or go High if I change the code.

    The schematic is simple, I connected VPP, +5, Gnd, PGD and PGC.
    I have 470 ohm resistors from the PIC to leds connected to GND.

    Could it be the clock output function? How do I set INTRC_OSC_NOCLKOUT?
    Last edited by Mike2545; - 25th July 2009 at 22:32.

  7. #7
    Join Date
    Nov 2003
    Location
    Wellton, U.S.A.
    Posts
    5,924


    Did you find this post helpful? Yes | No

    Default

    http://www.picbasic.co.uk/forum/showthread.php?t=543
    The above talks about how to set the configs.
    You can do it in your code or just modify the PICs *.inc file.
    Dave
    Always wear safety glasses while programming.

Similar Threads

  1. SMS via pic
    By kenandere in forum GSM
    Replies: 15
    Last Post: - 10th March 2010, 11:00
  2. Replies: 67
    Last Post: - 8th December 2009, 03:27
  3. HSERIN & Interupts (aka controlling PIC programs from a remote PC)
    By HankMcSpank in forum mel PIC BASIC Pro
    Replies: 16
    Last Post: - 17th June 2009, 15:46
  4. pic to pic ir link versus wired link : help please anyone
    By xnihilo in forum mel PIC BASIC Pro
    Replies: 13
    Last Post: - 30th May 2008, 22:01
  5. Serial Pic to Pic using HSER
    By Chadhammer in forum mel PIC BASIC Pro
    Replies: 5
    Last Post: - 12th March 2005, 00:14

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