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 thunderboympm

  1. thunderboympm

    switching of board rate in PIC microcontrollers

    hi, One of my project i am using PIC microcontroller (PIC18F452). in the particular project i am using two serial communication devices. i am using cd4016 for switching between them. the problem is the two devices are communicating with two different board rate, is there any problems will arise...
  2. thunderboympm

    Interfacing GSM Sim900a with PIC16f887

    I have two doubts in your code, 1) is the board rate of modem is 115200? 2) are you sending the phone number array with its ascii code or as decimal numbers?
  3. thunderboympm

    DHT11 is not responding to PIC microcontroller

    Checked the LATX also, no change. Is ther any problem with my DHT11_start subroutine
  4. thunderboympm

    DHT11 is not responding to PIC microcontroller

    i stucked in the first "while" statement. that means, according to datasheet, presence signal is not getting. i didn't put any pullup, because the module itself have a 5K pullup, i thought that it is sufficient.
  5. thunderboympm

    DHT11 is not responding to PIC microcontroller

    But sir, when I am debugging using pickit3 the code is stucked in while(onewire & 1); this line. - - - Updated - - - I am using a dht11 module, in that module already 5.1k is present. I think it is enough, right?
  6. thunderboympm

    DHT11 is not responding to PIC microcontroller

    hi, i am doing a project in PIC18f452, it needs a DHT11 temperature and humidity sensor. my problem is DHT11 is not responding to my detection code this is my start sequence void dht11_start(void) { onewire_cntrl = 0; onewire = 0; __delay_ms(20); onewire = 1; __delay_us(30)...
  7. thunderboympm

    [SOLVED] PIC serial port receive Problem, please help

    The problem was not my in my code, or in my hardware ( conceptually). And also in GSM. The problem was GSM module is working on 3.3 -3.9v logic. I thought that pic can handle this. But it producing an FERR error. So I added a buffer between GSM tx and PIC Rx. Now the code and hardware working...
  8. thunderboympm

    [SOLVED] PIC serial port receive Problem, please help

    Hai all, I thank everyone for helping me and stand along with me. I am happy to say that I solved my the problem.thanks all
  9. thunderboympm

    [SOLVED] PIC serial port receive Problem, please help

    by debugging the system i got an error as FERR (framing error), i am using a board rate of 9600 both in GSM and PIC microcintroller.
  10. thunderboympm

    [SOLVED] PIC serial port receive Problem, please help

    i am giving the power externally using a separate adapter, not giving 5 V directly
  11. thunderboympm

    [SOLVED] PIC serial port receive Problem, please help

    this is my GSM modem - - - Updated - - - during the lcd printing i am disabling the interrupt, i am not expecting any reception in this time, is there any problem with that? - - - Updated - - - sir, i named it as gsm modem in the circuit
  12. thunderboympm

    [SOLVED] PIC serial port receive Problem, please help

    /******************************************************************************/ /* Files to Include */ /******************************************************************************/ #include <xc.h> /* XC8 General Include...
  13. thunderboympm

    [SOLVED] PIC serial port receive Problem, please help

    Sir, as per the whole consideration. void __interrupt() ISR(void){ if(PIR1bits.RCIF){ if(RCSTAbits.OERR){ RCSTAbits.CREN = 0; NOP(); RCSTAbits.CREN = 1; } GSMbuff[GSMindex] = RCREG; GSMindex++; gsmFlag = 1...
  14. thunderboympm

    [SOLVED] PIC serial port receive Problem, please help

    Yea sir, I simulated it correctly in Proteus, and I fused the program through pikit3 to pic. And in hardware I send GSM returns though serial port (using ft232). At that time it is working as in my simulation in Proteus. But when I am connecting to GSM module the program is not working...
  15. thunderboympm

    [SOLVED] PIC serial port receive Problem, please help

    i am not using any handshake lines, only RX -> TX, TX -> RX, and GND -> GND

Part and Inventory Search

Back
Top