Announcement

Collapse
No announcement yet.

Help on SCI in receive

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Help on SCI in receive

    BAUD EQU $2B
    SCCR1 EQU $2C
    SCCR2 EQU $2D
    SCDR EQU $2F
    RDRF EQU $20
    SCSR EQU $2E
    PORTB EQU $04

    ORG $00
    ONSCI LDX #$1000
    LDAA #$30
    STAA BAUD,X
    LDAA #$00
    STAA SCCR1,X
    LDAA #$0C
    STAA SCCR2,X

    SCIgetch LDX #$1000
    BRCLR SCSR,X RDRF SCIgetch
    LDAA SCDR,X
    STAA PORTB,X
    RTS

    ORG $fffe ;define the reset vector to point to
    FDB ONSCI ; the beginning of your code

    question
    1. THis is my code, is this the right way to get the binary value from PC and store in memory and output in port B?

    Thanks for anyone helping

  • #2
    Re: Help on SCI in receive

    Personally, I'm just learning this stuff, and can't help. My suggestion, is that you post microcontroller questions on a microcontroller forum. It will get looked at by far more code jocks than on this forum.

    Three really good forums are at:

    Nuts & Volts

    Electronics-forum.net

    ElectroTech

    The last one seems to have, by far, the most traffic.

    --Carl

    Comment

    Working...
    X