16F628A and RA5 (MCLR pin)


Results 1 to 7 of 7

Threaded View

  1. #5
    Join Date
    Feb 2005
    Posts
    130


    Did you find this post helpful? Yes | No

    Default

    I just tried the attached circuit with this code:

    @ DEVICE pic16F628a, INTRC_OSC_NOCLKOUT
    @ DEVICE pic16F628a, WDT_ON
    @ DEVICE pic16F628a, PWRT_ON
    @ DEVICE pic16F628A, MCLR_OFF
    @ DEVICE pic16F628a, BOD_Off '(off si es muy baja la alimentacion)
    @ DEVICE pic16F628a, LVP_OFF
    @ DEVICE pic16F628a, CPD_Off
    @ DEVICE pic16F628a, PROTECT_Off


    trisb =%00000000
    trisa =%00100000
    cmcon =%00000111 'Comparators Off

    porta=0
    portb=0
    loop:
    if porta.5=1 then
    porta.4=1
    porta.3=0
    else
    porta.3=1
    porta.4=0

    endif
    goto loop

    and it only lits the led on ra3

    Any idea? Maybe its a simulator issue (proteus vsm)

    Thanks
    Attached Images Attached Images  

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