Continue to Site

Welcome to our site!

Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

  • Welcome to our site! Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

Recent content by Djsarkar

  1. D

    How to display message on 16*2 LCD in my native language Hindi

    Nigel Goodwin Can you please explain little bit How it can be done
  2. D

    How to display message on 16*2 LCD in my native language Hindi

    I want to display message in my native language Hindi. I want to display सरकार on LCD any idea how to do ? PIC18F45K80, MPLABX xc8 // #define _XTAL_FREQ 20000000 // crystal 20MHz // PIC18F45K80 Configuration Bit Settings // CONFIG1L #pragma config RETEN = ON // VREG Sleep Enable...
  3. D

    Task's manager to determine order in which task's executed

    I am trying to make task manager in program that looks for all task's and decide which one task will be run next . Timer interrupt should be keep the track of system time Let's say we have eight task's. 1-6 are dead task's and 7 and 8 are active task. Task 7 start and stop for every 250 ms...
  4. D

    How to make my own files in project

    Hi , I have PIC18F45K80. I am using MPLABX 5.40 and XC8 2.30 I have written my own working code for ESUART. I want to make my own header file and c file in project something like uart.h, uart.c and main c I don't know what should I have define and declare in uart.h, uart.c //...
  5. D

    How to interface humidity sensor with PIC18F45K80

    Hi I have humidity module. I want to interface with T microcontroller works on the digital signal. If the sensor gives an analog signal, the microcontroller will not be able to read it. Do I need an external ADC? Should I use inbuilt ADC in pic micro?
  6. D

    PIC18F45k80 UART Registers

    I wanted to post a new problem with a solution in same thread. UART is not a small topic, still I have so many doubts And I am also working on some code, when I think I can't solve the problem myself I will definitely post
  7. D

    PIC18F45k80 UART Registers

    Thank you for the update. All are not standby and nor stand down. It is not so easy for any newbie to learn it quickly. Don't forget only few days ago I have started working on the pic.
  8. D

    PIC18F45k80 UART Registers

    OSCCON = 0b11100101 // OSCILLATOR CONTROL REGISTER Am I configuring OSCCON register correctly ?
  9. D

    PIC18F45k80 UART Registers

    What do you mean by stability of an oscillator?
  10. D

    PIC18F45k80 UART Registers

    PIC is configured to use an internal RC oscillator #pragma config FOSC = INTIO2 // Oscillator (Internal RC oscillator) #pragma config PLLCFG = OFF // PLL x4 Enable bit (Disabled) #pragma config FCMEN = OFF // Fail-Safe Clock Monitor (Disabled) #pragma config IESO = OFF //...
  11. D

    PIC18F45k80 UART Registers

    Here is my program when I run code I am getting garbage value on hyper terminal. Hyper terminal settings baud rate 9600 Data bit 8 parity none stop bit 1 #define _XTAL_FREQ 8000000 #include <xc.h> // PIC18F45K80 Configuration Bit Settings // 'C' source line config statements // CONFIG1L...
  12. D

    PIC18F45k80 UART Registers

    I have generated code by using MCC code configurator Next I don't have any idea How to modify original file to achieve uart communication
  13. D

    PIC18F45k80 UART Registers

    I have generated code but I do not understand how to modified require file because link show the different files while I have different files step 11
  14. D

    PIC18F45k80 UART Registers

    I am following link https://microchipdeveloper.com/mcu1101:project-12 I have reached up to step 10 but I don't get I don't get tmr1.c file perhaps it may be eusart1.c file #include "eusart1.h" /** Section: Macro Declarations */ #define EUSART1_TX_BUFFER_SIZE 8 #define...
  15. D

    PIC18F45k80 UART Registers

    given in datasheet If using interrupts, ensure that the GIE and PEIE bits (INTCON<7:6>) are set. Only Timer0 given in INTCON register and PIR1 doesn't show bit for timer 0 I am confused How to configure INTCON and PIR1 register for UART ASYNCHRONOUS TRANSMISSION ?

Latest threads

New Articles From Microcontroller Tips

Back
Top