Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by ceibawx

  1. C

    generate two PWM signal with only 2 CCR ( CCR0 & CCR1)

    I also have the same question about PWM output in MSP430. I have a MSP430F169, and i need output nine channels of PWM wave. Can I do it ? Now I can have eight channels not nine channels. First, in TIMER A, TACCR0 for period, TACCR1 for one duty cycle, and TACCR2 for another duty cycle. Second...
  2. C

    transmit data to usart port of pic16f877 in assem code

    movwf txreg Thank you very much. Good day:)
  3. C

    subtract in assembly code in pic16f628a

    assembly subtract subtract in assembly code in pic16f628a I need subtract for three times in assembly code in pic16f628a. I wrote a stupid code, it is too long. and I am wondering whether I can use a loop to do it. 1) the data is saved in 0x40~0x51.The data is from 8channels, every channel is...
  4. C

    Difference between USART and SPI?

    uart spi difference I like your detail explanation. Thanks.
  5. C

    transmit data to usart port of pic16f877 in assem code

    usart pic16f Hi everyone. How is your everything? I need your help to modify assembly code of transmitting data to usart port of pic16f877. Before I transmit 2 byte data into TXREG, need I check TXIF value? The first time, TXIF itself is empty. but the second time, CHECK TXIF is necessary...
  6. C

    USART ASYNCHRONOUS RECEPTION IN PIC16F877A

    C7 is usart reception pin. You need define C7 direction in code. Such as " banksel TRISC bsf TRISC,7 ;c7=0 as input" good luck.
  7. C

    assembly code bankselect problem

    Thanks:):D
  8. C

    assembly code bankselect problem

    Dear Friend, I compiled the code followed. It did pass simulation last Friday. But today, problem appeared.------------------------------------------------------- Message[302] C:\DOCUMENTS AND SETTINGS\GRACEE\MY DOCUMENTS\PNS2\PNS2.ASM 62 : Register in operand not in bank 0. Ensure that bank...
  9. C

    xbee data lost- Why is the rx data different from tx data?

    xbee data lost Hi everyone. My question is. when I send a bitstream at 19.2k in tx xbee chip802.15.4 the data is 000000FFFFFF000000FFFFFF000000......(repeat) but from rx xbee , I received the data is 0000FFFF0000FFFF......(repeat) XBEE Baud rate is 19.2k so what's the reason? Why is the rx...
  10. C

    assembly code for transmitting data in PIC memory

    Thanks a lot. And I have tested , and your code is useful, and I received the expected data. You are powerful. Good day. Xing
  11. C

    assembly code for transmitting data in PIC memory

    Thanks for your reply. My question is that what does it mean? when TXIF=1, buffer is empty, it will --------------------- MOVF INDF,W ; get byte MOVWF TXREG ; Move the data to the transmit register when TXIF=0, buffer is full, it will ------------------------ GoOnTransData: btfss...
  12. C

    assembly code for transmitting data in PIC memory

    pic txif Who can help me check it? I stored data in PIC, but output is not correct. TransData: MOVLW 0xBF MOVWF FSR ; TO RAM MOVLW 0x08 MOVWF ChannelCounter ; ChannelCounter=4*2 GoOnTransData: bsf STATUS,5...
  13. C

    assembly code for input 256kbps bitstream

    Hi your help is needed. input clock is 256khz, input bit data is 256kbps.20MHz is oscillator frequency for PIC16F877. Why it doesn't pass compiling. How to record bitdata in PIC? ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MOVLW 0x08 MOVWF BitCounter ;bitcounter=8 MOVLW...
  14. C

    PIC16F877 maximum input bitstream speed

    shift_left pic16f8 What's the maximum input bitstream speed in PIC16F877? My aim is 256kbps. but I failed. There are results, but I don't understand.Using different output function ways, input speed maximum is not the same? Why? Any information is appreciated...
  15. C

    C code of bitstream input in PIC

    c code for reading input on a pic :D I got it. You are excellent. Why you know so much? You are pretty familiar with PIC. I bow to you. I really appreciate your teaching. Added after 21 minutes: Another question. In project 256kbps input bitstream is needed. However Now input speed is...

Part and Inventory Search

Back
Top