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 embedded_galaxy

  1. E

    [PIC] conflicting declarations for variable "_INTCONbits mplabx2.05,xc8-1.37,pilb-2.0

    working on pic18f4550 on mplabx2.05, implemating adc module but cant compile error as follows : #include <xc.h> #include <stdlib.h> //#include "config.h" #include <plib/usart.h> #include <plib/adc.h> #pragma config PLLDIV = 2 // PLL Prescaler Selection bits (Divide by 5 (20 MHz...
  2. E

    [PIC] PIC18F4550 2IC can not send ack to slave

    please consider init_temperature_sensor(); and Read_TEMERATURE(); functions are uncomment
  3. E

    [PIC] PIC18F4550 2IC can not send ack to slave

    here is my config. settings and main function : #pragma config PLLDIV = 2 // (8 MHz crystal on PICDEM FS USB board) #pragma config CPUDIV = OSC1_PLL2 #pragma config USBDIV = 2 // Clock source from 96MHz PLL/2 #pragma config FOSC = HSPLL_HS #pragma config FCMEN = OFF...
  4. E

    [PIC] PIC18F4550 2IC can not send ack to slave

    hi, working with TMP275 temperature sensor interfacing with pic18f4550. my code is as follows : // I2C Bus Control Definition #define I2C_DATA_ACK 0 #define I2C_DATA_NOACK 1 #define I2C_WRITE_CMD 0 #define I2C_READ_CMD 1 #define I2C_START_CMD 0 #define I2C_REP_START_CMD 1 #define...
  5. E

    lcd16x2 data lines with shifting bits

    thanks for your reply , but i am sending command to both lower and higher nibble. normally lcd is connected to suppose : RS -RA5 E - RA4 D4 - RA0 D5 - RA1 D6 - RA2 D7 - RA3 but my hardware have following connections : RS -RA5 E - RA4 D4 - RA3 D5 -...
  6. E

    lcd16x2 data lines with shifting bits

    hi, i am working on 16x2 lcd with 4bit mode on pic18f. my connections are as follows : RS -RA5 E - RA4 D4 - RA3 D5 - RA2 D6 - RA1 D7 - RA0 so my shifting bits are as follows : /* First nibble */ E_BIT_HIGH; // E to HIGH udelay(2); // Write data LATA = ((LATA & 0x0F) | ((cmd &...

Part and Inventory Search

Back
Top