Serout/Serout2 on pin RC6


Closed Thread
Results 1 to 15 of 15

Hybrid View

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

    Default

    I was thinking that the TXSTA if enabled would be tying up the pin.

    Not sure about the ICD2.
    Dave
    Always wear safety glasses while programming.

  2. #2
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    4,170

    Default

    I got confussed thinking that ICD2 uses the RC6/RC7 pins. Nop. The poblem I think is that I used the DEFINES on top of the program and the UART is holding the pins for itself. UART has higher priority than TRIS i suppose. I'll try and come back.

    Ioannis

  3. #3
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    4,170

    Default

    Yes. This is the problem. When there is a Hserout command inside the program (no matter where, even at the end), the TX pin is engaged by the UART and cannot be controlled.

    Now I have to find out how to release it from the UART control.

    TXSTA=2 and RCSTA=0 did not help.

    What I really want to do is to emulate a 1200 baud trasnmission of one zero (0), like this:

    LOW PORTC.6
    PAUSEUS 7500
    HIGH PORTC.6

    That way there is no need to deal with BAUD rate change. If it only worked...

    Ioannis
    Last edited by Ioannis; - 11th December 2008 at 13:57.

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

    Default

    Maybe
    Code:
    TXSTA = %00000000
    Dave
    Always wear safety glasses while programming.

  5. #5
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    4,170

    Default

    It really does not make any difference. I tried that too.

    Ioannis

  6. #6
    Join Date
    Mar 2003
    Location
    Commerce Michigan USA
    Posts
    1,166

    Default

    Ioannis, Obviously none of you are reading the data sheets for the processors you are trying to program... Set RCSTA.7 to 0 and the port is all yours...

    Dave Purola,
    N8NTA

  7. #7
    skimask's Avatar
    skimask Guest

    Default

    Quote Originally Posted by Dave View Post
    Ioannis, Obviously none of you are reading the data sheets for the processors you are trying to program... Set RCSTA.7 to 0 and the port is all yours...
    Dave Purola,
    N8NTA
    Or are they?
    Post #6 above...
    TXSTA=2 and RCSTA=0 did not help.

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

    Default

    Quote Originally Posted by Dave View Post
    Ioannis, Obviously none of you are reading the data sheets for the processors you are trying to program... Set RCSTA.7 to 0 and the port is all yours...
    What!!! Read the data sheet!!! That is just asking tooo much

    Anywho, that is why I suggested
    TXSTA = %00000000

    being we are dealing with the transmit part/pin..

    bit 5 is all that, I thought, needed set to zero.

    Ioannis,
    When I get home this weekend I am going to play with this.
    Dave
    Always wear safety glasses while programming.

Similar Threads

  1. Is this a K Type sensor?
    By jessey in forum mel PIC BASIC Pro
    Replies: 20
    Last Post: - 21st November 2009, 13:55
  2. DS1820 with 16f688
    By jessey in forum mel PIC BASIC Pro
    Replies: 13
    Last Post: - 23rd May 2009, 05:07
  3. Serout/Serout2 and PIC18F97J60 (100 pin)
    By mikebar in forum Serial
    Replies: 10
    Last Post: - 20th May 2008, 04:16
  4. Microcontroller with 2 way paging application problem
    By oneohthree in forum mel PIC BASIC Pro
    Replies: 30
    Last Post: - 20th April 2007, 17:27
  5. Another RTC, DS1287
    By DavidK in forum Code Examples
    Replies: 0
    Last Post: - 12th December 2006, 17:07

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